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

Unified Diff: third_party/WebKit/Source/core/BUILD.gn

Issue 2620883002: Convert Settings.in, CSSValueKeywords.in, SVGCSSValueKeywords.in to json5 (Closed)
Patch Set: Fix comment indent in data 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/core/BUILD.gn
diff --git a/third_party/WebKit/Source/core/BUILD.gn b/third_party/WebKit/Source/core/BUILD.gn
index b6e4985195c3df6891acd159959525ae7f2a2155..c6f44363b33d78f69c87b2c1a0a1471e0f40664f 100644
--- a/third_party/WebKit/Source/core/BUILD.gn
+++ b/third_party/WebKit/Source/core/BUILD.gn
@@ -342,14 +342,14 @@ action("generated_settings_macros") {
inputs = scripts_for_in_files + [
"../build/scripts/make_settings.py",
"../build/scripts/templates/SettingsMacros.h.tmpl",
- "frame/Settings.in",
+ "frame/Settings.json5",
]
outputs = [
"$blink_core_output_dir/SettingsMacros.h",
]
args = [
- rebase_path("frame/Settings.in", root_build_dir),
+ rebase_path("frame/Settings.json5", root_build_dir),
"--output_dir",
rel_blink_core_gen_dir,
]
@@ -363,7 +363,7 @@ action("generated_testing_idls_settings") {
"../build/scripts/templates/InternalSettingsGenerated.idl.tmpl",
"../build/scripts/templates/InternalSettingsGenerated.cpp.tmpl",
"../build/scripts/templates/InternalSettingsGenerated.h.tmpl",
- "frame/Settings.in",
+ "frame/Settings.json5",
]
outputs = [
"$blink_core_output_dir/testing/InternalSettingsGenerated.idl",
@@ -372,7 +372,7 @@ action("generated_testing_idls_settings") {
]
args = [
- rebase_path("frame/Settings.in", root_build_dir),
+ rebase_path("frame/Settings.json5", root_build_dir),
"--output_dir",
"$rel_blink_core_gen_dir/testing",
]
@@ -494,8 +494,8 @@ process_in_files("make_core_generated_css_value_keywords") {
script = "../build/scripts/make_css_value_keywords.py"
in_files = [
- "css/CSSValueKeywords.in",
- "css/SVGCSSValueKeywords.in",
+ "css/CSSValueKeywords.json5",
+ "css/SVGCSSValueKeywords.json5",
]
outputs = [
"$blink_core_output_dir/CSSValueKeywords.cpp",

Powered by Google App Engine
This is Rietveld 408576698