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("//base/android/linker/config.gni") | 5 import("//base/android/linker/config.gni") |
6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
7 import("//build/config/android/internal_rules.gni") | 7 import("//build/config/android/internal_rules.gni") |
8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
9 import("//build/toolchain/toolchain.gni") | 9 import("//build/toolchain/toolchain.gni") |
10 import("//third_party/android_platform/config.gni") | 10 import("//third_party/android_platform/config.gni") |
(...skipping 1954 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1965 (defined(invoker.java_files) || defined(invoker.DEPRECATED_java_in_dir)) | 1965 (defined(invoker.java_files) || defined(invoker.DEPRECATED_java_in_dir)) |
1966 } | 1966 } |
1967 | 1967 |
1968 group(target_name) { | 1968 group(target_name) { |
1969 public_deps = [ | 1969 public_deps = [ |
1970 ":$_apk_target_name", | 1970 ":$_apk_target_name", |
1971 ":$_test_runner_target_name", | 1971 ":$_test_runner_target_name", |
1972 | 1972 |
1973 # Required by test runner to enumerate test list. | 1973 # Required by test runner to enumerate test list. |
1974 ":${_apk_target_name}_dist_ijar", | 1974 ":${_apk_target_name}_dist_ijar", |
| 1975 invoker.apk_under_test, |
1975 ] | 1976 ] |
1976 } | 1977 } |
1977 } | 1978 } |
1978 | 1979 |
1979 # Declare an Android gtest apk | 1980 # Declare an Android gtest apk |
1980 # | 1981 # |
1981 # This target creates an Android apk for running gtest-based unittests. | 1982 # This target creates an Android apk for running gtest-based unittests. |
1982 # | 1983 # |
1983 # Variables | 1984 # Variables |
1984 # deps: Specifies the dependencies of this target. These will be passed to | 1985 # deps: Specifies the dependencies of this target. These will be passed to |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2284 } | 2285 } |
2285 | 2286 |
2286 android_library(target_name) { | 2287 android_library(target_name) { |
2287 java_files = [] | 2288 java_files = [] |
2288 srcjar_deps = [ ":${_template_name}__protoc_java" ] | 2289 srcjar_deps = [ ":${_template_name}__protoc_java" ] |
2289 deps = [ | 2290 deps = [ |
2290 "//third_party/android_protobuf:protobuf_nano_javalib", | 2291 "//third_party/android_protobuf:protobuf_nano_javalib", |
2291 ] | 2292 ] |
2292 } | 2293 } |
2293 } | 2294 } |
OLD | NEW |