| 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("//third_party/mojo/src/mojo/public/mojo_application.gni") | 5 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
| 9 | 9 |
| 10 java_library_path = "$target_out_dir/java_library.dex.jar" | 10 java_library_path = "$target_out_dir/java_library.dex.jar" |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 "//mojo/application:test_support", | 120 "//mojo/application:test_support", |
| 121 "//mojo/common", | 121 "//mojo/common", |
| 122 "//mojo/services/network/public/cpp", | 122 "//mojo/services/network/public/cpp", |
| 123 "//mojo/services/network/public/interfaces", | 123 "//mojo/services/network/public/interfaces", |
| 124 "//net", | 124 "//net", |
| 125 "//net:test_support", | 125 "//net:test_support", |
| 126 "//testing/gtest", | 126 "//testing/gtest", |
| 127 "//third_party/mojo/src/mojo/public/cpp/bindings", | 127 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 128 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 128 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
| 129 ] | 129 ] |
| 130 | |
| 131 # TODO(msw): Move this to mojo/application:test_support; see crbug.com/477104. | |
| 132 data_deps = [] | |
| 133 if (is_android) { | |
| 134 data_deps += [ "//mojo/android" ] | |
| 135 } | |
| 136 if (!is_component_build) { | |
| 137 data_deps += [ "//mojo/shell:mojo_shell" ] | |
| 138 } | |
| 139 } | 130 } |
| OLD | NEW |