| 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 group("runner") { | 9 group("runner") { |
| 10 testonly = true | 10 testonly = true |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 78 |
| 79 if (is_android) { | 79 if (is_android) { |
| 80 sources = [ | 80 sources = [ |
| 81 "android/context_init.cc", | 81 "android/context_init.cc", |
| 82 "register_local_aliases.cc", | 82 "register_local_aliases.cc", |
| 83 ] | 83 ] |
| 84 | 84 |
| 85 deps += [ | 85 deps += [ |
| 86 ":lib", | 86 ":lib", |
| 87 ":register_local_aliases_fwd", | 87 ":register_local_aliases_fwd", |
| 88 "//third_party/mojo/src/mojo/edk/system", | 88 "//mojo/edk/system", |
| 89 ] | 89 ] |
| 90 | 90 |
| 91 # On android, the executable is also the native library used by the apk. | 91 # On android, the executable is also the native library used by the apk. |
| 92 # It means dynamic symbols must be preserved and exported. | 92 # It means dynamic symbols must be preserved and exported. |
| 93 ldflags = [ "-Wl,--export-dynamic" ] | 93 ldflags = [ "-Wl,--export-dynamic" ] |
| 94 } | 94 } |
| 95 } | 95 } |
| 96 | 96 |
| 97 source_set("init") { | 97 source_set("init") { |
| 98 sources = [ | 98 sources = [ |
| (...skipping 22 matching lines...) Expand all Loading... |
| 121 ] | 121 ] |
| 122 | 122 |
| 123 deps = [ | 123 deps = [ |
| 124 ":init", | 124 ":init", |
| 125 "//base", | 125 "//base", |
| 126 "//base:base_static", | 126 "//base:base_static", |
| 127 "//base/third_party/dynamic_annotations", | 127 "//base/third_party/dynamic_annotations", |
| 128 "//components/devtools_service/public/cpp", | 128 "//components/devtools_service/public/cpp", |
| 129 "//components/devtools_service/public/interfaces", | 129 "//components/devtools_service/public/interfaces", |
| 130 "//components/tracing:startup_tracing", | 130 "//components/tracing:startup_tracing", |
| 131 "//mojo/edk/system", |
| 131 "//mojo/message_pump", | 132 "//mojo/message_pump", |
| 132 "//mojo/runner/child:interfaces", | 133 "//mojo/runner/child:interfaces", |
| 133 "//mojo/runner/host:lib", | 134 "//mojo/runner/host:lib", |
| 134 "//mojo/services/network/public/interfaces", | 135 "//mojo/services/network/public/interfaces", |
| 135 "//mojo/services/tracing/public/cpp", | 136 "//mojo/services/tracing/public/cpp", |
| 136 "//mojo/services/tracing/public/interfaces", | 137 "//mojo/services/tracing/public/interfaces", |
| 137 "//mojo/shell", | 138 "//mojo/shell", |
| 138 "//mojo/shell/package_manager", | 139 "//mojo/shell/package_manager", |
| 139 "//mojo/shell/public/cpp", | 140 "//mojo/shell/public/cpp", |
| 140 "//mojo/util:filename_util", | 141 "//mojo/util:filename_util", |
| 141 "//third_party/mojo/src/mojo/edk/system", | |
| 142 "//ui/gl", | 142 "//ui/gl", |
| 143 "//url", | 143 "//url", |
| 144 ] | 144 ] |
| 145 | 145 |
| 146 public_deps = [ | 146 public_deps = [ |
| 147 ":init", | 147 ":init", |
| 148 ":switches", | 148 ":switches", |
| 149 "//mojo/shell", | 149 "//mojo/shell", |
| 150 ] | 150 ] |
| 151 | 151 |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 ":copy_mojo_runner", | 318 ":copy_mojo_runner", |
| 319 ":java", | 319 ":java", |
| 320 ":mojo_runner_apptests_assets", | 320 ":mojo_runner_apptests_assets", |
| 321 ":resources", | 321 ":resources", |
| 322 "//base:base_java", | 322 "//base:base_java", |
| 323 "//ui/platform_window/android:platform_window_java", | 323 "//ui/platform_window/android:platform_window_java", |
| 324 google_play_services_resources, | 324 google_play_services_resources, |
| 325 ] | 325 ] |
| 326 } | 326 } |
| 327 } | 327 } |
| OLD | NEW |