| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 output_name = "blink_modules" | 46 output_name = "blink_modules" |
| 47 | 47 |
| 48 if (modules_target_type == "split_static_library") { | 48 if (modules_target_type == "split_static_library") { |
| 49 split_count = 5 | 49 split_count = 5 |
| 50 } | 50 } |
| 51 | 51 |
| 52 visibility = [] # Allow re-assignment of list. | 52 visibility = [] # Allow re-assignment of list. |
| 53 visibility = [ "//third_party/WebKit/*" ] | 53 visibility = [ "//third_party/WebKit/*" ] |
| 54 | 54 |
| 55 sources = [ | 55 sources = [ |
| 56 "EventModules.h", |
| 57 "EventModulesFactory.h", |
| 58 "EventTargetModules.h", |
| 59 "ModulesExport.h", |
| 56 "ModulesInitializer.cpp", | 60 "ModulesInitializer.cpp", |
| 57 "ModulesInitializer.h", | 61 "ModulesInitializer.h", |
| 58 ] | 62 ] |
| 59 | 63 |
| 60 sources += generated_modules_dictionary_files | 64 sources += generated_modules_dictionary_files |
| 61 sources += generated_modules_callback_function_files | 65 sources += generated_modules_callback_function_files |
| 62 | 66 |
| 63 # Compile sources generated by module_names script. | 67 # Compile sources generated by module_names script. |
| 64 sources += get_target_outputs(":module_names") | 68 sources += get_target_outputs(":module_names") |
| 65 | 69 |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 ":modules_testing", | 321 ":modules_testing", |
| 318 "//components/payments/content:payment_request_blink", | 322 "//components/payments/content:payment_request_blink", |
| 319 "//skia", | 323 "//skia", |
| 320 "//testing/gmock", | 324 "//testing/gmock", |
| 321 "//testing/gtest", | 325 "//testing/gtest", |
| 322 "//third_party/WebKit/Source/core", | 326 "//third_party/WebKit/Source/core", |
| 323 "//third_party/WebKit/Source/wtf", | 327 "//third_party/WebKit/Source/wtf", |
| 324 "//v8", | 328 "//v8", |
| 325 ] | 329 ] |
| 326 } | 330 } |
| OLD | NEW |