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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//third_party/WebKit/Source/bindings/bindings.gni") | 7 import("//third_party/WebKit/Source/bindings/bindings.gni") |
8 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") | 8 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") |
9 import("//third_party/WebKit/Source/bindings/modules/modules.gni") | 9 import("//third_party/WebKit/Source/bindings/modules/modules.gni") |
10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
338 "$bindings_core_v8_output_dir/V8LayerRect.cpp", | 338 "$bindings_core_v8_output_dir/V8LayerRect.cpp", |
339 "$bindings_core_v8_output_dir/V8LayerRect.h", | 339 "$bindings_core_v8_output_dir/V8LayerRect.h", |
340 "$bindings_core_v8_output_dir/V8LayerRectList.cpp", | 340 "$bindings_core_v8_output_dir/V8LayerRectList.cpp", |
341 "$bindings_core_v8_output_dir/V8LayerRectList.h", | 341 "$bindings_core_v8_output_dir/V8LayerRectList.h", |
342 "$bindings_core_v8_output_dir/V8RefCountedScriptWrappable.cpp", | 342 "$bindings_core_v8_output_dir/V8RefCountedScriptWrappable.cpp", |
343 "$bindings_core_v8_output_dir/V8RefCountedScriptWrappable.h", | 343 "$bindings_core_v8_output_dir/V8RefCountedScriptWrappable.h", |
344 "$bindings_core_v8_output_dir/V8InternalDictionary.cpp", | 344 "$bindings_core_v8_output_dir/V8InternalDictionary.cpp", |
345 "$bindings_core_v8_output_dir/V8InternalDictionary.h", | 345 "$bindings_core_v8_output_dir/V8InternalDictionary.h", |
346 "$bindings_core_v8_output_dir/V8InternalDictionaryDerived.cpp", | 346 "$bindings_core_v8_output_dir/V8InternalDictionaryDerived.cpp", |
347 "$bindings_core_v8_output_dir/V8InternalDictionaryDerived.h", | 347 "$bindings_core_v8_output_dir/V8InternalDictionaryDerived.h", |
348 "$bindings_core_v8_output_dir/V8PluginPlaceholderOptions.cpp", | |
349 "$bindings_core_v8_output_dir/V8PluginPlaceholderOptions.h", | |
350 ] | 348 ] |
351 } | 349 } |
352 | 350 |
353 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_generated | 351 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_generated |
354 source_set("core_generated") { | 352 source_set("core_generated") { |
355 sources = bindings_core_v8_files | 353 sources = bindings_core_v8_files |
356 # These files include all the .cpp files generated from the .idl files | 354 # These files include all the .cpp files generated from the .idl files |
357 # in webcore_files. | 355 # in webcore_files. |
358 sources += bindings_core_generated_aggregate_files | 356 sources += bindings_core_generated_aggregate_files |
359 sources += bindings_core_generated_union_type_files | 357 sources += bindings_core_generated_union_type_files |
(...skipping 680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1040 "$blink_core_output_dir/{{source_name_part}}.h", | 1038 "$blink_core_output_dir/{{source_name_part}}.h", |
1041 ] | 1039 ] |
1042 args = [ | 1040 args = [ |
1043 "{{source}}", | 1041 "{{source}}", |
1044 rel_blink_core_gen_dir, | 1042 rel_blink_core_gen_dir, |
1045 bison_exe, | 1043 bison_exe, |
1046 ] | 1044 ] |
1047 | 1045 |
1048 deps = make_core_generated_deps | 1046 deps = make_core_generated_deps |
1049 } | 1047 } |
OLD | NEW |