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