OLD | NEW |
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/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//third_party/WebKit/Source/bindings/bindings.gni") | 6 import("//third_party/WebKit/Source/bindings/bindings.gni") |
7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") | 7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") |
8 import("//third_party/WebKit/Source/bindings/modules/modules.gni") | 8 import("//third_party/WebKit/Source/bindings/modules/modules.gni") |
9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") | 10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") |
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
558 rebase_path("../platform/RuntimeEnabledFeatures.in", root_build_dir), | 558 rebase_path("../platform/RuntimeEnabledFeatures.in", root_build_dir), |
559 "--output_dir", rel_blink_core_gen_dir, | 559 "--output_dir", rel_blink_core_gen_dir, |
560 ] | 560 ] |
561 } | 561 } |
562 | 562 |
563 # make_core_generated ---------------------------------------------------------- | 563 # make_core_generated ---------------------------------------------------------- |
564 | 564 |
565 # GYP version: WebKit/Source/core/core_generated.gyp:make_core_generated | 565 # GYP version: WebKit/Source/core/core_generated.gyp:make_core_generated |
566 group("make_core_generated") { | 566 group("make_core_generated") { |
567 deps = [ | 567 deps = [ |
| 568 ":make_core_generated_private_script", |
568 ":make_core_generated_xml_viewer_css", | 569 ":make_core_generated_xml_viewer_css", |
569 ":make_core_generated_xml_viewer_js", | 570 ":make_core_generated_xml_viewer_js", |
570 ":make_core_generated_html_entity_table", | 571 ":make_core_generated_html_entity_table", |
571 ":make_core_generated_css_property_names", | 572 ":make_core_generated_css_property_names", |
572 ":make_core_generated_media_feature_names", | 573 ":make_core_generated_media_feature_names", |
573 ":make_core_generated_media_features", | 574 ":make_core_generated_media_features", |
574 ":make_core_generated_media_type_names", | 575 ":make_core_generated_media_type_names", |
575 ":make_core_generated_media_query_tokenizer_codepoints", | 576 ":make_core_generated_media_query_tokenizer_codepoints", |
576 ":make_core_generated_style_property_shorthand", | 577 ":make_core_generated_style_property_shorthand", |
577 ":make_core_generated_style_builder", | 578 ":make_core_generated_style_builder", |
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1118 "$blink_core_output_dir/{{source_name_part}}.h", | 1119 "$blink_core_output_dir/{{source_name_part}}.h", |
1119 ] | 1120 ] |
1120 args = [ | 1121 args = [ |
1121 "{{source}}", | 1122 "{{source}}", |
1122 rel_blink_core_gen_dir, | 1123 rel_blink_core_gen_dir, |
1123 bison_exe, | 1124 bison_exe, |
1124 ] | 1125 ] |
1125 | 1126 |
1126 deps = make_core_generated_deps | 1127 deps = make_core_generated_deps |
1127 } | 1128 } |
OLD | NEW |