Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(961)

Unified Diff: Source/devtools/BUILD.gn

Issue 332413004: Generate web, devtools files into their own sub-dirs. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: more gn build changes Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/devtools/devtools.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/BUILD.gn
diff --git a/Source/devtools/BUILD.gn b/Source/devtools/BUILD.gn
index 3b56f2090a73fde420edf77c3e792adcc0652b55..24e18f8560f9d80344fd4d3a0006275925edcac8 100644
--- a/Source/devtools/BUILD.gn
+++ b/Source/devtools/BUILD.gn
@@ -186,7 +186,7 @@ action("supported_css_properties") {
]
outputs = [
- "$root_gen_dir/blink/SupportedCSSProperties.js"
+ "$root_gen_dir/blink/devtools/SupportedCSSProperties.js"
]
args = rebase_path(source_prereqs, root_build_dir) +
@@ -197,7 +197,7 @@ action("frontend_protocol_sources") {
script = "scripts/CodeGeneratorFrontend.py"
source_prereqs = [ "protocol.json" ]
- outputs = [ "$root_gen_dir/blink/InspectorBackendCommands.js" ]
+ outputs = [ "$root_gen_dir/blink/devtools/InspectorBackendCommands.js" ]
args = rebase_path(source_prereqs, root_build_dir) + [
"--output_js_dir", rebase_path("$root_gen_dir/blink", root_build_dir),
@@ -237,9 +237,9 @@ action("build_core_module") {
input_page = "front_end/inspector.html"
source_prereqs = [
input_page,
- "$root_gen_dir/blink/InspectorBackendCommands.js",
- "$root_gen_dir/blink/SupportedCSSProperties.js",
- "$root_gen_dir/blink/common/modules.js",
+ "$root_gen_dir/blink/devtools/InspectorBackendCommands.js",
+ "$root_gen_dir/blink/devtools/SupportedCSSProperties.js",
+ "$root_gen_dir/blink/devtools/common/modules.js",
] + devtools_core_js_files
search_path = [
@@ -366,7 +366,7 @@ action("concatenated_module_descriptors") {
input = "front_end/common/modules.js"
source_prereqs = [ input ] + gypi_values.devtools_module_json_files
- outputs = [ "$root_gen_dir/blink/common/modules.js" ]
+ outputs = [ "$root_gen_dir/blink/devtools/common/modules.js" ]
args = rebase_path([ input ] + outputs + gypi_values.devtools_module_json_files, root_build_dir)
}
« no previous file with comments | « no previous file | Source/devtools/devtools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698