| 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 17 matching lines...) Expand all Loading... |
| 28 devtools_common_js_files = [ | 28 devtools_common_js_files = [ |
| 29 "front_end/common/CharacterIdMap.js", | 29 "front_end/common/CharacterIdMap.js", |
| 30 "front_end/common/Color.js", | 30 "front_end/common/Color.js", |
| 31 "front_end/common/Console.js", | 31 "front_end/common/Console.js", |
| 32 "front_end/common/ContentProvider.js", | 32 "front_end/common/ContentProvider.js", |
| 33 "front_end/common/CSSShadowModel.js", | 33 "front_end/common/CSSShadowModel.js", |
| 34 "front_end/common/FormatterWorkerPool.js", | 34 "front_end/common/FormatterWorkerPool.js", |
| 35 "front_end/common/Geometry.js", | 35 "front_end/common/Geometry.js", |
| 36 "front_end/common/ModuleExtensionInterfaces.js", | 36 "front_end/common/ModuleExtensionInterfaces.js", |
| 37 "front_end/common/Object.js", | 37 "front_end/common/Object.js", |
| 38 "front_end/common/ObjectBase.js", |
| 38 "front_end/common/OutputStream.js", | 39 "front_end/common/OutputStream.js", |
| 39 "front_end/common/ParsedURL.js", | 40 "front_end/common/ParsedURL.js", |
| 40 "front_end/common/Progress.js", | 41 "front_end/common/Progress.js", |
| 41 "front_end/common/ResourceType.js", | 42 "front_end/common/ResourceType.js", |
| 42 "front_end/common/SegmentedRange.js", | 43 "front_end/common/SegmentedRange.js", |
| 43 "front_end/common/Settings.js", | 44 "front_end/common/Settings.js", |
| 44 "front_end/common/StaticContentProvider.js", | 45 "front_end/common/StaticContentProvider.js", |
| 45 "front_end/common/Text.js", | 46 "front_end/common/Text.js", |
| 46 "front_end/common/TextDictionary.js", | 47 "front_end/common/TextDictionary.js", |
| 47 "front_end/common/TextRange.js", | 48 "front_end/common/TextRange.js", |
| (...skipping 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1164 "scripts/closure/", | 1165 "scripts/closure/", |
| 1165 "scripts/compile_frontend.py", | 1166 "scripts/compile_frontend.py", |
| 1166 "scripts/jsdoc_validator/", | 1167 "scripts/jsdoc_validator/", |
| 1167 "//testing/scripts/run_devtools_closure_compile.py", | 1168 "//testing/scripts/run_devtools_closure_compile.py", |
| 1168 "//testing/scripts/common.py", | 1169 "//testing/scripts/common.py", |
| 1169 "//testing/xvfb.py", | 1170 "//testing/xvfb.py", |
| 1170 "//third_party/WebKit/Source/core/inspector/browser_protocol.json", | 1171 "//third_party/WebKit/Source/core/inspector/browser_protocol.json", |
| 1171 "//v8/src/inspector/js_protocol.json", | 1172 "//v8/src/inspector/js_protocol.json", |
| 1172 ] | 1173 ] |
| 1173 } | 1174 } |
| OLD | NEW |