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