Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Side by Side Diff: build/config/android/rules.gni

Issue 586383002: Add ChromeShellTestApk and other chrome/ test stuff (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-chrome-shell-apk
Patch Set: Rebase Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/android/gyp/find.py ('k') | chrome/android/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « build/android/gyp/find.py ('k') | chrome/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698