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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 | 64 |
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 += rebase_path(bindings_generated_reference_files, ".", "//") |
74 sources += | 75 sources += |
75 rebase_path(bindings_modules_generated_partial_interface_files, ".", "//") | 76 rebase_path(bindings_modules_generated_partial_interface_files, ".", "//") |
76 sources += | 77 sources += |
77 rebase_path([ bindings_modules_generated_init_partial_interfaces_file ], | 78 rebase_path([ bindings_modules_generated_init_partial_interfaces_file ], |
78 ".", | 79 ".", |
79 "//") | 80 "//") |
80 | 81 |
81 configs += [ | 82 configs += [ |
82 ":modules_implementation", | 83 ":modules_implementation", |
83 | 84 |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 ":modules_testing", | 331 ":modules_testing", |
331 "//components/payments/mojom:mojom_blink", | 332 "//components/payments/mojom:mojom_blink", |
332 "//skia", | 333 "//skia", |
333 "//testing/gmock", | 334 "//testing/gmock", |
334 "//testing/gtest", | 335 "//testing/gtest", |
335 "//third_party/WebKit/Source/core", | 336 "//third_party/WebKit/Source/core", |
336 "//third_party/WebKit/Source/platform/wtf", | 337 "//third_party/WebKit/Source/platform/wtf", |
337 "//v8", | 338 "//v8", |
338 ] | 339 ] |
339 } | 340 } |
OLD | NEW |