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("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/android/internal_rules.gni") | 6 import("//build/config/android/internal_rules.gni") |
7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
8 | 8 |
9 assert(is_android) | 9 assert(is_android) |
10 | 10 |
(...skipping 1185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1196 } | 1196 } |
1197 | 1197 |
1198 android_library(target_name) { | 1198 android_library(target_name) { |
1199 java_files = [] | 1199 java_files = [] |
1200 srcjar_deps = [ ":${_template_name}__protoc_java" ] | 1200 srcjar_deps = [ ":${_template_name}__protoc_java" ] |
1201 deps = [ | 1201 deps = [ |
1202 "//third_party/android_protobuf:protobuf_nano_javalib", | 1202 "//third_party/android_protobuf:protobuf_nano_javalib", |
1203 ] | 1203 ] |
1204 } | 1204 } |
1205 } | 1205 } |
| 1206 |
| 1207 # TODO(GYP): implement this. |
| 1208 template("uiautomator_test") { |
| 1209 if (defined(invoker.testonly)) { testonly = invoker.testonly } |
| 1210 assert(target_name != "") |
| 1211 assert(invoker.deps != [] || true) |
| 1212 group(target_name) { |
| 1213 } |
| 1214 } |
OLD | NEW |