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/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
8 | 8 |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 ] | 54 ] |
55 | 55 |
56 deps = [ | 56 deps = [ |
57 ":lib", | 57 ":lib", |
58 "//base", | 58 "//base", |
59 "//components/view_manager/public/interfaces", | 59 "//components/view_manager/public/interfaces", |
60 "//components/view_manager/native_viewport", | 60 "//components/view_manager/native_viewport", |
61 "//mojo/application/public/cpp", | 61 "//mojo/application/public/cpp", |
62 "//mojo/converters/geometry", | 62 "//mojo/converters/geometry", |
63 "//mojo/environment:chromium", | 63 "//mojo/environment:chromium", |
64 "//mojo/platform_handle", | |
65 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", | 64 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", |
66 "//ui/events", | 65 "//ui/events", |
67 "//ui/events/platform", | 66 "//ui/events/platform", |
68 "//ui/gl", | 67 "//ui/gl", |
69 ] | 68 ] |
70 | 69 |
71 data_deps = [ "//components/view_manager/surfaces" ] | 70 data_deps = [ "//components/view_manager/surfaces" ] |
72 } | 71 } |
73 } | 72 } |
74 | 73 |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 ":test_support", | 185 ":test_support", |
187 ":lib", | 186 ":lib", |
188 "//base", | 187 "//base", |
189 "//base/test:test_config", | 188 "//base/test:test_config", |
190 "//components/view_manager/public/cpp:common", | 189 "//components/view_manager/public/cpp:common", |
191 "//components/view_manager/public/interfaces", | 190 "//components/view_manager/public/interfaces", |
192 "//mojo/application/public/interfaces", | 191 "//mojo/application/public/interfaces", |
193 "//mojo/converters/geometry", | 192 "//mojo/converters/geometry", |
194 "//mojo/converters/input_events", | 193 "//mojo/converters/input_events", |
195 "//mojo/environment:chromium", | 194 "//mojo/environment:chromium", |
196 "//mojo/platform_handle", | |
197 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | 195 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", |
198 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", | 196 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", |
199 "//ui/mojo/geometry:interfaces", | 197 "//ui/mojo/geometry:interfaces", |
200 "//ui/mojo/events:interfaces", | 198 "//ui/mojo/events:interfaces", |
201 "//testing/gtest", | 199 "//testing/gtest", |
202 "//ui/gfx", | 200 "//ui/gfx", |
203 "//ui/gfx:test_support", | 201 "//ui/gfx:test_support", |
204 "//ui/gfx/geometry", | 202 "//ui/gfx/geometry", |
205 ] | 203 ] |
206 | 204 |
(...skipping 17 matching lines...) Expand all Loading... |
224 "//base/test:test_config", | 222 "//base/test:test_config", |
225 "//components/view_manager/public/cpp", | 223 "//components/view_manager/public/cpp", |
226 "//components/view_manager/public/interfaces", | 224 "//components/view_manager/public/interfaces", |
227 "//mojo/application/public/cpp:test_support", | 225 "//mojo/application/public/cpp:test_support", |
228 "//ui/mojo/geometry:interfaces", | 226 "//ui/mojo/geometry:interfaces", |
229 "//ui/mojo/geometry:util", | 227 "//ui/mojo/geometry:util", |
230 ] | 228 ] |
231 | 229 |
232 data_deps = [ ":view_manager" ] | 230 data_deps = [ ":view_manager" ] |
233 } | 231 } |
OLD | NEW |