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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 sources += generated_modules_dictionary_files | 65 sources += generated_modules_dictionary_files |
66 sources += generated_modules_callback_function_files | 66 sources += generated_modules_callback_function_files |
67 | 67 |
68 # Compile sources generated by module_names script. | 68 # Compile sources generated by module_names script. |
69 sources += get_target_outputs(":module_names") | 69 sources += get_target_outputs(":module_names") |
70 | 70 |
71 sources += bindings_modules_v8_files | 71 sources += bindings_modules_v8_files |
72 sources += rebase_path(bindings_modules_generated_interface_files, ".", "//") | 72 sources += rebase_path(bindings_modules_generated_interface_files, ".", "//") |
73 sources += rebase_path(bindings_modules_generated_union_type_files, ".", "//") | 73 sources += rebase_path(bindings_modules_generated_union_type_files, ".", "//") |
74 sources += | 74 sources += |
| 75 rebase_path([ bindings_generated_v8_snapshot_external_references_file ], |
| 76 ".", |
| 77 "//") |
| 78 sources += |
75 rebase_path(bindings_modules_generated_partial_interface_files, ".", "//") | 79 rebase_path(bindings_modules_generated_partial_interface_files, ".", "//") |
76 sources += | 80 sources += |
77 rebase_path([ bindings_modules_generated_init_partial_interfaces_file ], | 81 rebase_path([ bindings_modules_generated_init_partial_interfaces_file ], |
78 ".", | 82 ".", |
79 "//") | 83 "//") |
80 | 84 |
81 configs += [ | 85 configs += [ |
82 ":modules_implementation", | 86 ":modules_implementation", |
83 | 87 |
84 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 88 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 ":modules_testing", | 334 ":modules_testing", |
331 "//components/payments/mojom:mojom_blink", | 335 "//components/payments/mojom:mojom_blink", |
332 "//skia", | 336 "//skia", |
333 "//testing/gmock", | 337 "//testing/gmock", |
334 "//testing/gtest", | 338 "//testing/gtest", |
335 "//third_party/WebKit/Source/core", | 339 "//third_party/WebKit/Source/core", |
336 "//third_party/WebKit/Source/platform/wtf", | 340 "//third_party/WebKit/Source/platform/wtf", |
337 "//v8", | 341 "//v8", |
338 ] | 342 ] |
339 } | 343 } |
OLD | NEW |