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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 } else { | 47 } else { |
48 sources += [ | 48 sources += [ |
49 "android/context_init.h", | 49 "android/context_init.h", |
50 "android/library_loader.cc", | 50 "android/library_loader.cc", |
51 "android/main.cc", | 51 "android/main.cc", |
52 "android/main.h", | 52 "android/main.h", |
53 ] | 53 ] |
54 | 54 |
55 deps += [ | 55 deps += [ |
56 ":jni_headers", | 56 ":jni_headers", |
| 57 "//base:i18n", |
57 "//components/mus", | 58 "//components/mus", |
58 "//components/mus/ws:lib", | 59 "//components/mus/ws:lib", |
59 "//mojo/shell", | 60 "//mojo/shell", |
60 "//ui/gl", | 61 "//ui/gl", |
61 "//ui/platform_window/android", | 62 "//ui/platform_window/android", |
62 ] | 63 ] |
63 } | 64 } |
64 } | 65 } |
65 | 66 |
66 executable("standalone") { | 67 executable("standalone") { |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 ":copy_mojo_shell_standalone", | 299 ":copy_mojo_shell_standalone", |
299 ":java", | 300 ":java", |
300 ":mojo_shell_standalone_apptests_assets", | 301 ":mojo_shell_standalone_apptests_assets", |
301 ":resources", | 302 ":resources", |
302 "//base:base_java", | 303 "//base:base_java", |
303 "//ui/platform_window/android:platform_window_java", | 304 "//ui/platform_window/android:platform_window_java", |
304 google_play_services_resources, | 305 google_play_services_resources, |
305 ] | 306 ] |
306 } | 307 } |
307 } | 308 } |
OLD | NEW |