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

Side by Side Diff: third_party/WebKit/Source/devtools/BUILD.gn

Issue 2292723002: [DevTools] Make accessibility a remote module (Closed)
Patch Set: Don't include accessibility in generate_devtools_grd Created 4 years, 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/devtools.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//third_party/WebKit/Source/core/core.gni") 6 import("//third_party/WebKit/Source/core/core.gni")
7 7
8 gypi_values = exec_script("//build/gypi_to_gn.py", 8 gypi_values = exec_script("//build/gypi_to_gn.py",
9 [ rebase_path("devtools.gypi") ], 9 [ rebase_path("devtools.gypi") ],
10 "scope", 10 "scope",
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 } else { 136 } else {
137 # Release: pick compiled non-remote modules and concatenated app files. 137 # Release: pick compiled non-remote modules and concatenated app files.
138 generated_files = [ 138 generated_files = [
139 resources_out_dir + "inspector.html", 139 resources_out_dir + "inspector.html",
140 resources_out_dir + "inspector.js", 140 resources_out_dir + "inspector.js",
141 resources_out_dir + "toolbox.html", 141 resources_out_dir + "toolbox.html",
142 resources_out_dir + "toolbox.js", 142 resources_out_dir + "toolbox.js",
143 resources_out_dir + "formatter_worker.js", 143 resources_out_dir + "formatter_worker.js",
144 resources_out_dir + "heap_snapshot_worker.js", 144 resources_out_dir + "heap_snapshot_worker.js",
145 resources_out_dir + "temp_storage_shared_worker.js", 145 resources_out_dir + "temp_storage_shared_worker.js",
146 resources_out_dir + "accessibility/accessibility_module.js",
147 resources_out_dir + "audits/audits_module.js", 146 resources_out_dir + "audits/audits_module.js",
148 resources_out_dir + "animation/animation_module.js", 147 resources_out_dir + "animation/animation_module.js",
149 resources_out_dir + "components_lazy/components_lazy_module.js", 148 resources_out_dir + "components_lazy/components_lazy_module.js",
150 resources_out_dir + "console/console_module.js", 149 resources_out_dir + "console/console_module.js",
151 resources_out_dir + "devices/devices_module.js", 150 resources_out_dir + "devices/devices_module.js",
152 resources_out_dir + "diff/diff_module.js", 151 resources_out_dir + "diff/diff_module.js",
153 resources_out_dir + "elements/elements_module.js", 152 resources_out_dir + "elements/elements_module.js",
154 resources_out_dir + "es_tree/es_tree_module.js", 153 resources_out_dir + "es_tree/es_tree_module.js",
155 resources_out_dir + "layers/layers_module.js", 154 resources_out_dir + "layers/layers_module.js",
156 resources_out_dir + "network/network_module.js", 155 resources_out_dir + "network/network_module.js",
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 } 348 }
350 349
351 copy("copy_codemirror_files") { 350 copy("copy_codemirror_files") {
352 sources = 351 sources =
353 gypi_values.devtools_cm_js_files + gypi_values.devtools_cm_css_files 352 gypi_values.devtools_cm_js_files + gypi_values.devtools_cm_css_files
354 outputs = [ 353 outputs = [
355 resources_out_dir + "cm/{{source_file_part}}", 354 resources_out_dir + "cm/{{source_file_part}}",
356 ] 355 ]
357 } 356 }
358 } 357 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/devtools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698