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") |
11 import("//build/config/android/rules.gni") | 11 import("//build/config/android/rules.gni") |
12 | 12 |
13 group("view_manager") { | 13 group("view_manager") { |
14 deps = [ | 14 deps = [ |
15 ":lib", | 15 ":lib", |
16 ":loader", | 16 ":loader", |
17 "native_viewport", | 17 "native_viewport", |
18 ] | 18 ] |
19 } | 19 } |
20 | 20 |
21 source_set("loader") { | 21 source_set("loader") { |
22 sources = [ | 22 sources = [ |
23 "android_loader.cc", | 23 "android_loader.cc", |
24 "android_loader.h", | 24 "android_loader.h", |
25 ] | 25 ] |
26 | 26 |
27 deps = [ | 27 deps = [ |
28 "public/interfaces", | 28 "public/interfaces", |
29 "//mojo/services/tracing:lib", | |
30 "//third_party/mojo/src/mojo/public/cpp/bindings", | 29 "//third_party/mojo/src/mojo/public/cpp/bindings", |
31 ] | 30 ] |
32 } | 31 } |
33 } else { | 32 } else { |
34 mojo_native_application("view_manager") { | 33 mojo_native_application("view_manager") { |
35 sources = [ | 34 sources = [ |
36 "main.cc", | 35 "main.cc", |
37 ] | 36 ] |
38 | 37 |
39 deps = [ | 38 deps = [ |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 "//components/view_manager/public/cpp", | 219 "//components/view_manager/public/cpp", |
221 "//components/view_manager/public/cpp/tests:test_support", | 220 "//components/view_manager/public/cpp/tests:test_support", |
222 "//components/view_manager/public/interfaces", | 221 "//components/view_manager/public/interfaces", |
223 "//mojo/application/public/cpp:test_support", | 222 "//mojo/application/public/cpp:test_support", |
224 "//ui/mojo/geometry:interfaces", | 223 "//ui/mojo/geometry:interfaces", |
225 "//ui/mojo/geometry:util", | 224 "//ui/mojo/geometry:util", |
226 ] | 225 ] |
227 | 226 |
228 data_deps = [ ":view_manager" ] | 227 data_deps = [ ":view_manager" ] |
229 } | 228 } |
OLD | NEW |