| 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/generate_mojo_shell_assets_list.gni") | 5 import("//mojo/generate_mojo_shell_assets_list.gni") |
| 6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 9 | 9 |
| 10 # We don't support building in the component build since mojo apps are | 10 # We don't support building in the component build since mojo apps are |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 "android/background_application_loader.cc", | 166 "android/background_application_loader.cc", |
| 167 "android/background_application_loader.h", | 167 "android/background_application_loader.h", |
| 168 "android/ui_application_loader_android.cc", | 168 "android/ui_application_loader_android.cc", |
| 169 "android/ui_application_loader_android.h", | 169 "android/ui_application_loader_android.h", |
| 170 ] | 170 ] |
| 171 | 171 |
| 172 deps += [ | 172 deps += [ |
| 173 ":jni_headers", | 173 ":jni_headers", |
| 174 ":run_android_application_function", | 174 ":run_android_application_function", |
| 175 "//components/view_manager/gles2", | 175 "//components/view_manager/gles2", |
| 176 "//components/view_manager/native_viewport", | |
| 177 "//mojo/application/public/cpp:content_handler", | 176 "//mojo/application/public/cpp:content_handler", |
| 178 ] | 177 ] |
| 179 } | 178 } |
| 180 | 179 |
| 181 # This target includes some files behind #ifdef OS... guards. Since gn is not | 180 # This target includes some files behind #ifdef OS... guards. Since gn is not |
| 182 # smart enough to understand preprocess includes, it does complains about | 181 # smart enough to understand preprocess includes, it does complains about |
| 183 # these includes when not using the build files for that OS. Suppress checking | 182 # these includes when not using the build files for that OS. Suppress checking |
| 184 # so we can enable checking for the rest of the targets in this file. | 183 # so we can enable checking for the rest of the targets in this file. |
| 185 # TODO: Might be better to split the files with OS-specific includes out to a | 184 # TODO: Might be better to split the files with OS-specific includes out to a |
| 186 # separate source_set so we can leave checking on for the rest of the target. | 185 # separate source_set so we can leave checking on for the rest of the target. |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 ] | 477 ] |
| 479 | 478 |
| 480 deps = [ | 479 deps = [ |
| 481 "//base", | 480 "//base", |
| 482 "//mojo/application/public/cpp:test_support", | 481 "//mojo/application/public/cpp:test_support", |
| 483 "//mojo/runner/test:bindings", | 482 "//mojo/runner/test:bindings", |
| 484 "//mojo/services/network/public/interfaces", | 483 "//mojo/services/network/public/interfaces", |
| 485 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 484 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
| 486 ] | 485 ] |
| 487 } | 486 } |
| OLD | NEW |