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