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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/BUILD.gn
diff --git a/third_party/WebKit/Source/devtools/BUILD.gn b/third_party/WebKit/Source/devtools/BUILD.gn
index 93fb9a85ffc91b91bf887dd81fa79a2ca91edc2a..5520423b875a83444cb15a5a1a08919931f34fed 100644
--- a/third_party/WebKit/Source/devtools/BUILD.gn
+++ b/third_party/WebKit/Source/devtools/BUILD.gn
@@ -945,17 +945,16 @@ action("devtools_extension_api") {
action("supported_css_properties") {
script = "scripts/build/generate_supported_css.py"
+ helper_scripts = [ "scripts/build/json5_generator.py" ]
- inputs = [
- "../core/css/CSSProperties.in",
- ]
+ inputs = helper_scripts + [ "../core/css/CSSProperties.json5" ]
outputs = [
"$resources_out_dir/SupportedCSSProperties.js",
]
- args =
- rebase_path(inputs, root_build_dir) + rebase_path(outputs, root_build_dir)
+ args = rebase_path([ "../core/css/CSSProperties.json5" ], root_build_dir) +
+ rebase_path(outputs, root_build_dir)
}
action("frontend_protocol_sources") {

Powered by Google App Engine
This is Rietveld 408576698