| 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 900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 911 generated_scripts = [ | 911 generated_scripts = [ |
| 912 "$resources_out_dir/InspectorBackendCommands.js", | 912 "$resources_out_dir/InspectorBackendCommands.js", |
| 913 "$resources_out_dir/SupportedCSSProperties.js", | 913 "$resources_out_dir/SupportedCSSProperties.js", |
| 914 ] | 914 ] |
| 915 | 915 |
| 916 generated_entry_files = [ | 916 generated_entry_files = [ |
| 917 "$resources_out_dir/inspector.html", | 917 "$resources_out_dir/inspector.html", |
| 918 "$resources_out_dir/inspector.js", | 918 "$resources_out_dir/inspector.js", |
| 919 "$resources_out_dir/toolbox.html", | 919 "$resources_out_dir/toolbox.html", |
| 920 "$resources_out_dir/toolbox.js", | 920 "$resources_out_dir/toolbox.js", |
| 921 "$resources_out_dir/unit_test_runner.html", | |
| 922 "$resources_out_dir/unit_test_runner.js", | |
| 923 ] | 921 ] |
| 924 | 922 |
| 925 generated_workers = [ | 923 generated_workers = [ |
| 926 "$resources_out_dir/formatter_worker.js", | 924 "$resources_out_dir/formatter_worker.js", |
| 927 "$resources_out_dir/heap_snapshot_worker.js", | 925 "$resources_out_dir/heap_snapshot_worker.js", |
| 928 "$resources_out_dir/utility_shared_worker.js", | 926 "$resources_out_dir/utility_shared_worker.js", |
| 929 ] | 927 ] |
| 930 | 928 |
| 931 generated_bundled_modules = [ | 929 generated_bundled_modules = [ |
| 932 "$resources_out_dir/animation/animation_module.js", | 930 "$resources_out_dir/animation/animation_module.js", |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1177 "scripts/closure/", | 1175 "scripts/closure/", |
| 1178 "scripts/compile_frontend.py", | 1176 "scripts/compile_frontend.py", |
| 1179 "scripts/jsdoc_validator/", | 1177 "scripts/jsdoc_validator/", |
| 1180 "//testing/scripts/run_devtools_closure_compile.py", | 1178 "//testing/scripts/run_devtools_closure_compile.py", |
| 1181 "//testing/scripts/common.py", | 1179 "//testing/scripts/common.py", |
| 1182 "//testing/xvfb.py", | 1180 "//testing/xvfb.py", |
| 1183 "//third_party/WebKit/Source/core/inspector/browser_protocol.json", | 1181 "//third_party/WebKit/Source/core/inspector/browser_protocol.json", |
| 1184 "//v8/src/inspector/js_protocol.json", | 1182 "//v8/src/inspector/js_protocol.json", |
| 1185 ] | 1183 ] |
| 1186 } | 1184 } |
| OLD | NEW |