| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 "android/background_application_loader.cc", | 130 "android/background_application_loader.cc", |
| 131 "android/background_application_loader.h", | 131 "android/background_application_loader.h", |
| 132 "android/ui_application_loader_android.cc", | 132 "android/ui_application_loader_android.cc", |
| 133 "android/ui_application_loader_android.h", | 133 "android/ui_application_loader_android.h", |
| 134 ] | 134 ] |
| 135 | 135 |
| 136 deps += [ | 136 deps += [ |
| 137 ":jni_headers", | 137 ":jni_headers", |
| 138 ":run_android_application_function", | 138 ":run_android_application_function", |
| 139 "//components/mus/gles2", | 139 "//components/mus/gles2", |
| 140 "//mojo/shell/public/cpp:content_handler", | 140 "//mojo/shell/public/cpp:shell_client_factory", |
| 141 ] | 141 ] |
| 142 } else { | 142 } else { |
| 143 sources += [ | 143 sources += [ |
| 144 "desktop/launcher_process.cc", | 144 "desktop/launcher_process.cc", |
| 145 "desktop/launcher_process.h", | 145 "desktop/launcher_process.h", |
| 146 "desktop/main_helper.cc", | 146 "desktop/main_helper.cc", |
| 147 "desktop/main_helper.h", | 147 "desktop/main_helper.h", |
| 148 ] | 148 ] |
| 149 } | 149 } |
| 150 | 150 |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 ":copy_mojo_shell_standalone", | 279 ":copy_mojo_shell_standalone", |
| 280 ":java", | 280 ":java", |
| 281 ":mojo_shell_standalone_apptests_assets", | 281 ":mojo_shell_standalone_apptests_assets", |
| 282 ":resources", | 282 ":resources", |
| 283 "//base:base_java", | 283 "//base:base_java", |
| 284 "//ui/platform_window/android:platform_window_java", | 284 "//ui/platform_window/android:platform_window_java", |
| 285 google_play_services_resources, | 285 google_play_services_resources, |
| 286 ] | 286 ] |
| 287 } | 287 } |
| 288 } | 288 } |
| OLD | NEW |