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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 "$bindings_core_v8_output_dir/V8InternalRuntimeFlags.cpp", | 321 "$bindings_core_v8_output_dir/V8InternalRuntimeFlags.cpp", |
322 "$bindings_core_v8_output_dir/V8InternalRuntimeFlags.h", | 322 "$bindings_core_v8_output_dir/V8InternalRuntimeFlags.h", |
323 "$bindings_core_v8_output_dir/V8LayerRect.cpp", | 323 "$bindings_core_v8_output_dir/V8LayerRect.cpp", |
324 "$bindings_core_v8_output_dir/V8LayerRect.h", | 324 "$bindings_core_v8_output_dir/V8LayerRect.h", |
325 "$bindings_core_v8_output_dir/V8LayerRectList.cpp", | 325 "$bindings_core_v8_output_dir/V8LayerRectList.cpp", |
326 "$bindings_core_v8_output_dir/V8LayerRectList.h", | 326 "$bindings_core_v8_output_dir/V8LayerRectList.h", |
327 "$bindings_core_v8_output_dir/V8RefCountedScriptWrappable.cpp", | 327 "$bindings_core_v8_output_dir/V8RefCountedScriptWrappable.cpp", |
328 "$bindings_core_v8_output_dir/V8RefCountedScriptWrappable.h", | 328 "$bindings_core_v8_output_dir/V8RefCountedScriptWrappable.h", |
329 "$bindings_core_v8_output_dir/V8InternalDictionary.cpp", | 329 "$bindings_core_v8_output_dir/V8InternalDictionary.cpp", |
330 "$bindings_core_v8_output_dir/V8InternalDictionary.h", | 330 "$bindings_core_v8_output_dir/V8InternalDictionary.h", |
| 331 "$bindings_core_v8_output_dir/V8PluginPlaceholderOptions.cpp", |
| 332 "$bindings_core_v8_output_dir/V8PluginPlaceholderOptions.h", |
331 ] | 333 ] |
332 } | 334 } |
333 | 335 |
334 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_generated | 336 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_generated |
335 source_set("core_generated") { | 337 source_set("core_generated") { |
336 sources = bindings_core_v8_files | 338 sources = bindings_core_v8_files |
337 # These files include all the .cpp files generated from the .idl files | 339 # These files include all the .cpp files generated from the .idl files |
338 # in webcore_files. | 340 # in webcore_files. |
339 sources += bindings_core_generated_aggregate_files | 341 sources += bindings_core_generated_aggregate_files |
340 sources += bindings_core_generated_union_type_files | 342 sources += bindings_core_generated_union_type_files |
(...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1068 "$blink_core_output_dir/{{source_name_part}}.h", | 1070 "$blink_core_output_dir/{{source_name_part}}.h", |
1069 ] | 1071 ] |
1070 args = [ | 1072 args = [ |
1071 "{{source}}", | 1073 "{{source}}", |
1072 rel_blink_core_gen_dir, | 1074 rel_blink_core_gen_dir, |
1073 bison_exe, | 1075 bison_exe, |
1074 ] | 1076 ] |
1075 | 1077 |
1076 deps = make_core_generated_deps | 1078 deps = make_core_generated_deps |
1077 } | 1079 } |
OLD | NEW |