| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 if (is_chromecast) { | 62 if (is_chromecast) { |
| 63 defines += [ | 63 defines += [ |
| 64 "BLINK_MSLOG=VLOG(2)", | 64 "BLINK_MSLOG=VLOG(2)", |
| 65 "BLINK_SBLOG=VLOG(2)", | 65 "BLINK_SBLOG=VLOG(2)", |
| 66 ] | 66 ] |
| 67 } | 67 } |
| 68 | 68 |
| 69 deps = [ | 69 deps = [ |
| 70 ":make_modules_generated", | 70 ":make_modules_generated", |
| 71 "//device/battery:mojo_bindings_blink", | 71 "//device/battery:mojo_bindings_blink", |
| 72 "//device/geolocation/public/interfaces:interfaces_blink", |
| 72 "//device/nfc:mojo_bindings_blink", | 73 "//device/nfc:mojo_bindings_blink", |
| 73 "//device/usb/public/interfaces:interfaces_blink", | 74 "//device/usb/public/interfaces:interfaces_blink", |
| 74 "//device/vibration:mojo_bindings_blink", | 75 "//device/vibration:mojo_bindings_blink", |
| 75 "//device/vr:mojo_bindings_blink", | 76 "//device/vr:mojo_bindings_blink", |
| 76 "//media/mojo/interfaces:image_capture_blink", | 77 "//media/mojo/interfaces:image_capture_blink", |
| 77 "//third_party/WebKit/Source/core", | 78 "//third_party/WebKit/Source/core", |
| 78 "//third_party/WebKit/public:mojo_bindings_blink", | 79 "//third_party/WebKit/public:mojo_bindings_blink", |
| 79 "//third_party/icu", | 80 "//third_party/icu", |
| 80 "//third_party/sqlite", | 81 "//third_party/sqlite", |
| 81 "//third_party/zlib", | 82 "//third_party/zlib", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 } | 130 } |
| 130 | 131 |
| 131 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d | 132 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d |
| 132 group("make_modules_generated") { | 133 group("make_modules_generated") { |
| 133 public_deps = [ | 134 public_deps = [ |
| 134 ":module_names", | 135 ":module_names", |
| 135 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", | 136 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", |
| 136 "//third_party/WebKit/Source/core:core_event_interfaces", | 137 "//third_party/WebKit/Source/core:core_event_interfaces", |
| 137 ] | 138 ] |
| 138 } | 139 } |
| OLD | NEW |