Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: third_party/WebKit/Source/devtools/BUILD.gn

Issue 2620883002: Convert Settings.in, CSSValueKeywords.in, SVGCSSValueKeywords.in to json5 (Closed)
Patch Set: Convert CSSProperties.in to json5 format Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698