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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 | 61 |
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 "//components/webmessaging/public/interfaces:interfaces_blink", | |
72 "//device/battery:mojo_bindings_blink", | 71 "//device/battery:mojo_bindings_blink", |
73 "//device/nfc:mojo_bindings_blink", | 72 "//device/nfc:mojo_bindings_blink", |
74 "//device/usb/public/interfaces:interfaces_blink", | 73 "//device/usb/public/interfaces:interfaces_blink", |
75 "//device/vibration:mojo_bindings_blink", | 74 "//device/vibration:mojo_bindings_blink", |
76 "//device/vr:mojo_bindings_blink", | 75 "//device/vr:mojo_bindings_blink", |
77 "//media/mojo/interfaces:image_capture_blink", | 76 "//media/mojo/interfaces:image_capture_blink", |
78 "//third_party/WebKit/Source/core", | 77 "//third_party/WebKit/Source/core", |
79 "//third_party/WebKit/public:mojo_bindings_blink", | 78 "//third_party/WebKit/public:mojo_bindings_blink", |
80 "//third_party/icu", | 79 "//third_party/icu", |
81 "//third_party/sqlite", | 80 "//third_party/sqlite", |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 } | 129 } |
131 | 130 |
132 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d | 131 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d |
133 group("make_modules_generated") { | 132 group("make_modules_generated") { |
134 public_deps = [ | 133 public_deps = [ |
135 ":module_names", | 134 ":module_names", |
136 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", | 135 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", |
137 "//third_party/WebKit/Source/core:core_event_interfaces", | 136 "//third_party/WebKit/Source/core:core_event_interfaces", |
138 ] | 137 ] |
139 } | 138 } |
OLD | NEW |