| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 | 63 |
| 64 sources += generated_modules_dictionary_files | 64 sources += generated_modules_dictionary_files |
| 65 sources += generated_modules_callback_function_files | 65 sources += generated_modules_callback_function_files |
| 66 | 66 |
| 67 # Compile sources generated by module_names script. | 67 # Compile sources generated by module_names script. |
| 68 sources += get_target_outputs(":module_names") | 68 sources += get_target_outputs(":module_names") |
| 69 | 69 |
| 70 sources += bindings_modules_v8_files | 70 sources += bindings_modules_v8_files |
| 71 sources += rebase_path(bindings_modules_generated_interface_files, ".", "//") | 71 sources += rebase_path(bindings_modules_generated_interface_files, ".", "//") |
| 72 sources += rebase_path(bindings_modules_generated_union_type_files, ".", "//") | 72 sources += rebase_path(bindings_modules_generated_union_type_files, ".", "//") |
| 73 sources += rebase_path(bindings_generated_reference_files, ".", "//") |
| 73 sources += | 74 sources += |
| 74 rebase_path(bindings_modules_generated_partial_interface_files, ".", "//") | 75 rebase_path(bindings_modules_generated_partial_interface_files, ".", "//") |
| 75 sources += | 76 sources += |
| 76 rebase_path([ bindings_modules_generated_init_partial_interfaces_file ], | 77 rebase_path([ bindings_modules_generated_init_partial_interfaces_file ], |
| 77 ".", | 78 ".", |
| 78 "//") | 79 "//") |
| 79 | 80 |
| 80 configs += [ | 81 configs += [ |
| 81 ":modules_implementation", | 82 ":modules_implementation", |
| 82 | 83 |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 ":modules_testing", | 328 ":modules_testing", |
| 328 "//components/payments/mojom:mojom_blink", | 329 "//components/payments/mojom:mojom_blink", |
| 329 "//skia", | 330 "//skia", |
| 330 "//testing/gmock", | 331 "//testing/gmock", |
| 331 "//testing/gtest", | 332 "//testing/gtest", |
| 332 "//third_party/WebKit/Source/core", | 333 "//third_party/WebKit/Source/core", |
| 333 "//third_party/WebKit/Source/platform/wtf", | 334 "//third_party/WebKit/Source/platform/wtf", |
| 334 "//v8", | 335 "//v8", |
| 335 ] | 336 ] |
| 336 } | 337 } |
| OLD | NEW |