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

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

Issue 2633223003: Convert CSSProperties.in to JSON5 format (Closed)
Patch Set: Fix test_converter_unittest Created 3 years, 10 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 937 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698