| 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 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 if (is_chromecast) { | 28 if (is_chromecast) { |
| 29 defines += [ | 29 defines += [ |
| 30 "BLINK_MSLOG=VLOG(2)", | 30 "BLINK_MSLOG=VLOG(2)", |
| 31 "BLINK_SBLOG=VLOG(2)", | 31 "BLINK_SBLOG=VLOG(2)", |
| 32 ] | 32 ] |
| 33 } | 33 } |
| 34 } | 34 } |
| 35 | 35 |
| 36 make_names("module_names") { | 36 make_names("module_names") { |
| 37 in_files = [ "indexeddb/IndexedDBNames.in" ] | 37 in_files = [ "indexeddb/IndexedDBNames.json5" ] |
| 38 outputs = [ | 38 outputs = [ |
| 39 "$blink_modules_output_dir/IndexedDBNames.cpp", | 39 "$blink_modules_output_dir/IndexedDBNames.cpp", |
| 40 "$blink_modules_output_dir/IndexedDBNames.h", | 40 "$blink_modules_output_dir/IndexedDBNames.h", |
| 41 ] | 41 ] |
| 42 deps = [] # Don't use default deps (otherwise it will be circular). | 42 deps = [] # Don't use default deps (otherwise it will be circular). |
| 43 } | 43 } |
| 44 | 44 |
| 45 target(modules_target_type, "modules") { | 45 target(modules_target_type, "modules") { |
| 46 output_name = "blink_modules" | 46 output_name = "blink_modules" |
| 47 | 47 |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 ":modules_testing", | 309 ":modules_testing", |
| 310 "//components/payments:payment_request_blink", | 310 "//components/payments:payment_request_blink", |
| 311 "//skia", | 311 "//skia", |
| 312 "//testing/gmock", | 312 "//testing/gmock", |
| 313 "//testing/gtest", | 313 "//testing/gtest", |
| 314 "//third_party/WebKit/Source/core", | 314 "//third_party/WebKit/Source/core", |
| 315 "//third_party/WebKit/Source/wtf", | 315 "//third_party/WebKit/Source/wtf", |
| 316 "//v8", | 316 "//v8", |
| 317 ] | 317 ] |
| 318 } | 318 } |
| OLD | NEW |