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/split_static_library.gni") | 5 import("//build/split_static_library.gni") |
6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.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/modules/v8/generated.gni") | 8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") | 9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") |
10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 "ModulesInitializer.cpp", | 56 "ModulesInitializer.cpp", |
57 "ModulesInitializer.h", | 57 "ModulesInitializer.h", |
58 ] | 58 ] |
59 | 59 |
60 sources += generated_modules_dictionary_files | 60 sources += generated_modules_dictionary_files |
61 | 61 |
62 # Compile sources generated by module_names script. | 62 # Compile sources generated by module_names script. |
63 sources += get_target_outputs(":module_names") | 63 sources += get_target_outputs(":module_names") |
64 | 64 |
65 sources += bindings_modules_v8_files | 65 sources += bindings_modules_v8_files |
66 sources += rebase_path(bindings_modules_generated_aggregate_files, ".", "//") | 66 sources += rebase_path(bindings_modules_generated_interface_files, ".", "//") |
67 sources += rebase_path(bindings_modules_generated_union_type_files, ".", "//") | 67 sources += rebase_path(bindings_modules_generated_union_type_files, ".", "//") |
68 sources += | 68 sources += |
69 rebase_path(bindings_modules_generated_partial_aggregate_files, ".", "//") | 69 rebase_path(bindings_modules_generated_partial_interface_files, ".", "//") |
70 sources += | 70 sources += |
71 rebase_path([ bindings_modules_generated_init_partial_interfaces_file ], | 71 rebase_path([ bindings_modules_generated_init_partial_interfaces_file ], |
72 ".", | 72 ".", |
73 "//") | 73 "//") |
74 | 74 |
75 configs += [ | 75 configs += [ |
76 ":modules_implementation", | 76 ":modules_implementation", |
77 | 77 |
78 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 78 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
79 "//build/config/compiler:no_size_t_to_int_warning", | 79 "//build/config/compiler:no_size_t_to_int_warning", |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 ":modules", | 288 ":modules", |
289 ":modules_testing", | 289 ":modules_testing", |
290 "//skia", | 290 "//skia", |
291 "//testing/gmock", | 291 "//testing/gmock", |
292 "//testing/gtest", | 292 "//testing/gtest", |
293 "//third_party/WebKit/Source/core", | 293 "//third_party/WebKit/Source/core", |
294 "//third_party/WebKit/Source/wtf", | 294 "//third_party/WebKit/Source/wtf", |
295 "//v8", | 295 "//v8", |
296 ] | 296 ] |
297 } | 297 } |
OLD | NEW |