| 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 927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 938 outputs = [ | 938 outputs = [ |
| 939 "$resources_out_dir/devtools_extension_api.js", | 939 "$resources_out_dir/devtools_extension_api.js", |
| 940 ] | 940 ] |
| 941 | 941 |
| 942 args = rebase_path(outputs, root_build_dir) + | 942 args = rebase_path(outputs, root_build_dir) + |
| 943 rebase_path(devtools_extension_api_files, root_build_dir) | 943 rebase_path(devtools_extension_api_files, root_build_dir) |
| 944 } | 944 } |
| 945 | 945 |
| 946 action("supported_css_properties") { | 946 action("supported_css_properties") { |
| 947 script = "scripts/build/generate_supported_css.py" | 947 script = "scripts/build/generate_supported_css.py" |
| 948 helper_scripts = [ "scripts/build/json5_generator.py" ] |
| 948 | 949 |
| 949 inputs = [ | 950 inputs = helper_scripts + [ "../core/css/CSSProperties.json5" ] |
| 950 "../core/css/CSSProperties.in", | |
| 951 ] | |
| 952 | 951 |
| 953 outputs = [ | 952 outputs = [ |
| 954 "$resources_out_dir/SupportedCSSProperties.js", | 953 "$resources_out_dir/SupportedCSSProperties.js", |
| 955 ] | 954 ] |
| 956 | 955 |
| 957 args = | 956 args = rebase_path([ "../core/css/CSSProperties.json5" ], root_build_dir) + |
| 958 rebase_path(inputs, root_build_dir) + rebase_path(outputs, root_build_dir) | 957 rebase_path(outputs, root_build_dir) |
| 959 } | 958 } |
| 960 | 959 |
| 961 action("frontend_protocol_sources") { | 960 action("frontend_protocol_sources") { |
| 962 script = "scripts/build/code_generator_frontend.py" | 961 script = "scripts/build/code_generator_frontend.py" |
| 963 deps = [ | 962 deps = [ |
| 964 "../core/inspector:protocol_version", | 963 "../core/inspector:protocol_version", |
| 965 ] | 964 ] |
| 966 inputs = [ | 965 inputs = [ |
| 967 "$blink_core_output_dir/inspector/protocol.json", | 966 "$blink_core_output_dir/inspector/protocol.json", |
| 968 ] | 967 ] |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1073 ".eslintrc.js", | 1072 ".eslintrc.js", |
| 1074 "devtools-node-modules/", | 1073 "devtools-node-modules/", |
| 1075 "front_end/", | 1074 "front_end/", |
| 1076 "scripts/buildbot/run_eslint.py", | 1075 "scripts/buildbot/run_eslint.py", |
| 1077 "scripts/local_node/", | 1076 "scripts/local_node/", |
| 1078 "//testing/scripts/common.py", | 1077 "//testing/scripts/common.py", |
| 1079 "//testing/scripts/run_devtools_check.py", | 1078 "//testing/scripts/run_devtools_check.py", |
| 1080 "//testing/xvfb.py", | 1079 "//testing/xvfb.py", |
| 1081 ] | 1080 ] |
| 1082 } | 1081 } |
| OLD | NEW |