[Fuchsia] Rename //webrunner to //fuchsia
This also modifies all affected header includes and target names.
In addition, the "gn_all" target dependencies are reduced to what is
actually needed there for Fuchsia. It used to be "all" did not build
on Fuchsia and we relied on the "gn_all" target to build but this is
no longer the case.
Bug: 922635
Change-Id: I43c69ed511ff34b28210967287c35d2bfcad2d53
Reviewed-on: https://chromium-review.googlesource.com/c/1416110
Commit-Queue: Fabrice de Gans-Riberi <[email protected]>
Reviewed-by: Nasko Oskov <[email protected]>
Reviewed-by: Fabrice de Gans-Riberi <[email protected]>
Reviewed-by: John Abd-El-Malek <[email protected]>
Cr-Commit-Position: refs/heads/master@{#623907}
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 89967c3c..38a306d 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -1643,19 +1643,19 @@
r"^courgette[\\/]courgette_minimal_tool\.cc$",
r"^courgette[\\/]courgette_tool\.cc$",
r"^extensions[\\/]renderer[\\/]logging_native_handler\.cc$",
+ r"^fuchsia[\\/]browser[\\/]frame_impl.cc$",
+ r"^headless[\\/]app[\\/]headless_shell\.cc$",
r"^ipc[\\/]ipc_logging\.cc$",
r"^native_client_sdk[\\/]",
r"^remoting[\\/]base[\\/]logging\.h$",
r"^remoting[\\/]host[\\/].*",
r"^sandbox[\\/]linux[\\/].*",
+ r"^storage[\\/]browser[\\/]fileapi[\\/]" +
+ r"dump_file_system.cc$",
r"^tools[\\/]",
r"^ui[\\/]base[\\/]resource[\\/]data_pack.cc$",
r"^ui[\\/]aura[\\/]bench[\\/]bench_main\.cc$",
- r"^ui[\\/]ozone[\\/]platform[\\/]cast[\\/]",
- r"^webrunner[\\/]browser[\\/]frame_impl.cc$",
- r"^storage[\\/]browser[\\/]fileapi[\\/]" +
- r"dump_file_system.cc$",
- r"^headless[\\/]app[\\/]headless_shell\.cc$"))
+ r"^ui[\\/]ozone[\\/]platform[\\/]cast[\\/]"))
source_file_filter = lambda x: input_api.FilterSourceFile(
x, white_list=file_inclusion_pattern, black_list=black_list)