| 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 "$bindings_core_v8_output_dir/V8InternalDictionary.h", | 334 "$bindings_core_v8_output_dir/V8InternalDictionary.h", |
| 335 ] | 335 ] |
| 336 } | 336 } |
| 337 | 337 |
| 338 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_generated | 338 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_generated |
| 339 source_set("core_generated") { | 339 source_set("core_generated") { |
| 340 sources = bindings_core_v8_files | 340 sources = bindings_core_v8_files |
| 341 # These files include all the .cpp files generated from the .idl files | 341 # These files include all the .cpp files generated from the .idl files |
| 342 # in webcore_files. | 342 # in webcore_files. |
| 343 sources += bindings_core_generated_aggregate_files | 343 sources += bindings_core_generated_aggregate_files |
| 344 # IDL dictionary impl files generated by IDL compiler |
| 345 sources += generated_core_dictionary_files |
| 344 | 346 |
| 345 sources += [ | 347 sources += [ |
| 346 # Additional .cpp files for HashTools.h | 348 # Additional .cpp files for HashTools.h |
| 347 "$blink_core_output_dir/CSSPropertyNames.cpp", | 349 "$blink_core_output_dir/CSSPropertyNames.cpp", |
| 348 "$blink_core_output_dir/CSSValueKeywords.cpp", | 350 "$blink_core_output_dir/CSSValueKeywords.cpp", |
| 349 | 351 |
| 350 # Additional .cpp files from make_core_generated actions. | 352 # Additional .cpp files from make_core_generated actions. |
| 351 "$blink_core_output_dir/Event.cpp", | 353 "$blink_core_output_dir/Event.cpp", |
| 352 "$blink_core_output_dir/EventHeaders.h", | 354 "$blink_core_output_dir/EventHeaders.h", |
| 353 "$blink_core_output_dir/EventInterfaces.h", | 355 "$blink_core_output_dir/EventInterfaces.h", |
| (...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1082 "$blink_core_output_dir/{{source_name_part}}.h", | 1084 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1083 ] | 1085 ] |
| 1084 args = [ | 1086 args = [ |
| 1085 "{{source}}", | 1087 "{{source}}", |
| 1086 rel_blink_core_gen_dir, | 1088 rel_blink_core_gen_dir, |
| 1087 bison_exe, | 1089 bison_exe, |
| 1088 ] | 1090 ] |
| 1089 | 1091 |
| 1090 deps = make_core_generated_deps | 1092 deps = make_core_generated_deps |
| 1091 } | 1093 } |
| OLD | NEW |