| 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 937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 948 ] | 948 ] |
| 949 | 949 |
| 950 args = rebase_path(outputs, root_build_dir) + | 950 args = rebase_path(outputs, root_build_dir) + |
| 951 rebase_path(devtools_extension_api_files, root_build_dir) | 951 rebase_path(devtools_extension_api_files, root_build_dir) |
| 952 } | 952 } |
| 953 | 953 |
| 954 action("supported_css_properties") { | 954 action("supported_css_properties") { |
| 955 script = "scripts/build/generate_supported_css.py" | 955 script = "scripts/build/generate_supported_css.py" |
| 956 | 956 |
| 957 inputs = [ | 957 inputs = [ |
| 958 "../core/css/CSSProperties.in", | 958 "../core/css/CSSProperties.json5", |
| 959 ] | 959 ] |
| 960 | 960 |
| 961 outputs = [ | 961 outputs = [ |
| 962 "$resources_out_dir/SupportedCSSProperties.js", | 962 "$resources_out_dir/SupportedCSSProperties.js", |
| 963 ] | 963 ] |
| 964 | 964 |
| 965 args = | 965 args = |
| 966 rebase_path(inputs, root_build_dir) + rebase_path(outputs, root_build_dir) | 966 rebase_path(inputs, root_build_dir) + rebase_path(outputs, root_build_dir) |
| 967 } | 967 } |
| 968 | 968 |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1081 ".eslintrc.js", | 1081 ".eslintrc.js", |
| 1082 "devtools-node-modules/", | 1082 "devtools-node-modules/", |
| 1083 "front_end/", | 1083 "front_end/", |
| 1084 "scripts/buildbot/run_eslint.py", | 1084 "scripts/buildbot/run_eslint.py", |
| 1085 "scripts/local_node/", | 1085 "scripts/local_node/", |
| 1086 "//testing/scripts/common.py", | 1086 "//testing/scripts/common.py", |
| 1087 "//testing/scripts/run_devtools_check.py", | 1087 "//testing/scripts/run_devtools_check.py", |
| 1088 "//testing/xvfb.py", | 1088 "//testing/xvfb.py", |
| 1089 ] | 1089 ] |
| 1090 } | 1090 } |
| OLD | NEW |