| 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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 # Additional .cpp files for SVG. | 407 # Additional .cpp files for SVG. |
| 408 "$blink_core_output_dir/SVGElementFactory.cpp", | 408 "$blink_core_output_dir/SVGElementFactory.cpp", |
| 409 "$blink_core_output_dir/V8SVGElementWrapperFactory.cpp", | 409 "$blink_core_output_dir/V8SVGElementWrapperFactory.cpp", |
| 410 | 410 |
| 411 # Generated from make_style_shorthands.py | 411 # Generated from make_style_shorthands.py |
| 412 "$blink_core_output_dir/StylePropertyShorthand.cpp", | 412 "$blink_core_output_dir/StylePropertyShorthand.cpp", |
| 413 | 413 |
| 414 # Generated from make_style_builder.py | 414 # Generated from make_style_builder.py |
| 415 "$blink_core_output_dir/StyleBuilder.cpp", | 415 "$blink_core_output_dir/StyleBuilder.cpp", |
| 416 "$blink_core_output_dir/StyleBuilderFunctions.cpp", | 416 "$blink_core_output_dir/StyleBuilderFunctions.cpp", |
| 417 |
| 418 # Generated from make_css_property_metadata.py |
| 419 "$blink_core_output_dir/CSSPropertyMetadata.cpp", |
| 417 ] | 420 ] |
| 418 | 421 |
| 419 configs -= core_config_remove | 422 configs -= core_config_remove |
| 420 configs += core_config_add | 423 configs += core_config_add |
| 421 | 424 |
| 422 configs += [ | 425 configs += [ |
| 423 "..:inside_blink", | 426 "..:inside_blink", |
| 424 ] | 427 ] |
| 425 | 428 |
| 426 deps = [ | 429 deps = [ |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 633 "../build/scripts/templates/StyleBuilderFunctions.cpp.tmpl", | 636 "../build/scripts/templates/StyleBuilderFunctions.cpp.tmpl", |
| 634 "../build/scripts/templates/StyleBuilderFunctions.h.tmpl", | 637 "../build/scripts/templates/StyleBuilderFunctions.h.tmpl", |
| 635 ] | 638 ] |
| 636 outputs = [ | 639 outputs = [ |
| 637 "$blink_core_output_dir/StyleBuilder.cpp", | 640 "$blink_core_output_dir/StyleBuilder.cpp", |
| 638 "$blink_core_output_dir/StyleBuilderFunctions.h", | 641 "$blink_core_output_dir/StyleBuilderFunctions.h", |
| 639 "$blink_core_output_dir/StyleBuilderFunctions.cpp", | 642 "$blink_core_output_dir/StyleBuilderFunctions.cpp", |
| 640 ] | 643 ] |
| 641 } | 644 } |
| 642 | 645 |
| 646 # "CSSPropertyMetadata" in make_core_generated from GYP. |
| 647 css_properties("make_core_generated_css_property_metadata") { |
| 648 script = "../build/scripts/make_css_property_metadata.py" |
| 649 other_inputs = [ |
| 650 "../build/scripts/templates/CSSPropertyMetadata.cpp.tmpl", |
| 651 ] |
| 652 outputs = [ |
| 653 "$blink_core_output_dir/CSSPropertyMetadata.cpp", |
| 654 ] |
| 655 } |
| 656 |
| 643 # "CSSValueKeywords" in make_core_generated from GYP. | 657 # "CSSValueKeywords" in make_core_generated from GYP. |
| 644 process_in_files("make_core_generated_css_value_keywords") { | 658 process_in_files("make_core_generated_css_value_keywords") { |
| 645 script = "../build/scripts/make_css_value_keywords.py" | 659 script = "../build/scripts/make_css_value_keywords.py" |
| 646 | 660 |
| 647 in_files = [ | 661 in_files = [ |
| 648 "css/CSSValueKeywords.in", | 662 "css/CSSValueKeywords.in", |
| 649 "css/SVGCSSValueKeywords.in", | 663 "css/SVGCSSValueKeywords.in", |
| 650 ] | 664 ] |
| 651 outputs = [ | 665 outputs = [ |
| 652 "$blink_core_output_dir/CSSValueKeywords.cpp", | 666 "$blink_core_output_dir/CSSValueKeywords.cpp", |
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1061 "$blink_core_output_dir/{{source_name_part}}.h", | 1075 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1062 ] | 1076 ] |
| 1063 args = [ | 1077 args = [ |
| 1064 "{{source}}", | 1078 "{{source}}", |
| 1065 rel_blink_core_gen_dir, | 1079 rel_blink_core_gen_dir, |
| 1066 bison_exe, | 1080 bison_exe, |
| 1067 ] | 1081 ] |
| 1068 | 1082 |
| 1069 deps = make_core_generated_deps | 1083 deps = make_core_generated_deps |
| 1070 } | 1084 } |
| OLD | NEW |