| 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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 "$bindings_core_v8_output_dir/V8InternalDictionary.h", | 328 "$bindings_core_v8_output_dir/V8InternalDictionary.h", |
| 329 ] | 329 ] |
| 330 } | 330 } |
| 331 | 331 |
| 332 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_generated | 332 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_generated |
| 333 source_set("core_generated") { | 333 source_set("core_generated") { |
| 334 sources = bindings_core_v8_files | 334 sources = bindings_core_v8_files |
| 335 # These files include all the .cpp files generated from the .idl files | 335 # These files include all the .cpp files generated from the .idl files |
| 336 # in webcore_files. | 336 # in webcore_files. |
| 337 sources += bindings_core_generated_aggregate_files | 337 sources += bindings_core_generated_aggregate_files |
| 338 sources += bindings_core_generated_union_type_files |
| 338 # IDL dictionary impl files generated by IDL compiler | 339 # IDL dictionary impl files generated by IDL compiler |
| 339 sources += generated_core_dictionary_files | 340 sources += generated_core_dictionary_files |
| 340 | 341 |
| 341 sources += [ | 342 sources += [ |
| 342 # Additional .cpp files for HashTools.h | 343 # Additional .cpp files for HashTools.h |
| 343 "$blink_core_output_dir/CSSPropertyNames.cpp", | 344 "$blink_core_output_dir/CSSPropertyNames.cpp", |
| 344 "$blink_core_output_dir/CSSValueKeywords.cpp", | 345 "$blink_core_output_dir/CSSValueKeywords.cpp", |
| 345 | 346 |
| 346 # Additional .cpp files from make_core_generated actions. | 347 # Additional .cpp files from make_core_generated actions. |
| 347 "$blink_core_output_dir/Event.cpp", | 348 "$blink_core_output_dir/Event.cpp", |
| (...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1065 "$blink_core_output_dir/{{source_name_part}}.h", | 1066 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1066 ] | 1067 ] |
| 1067 args = [ | 1068 args = [ |
| 1068 "{{source}}", | 1069 "{{source}}", |
| 1069 rel_blink_core_gen_dir, | 1070 rel_blink_core_gen_dir, |
| 1070 bison_exe, | 1071 bison_exe, |
| 1071 ] | 1072 ] |
| 1072 | 1073 |
| 1073 deps = make_core_generated_deps | 1074 deps = make_core_generated_deps |
| 1074 } | 1075 } |
| OLD | NEW |