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("//third_party/WebKit/Source/bindings/bindings.gni") | 5 import("//third_party/WebKit/Source/bindings/bindings.gni") |
6 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 6 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
7 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") | 7 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") |
8 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 8 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
9 import("//third_party/WebKit/Source/modules/modules.gni") | 9 import("//third_party/WebKit/Source/modules/modules.gni") |
10 | 10 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 "//build/config/compiler:no_size_t_to_int_warning", | 48 "//build/config/compiler:no_size_t_to_int_warning", |
49 "//third_party/WebKit/Source:config", | 49 "//third_party/WebKit/Source:config", |
50 "//third_party/WebKit/Source:non_test_config", | 50 "//third_party/WebKit/Source:non_test_config", |
51 "//third_party/WebKit/Source:inside_blink", | 51 "//third_party/WebKit/Source:inside_blink", |
52 ] | 52 ] |
53 | 53 |
54 defines = [ "BLINK_MODULES_IMPLEMENTATION=1" ] | 54 defines = [ "BLINK_MODULES_IMPLEMENTATION=1" ] |
55 | 55 |
56 deps = [ | 56 deps = [ |
57 ":make_modules_generated", | 57 ":make_modules_generated", |
| 58 "//components/webmessaging/public/interfaces:interfaces_blink", |
58 "//device/battery:mojo_bindings_blink", | 59 "//device/battery:mojo_bindings_blink", |
59 "//device/nfc:mojo_bindings_blink", | 60 "//device/nfc:mojo_bindings_blink", |
60 "//device/usb/public/interfaces:interfaces_blink", | 61 "//device/usb/public/interfaces:interfaces_blink", |
61 "//device/vibration:mojo_bindings_blink", | 62 "//device/vibration:mojo_bindings_blink", |
62 "//device/vr:mojo_bindings_blink", | 63 "//device/vr:mojo_bindings_blink", |
63 "//media/mojo/interfaces:image_capture_blink", | 64 "//media/mojo/interfaces:image_capture_blink", |
64 "//third_party/WebKit/Source/core", | 65 "//third_party/WebKit/Source/core", |
65 "//third_party/WebKit/public:mojo_bindings", | 66 "//third_party/WebKit/public:mojo_bindings", |
66 "//third_party/WebKit/public:mojo_bindings_blink", | 67 "//third_party/WebKit/public:mojo_bindings_blink", |
67 "//third_party/icu", | 68 "//third_party/icu", |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 } | 118 } |
118 | 119 |
119 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d | 120 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d |
120 group("make_modules_generated") { | 121 group("make_modules_generated") { |
121 public_deps = [ | 122 public_deps = [ |
122 ":module_names", | 123 ":module_names", |
123 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", | 124 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", |
124 "//third_party/WebKit/Source/core:core_event_interfaces", | 125 "//third_party/WebKit/Source/core:core_event_interfaces", |
125 ] | 126 ] |
126 } | 127 } |
OLD | NEW |