| OLD | NEW |
| 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/public/public_features.gni") | 6 import("//third_party/WebKit/public/public_features.gni") |
| 7 import("//third_party/WebKit/Source/core/core.gni") | 7 import("//third_party/WebKit/Source/core/core.gni") |
| 8 | 8 |
| 9 devtools_embedder_scripts = [ | 9 devtools_embedder_scripts = [ |
| 10 "front_end/devtools_compatibility.js", | 10 "front_end/devtools_compatibility.js", |
| (...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 "front_end/elements/ElementsSidebarPane.js", | 437 "front_end/elements/ElementsSidebarPane.js", |
| 438 "front_end/elements/ElementsTreeElement.js", | 438 "front_end/elements/ElementsTreeElement.js", |
| 439 "front_end/elements/ElementsTreeElementHighlighter.js", | 439 "front_end/elements/ElementsTreeElementHighlighter.js", |
| 440 "front_end/elements/ElementsTreeOutline.js", | 440 "front_end/elements/ElementsTreeOutline.js", |
| 441 "front_end/elements/ElementStatePaneWidget.js", | 441 "front_end/elements/ElementStatePaneWidget.js", |
| 442 "front_end/elements/EventListenersWidget.js", | 442 "front_end/elements/EventListenersWidget.js", |
| 443 "front_end/elements/InspectElementModeController.js", | 443 "front_end/elements/InspectElementModeController.js", |
| 444 "front_end/elements/MetricsSidebarPane.js", | 444 "front_end/elements/MetricsSidebarPane.js", |
| 445 "front_end/elements/PlatformFontsWidget.js", | 445 "front_end/elements/PlatformFontsWidget.js", |
| 446 "front_end/elements/PropertiesWidget.js", | 446 "front_end/elements/PropertiesWidget.js", |
| 447 "front_end/elements/PropertyChangeHighlighter.js", | 447 "front_end/elements/StylePropertyHighlighter.js", |
| 448 "front_end/elements/StylesSidebarPane.js", | 448 "front_end/elements/StylesSidebarPane.js", |
| 449 "front_end/elements/ComputedStyleWidget.js", | 449 "front_end/elements/ComputedStyleWidget.js", |
| 450 ] | 450 ] |
| 451 devtools_emulated_devices_js_files = [] | 451 devtools_emulated_devices_js_files = [] |
| 452 devtools_emulated_devices_images = [ | 452 devtools_emulated_devices_images = [ |
| 453 "front_end/emulated_devices/google-nexus-5-horizontal-default-1x.png", | 453 "front_end/emulated_devices/google-nexus-5-horizontal-default-1x.png", |
| 454 "front_end/emulated_devices/google-nexus-5-horizontal-default-2x.png", | 454 "front_end/emulated_devices/google-nexus-5-horizontal-default-2x.png", |
| 455 "front_end/emulated_devices/google-nexus-5-horizontal-keyboard-1x.png", | 455 "front_end/emulated_devices/google-nexus-5-horizontal-keyboard-1x.png", |
| 456 "front_end/emulated_devices/google-nexus-5-horizontal-keyboard-2x.png", | 456 "front_end/emulated_devices/google-nexus-5-horizontal-keyboard-2x.png", |
| 457 "front_end/emulated_devices/google-nexus-5-horizontal-navigation-1x.png", | 457 "front_end/emulated_devices/google-nexus-5-horizontal-navigation-1x.png", |
| (...skipping 706 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1164 "scripts/closure/", | 1164 "scripts/closure/", |
| 1165 "scripts/compile_frontend.py", | 1165 "scripts/compile_frontend.py", |
| 1166 "scripts/jsdoc_validator/", | 1166 "scripts/jsdoc_validator/", |
| 1167 "//testing/scripts/run_devtools_closure_compile.py", | 1167 "//testing/scripts/run_devtools_closure_compile.py", |
| 1168 "//testing/scripts/common.py", | 1168 "//testing/scripts/common.py", |
| 1169 "//testing/xvfb.py", | 1169 "//testing/xvfb.py", |
| 1170 "//third_party/WebKit/Source/core/inspector/browser_protocol.json", | 1170 "//third_party/WebKit/Source/core/inspector/browser_protocol.json", |
| 1171 "//v8/src/inspector/js_protocol.json", | 1171 "//v8/src/inspector/js_protocol.json", |
| 1172 ] | 1172 ] |
| 1173 } | 1173 } |
| OLD | NEW |