Chromium Code Reviews| Index: Source/core/BUILD.gn |
| diff --git a/Source/core/BUILD.gn b/Source/core/BUILD.gn |
| index 4212629aff32a2181e3501f847d1dfa060b4b7ae..e6a04ed1ea41f00ba3eb23f1a0631c9f2f4f2c29 100644 |
| --- a/Source/core/BUILD.gn |
| +++ b/Source/core/BUILD.gn |
| @@ -1034,12 +1034,9 @@ action("make_core_generated_media_query_tokenizer_codepoints") { |
| # "UserAgentStyleSheets" in make_core_generated from GYP. |
| action("make_core_generated_user_agent_style_sheets") { |
| visibility = ":make_core_generated" |
| - script = "../build/scripts/action_useragentstylesheets.py" |
| + script = "../build/scripts/make-file-arrays.py" |
|
haraken
2014/07/01 00:47:45
This should be make_file_arrays.py.
tkent
2014/07/01 00:52:49
I don't think so.
haraken
2014/07/01 00:59:59
All other files in build/scripts/ have xxx_yyy.py
tkent
2014/07/01 01:05:45
yeah, it's not in the scope of this CL.
|
| - scripts = [ |
| - "css/make-css-file-arrays.pl", |
| - ] |
| - stylesheets = [ |
| + source_prereqs = [ |
| "css/html.css", |
| "css/quirks.css", |
| "css/view-source.css", |
| @@ -1061,19 +1058,16 @@ action("make_core_generated_user_agent_style_sheets") { |
| "css/viewportAndroid.css", |
| ] |
| - source_prereqs = scripts + stylesheets |
| outputs = [ |
| "$blink_core_output_dir/UserAgentStyleSheets.h", |
| "$blink_core_output_dir/UserAgentStyleSheetsData.cpp", |
| ] |
| args = |
| - rebase_path(outputs, root_build_dir) + |
| - rebase_path(stylesheets, root_build_dir) + |
| - [ "--" ] + |
| - rebase_path(scripts, root_build_dir) + |
| - [ "--" ] + |
| - [ "--perl", perl_exe ] |
| + [ "--namespace", "WebCore" ] + |
| + [ "--out-h=" + rebase_path(outputs[0], root_build_dir) ] + |
| + [ "--out-cpp=" + rebase_path(outputs[1], root_build_dir) ] + |
| + rebase_path(source_prereqs, root_build_dir) |
| deps = make_core_generated_deps |
| } |