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 29 matching lines...) Expand all Loading... |
40 "//build/config/compiler:no_size_t_to_int_warning", | 40 "//build/config/compiler:no_size_t_to_int_warning", |
41 "//third_party/WebKit/Source:config", | 41 "//third_party/WebKit/Source:config", |
42 "//third_party/WebKit/Source:inside_blink", | 42 "//third_party/WebKit/Source:inside_blink", |
43 ] | 43 ] |
44 | 44 |
45 defines = [ "BLINK_MODULES_IMPLEMENTATION=1" ] | 45 defines = [ "BLINK_MODULES_IMPLEMENTATION=1" ] |
46 | 46 |
47 deps = [ | 47 deps = [ |
48 ":make_modules_generated", | 48 ":make_modules_generated", |
49 "//device/battery:mojo_bindings", | 49 "//device/battery:mojo_bindings", |
| 50 "//device/sensor:mojo_bindings", |
50 "//mojo/public/c/system:for_component", | 51 "//mojo/public/c/system:for_component", |
51 "//third_party/WebKit/Source/core", | 52 "//third_party/WebKit/Source/core", |
52 "//third_party/WebKit/public:mojo_bindings", | 53 "//third_party/WebKit/public:mojo_bindings", |
53 "//third_party/WebKit/public:mojo_bindings_blink", | 54 "//third_party/WebKit/public:mojo_bindings_blink", |
54 "//third_party/icu", | 55 "//third_party/icu", |
55 "//third_party/sqlite", | 56 "//third_party/sqlite", |
56 "//third_party/zlib", | 57 "//third_party/zlib", |
57 ] | 58 ] |
58 | 59 |
59 if (is_win) { | 60 if (is_win) { |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 } | 111 } |
111 | 112 |
112 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d | 113 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d |
113 group("make_modules_generated") { | 114 group("make_modules_generated") { |
114 public_deps = [ | 115 public_deps = [ |
115 ":module_names", | 116 ":module_names", |
116 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", | 117 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", |
117 "//third_party/WebKit/Source/core:core_event_interfaces", | 118 "//third_party/WebKit/Source/core:core_event_interfaces", |
118 ] | 119 ] |
119 } | 120 } |
OLD | NEW |