| 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 all_devtools_files = [ | 9 all_devtools_files = [ |
| 10 "front_end/accessibility/AccessibilityModel.js", | 10 "front_end/accessibility/AccessibilityModel.js", |
| (...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 863 "formatter_worker", | 863 "formatter_worker", |
| 864 "audits2_worker", | 864 "audits2_worker", |
| 865 "heap_snapshot_worker", | 865 "heap_snapshot_worker", |
| 866 "utility_shared_worker", | 866 "utility_shared_worker", |
| 867 ] | 867 ] |
| 868 | 868 |
| 869 #------------------------------------------------------------------------------- | 869 #------------------------------------------------------------------------------- |
| 870 | 870 |
| 871 visibility = [ "//third_party/WebKit/*" ] | 871 visibility = [ "//third_party/WebKit/*" ] |
| 872 | 872 |
| 873 group("devtools_all_files") { |
| 874 data = all_devtools_files |
| 875 } |
| 876 |
| 873 group("devtools_frontend_resources") { | 877 group("devtools_frontend_resources") { |
| 874 public_deps = [ | 878 public_deps = [ |
| 875 ":build_release_devtools", | 879 ":build_release_devtools", |
| 876 ":copy_embedder_scripts", | 880 ":copy_embedder_scripts", |
| 877 ":copy_emulated_devices_images", | 881 ":copy_emulated_devices_images", |
| 878 ":copy_inspector_images", | 882 ":copy_inspector_images", |
| 879 ":devtools_extension_api", | 883 ":devtools_extension_api", |
| 880 ":frontend_protocol_sources", | 884 ":frontend_protocol_sources", |
| 881 ":supported_css_properties", | 885 ":supported_css_properties", |
| 882 ] | 886 ] |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1088 ".eslintrc.js", | 1092 ".eslintrc.js", |
| 1089 "devtools-node-modules/", | 1093 "devtools-node-modules/", |
| 1090 "front_end/", | 1094 "front_end/", |
| 1091 "scripts/buildbot/run_eslint.py", | 1095 "scripts/buildbot/run_eslint.py", |
| 1092 "scripts/local_node/", | 1096 "scripts/local_node/", |
| 1093 "//testing/scripts/common.py", | 1097 "//testing/scripts/common.py", |
| 1094 "//testing/scripts/run_devtools_check.py", | 1098 "//testing/scripts/run_devtools_check.py", |
| 1095 "//testing/xvfb.py", | 1099 "//testing/xvfb.py", |
| 1096 ] | 1100 ] |
| 1097 } | 1101 } |
| OLD | NEW |