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

Side by Side Diff: net/android/BUILD.gn

Issue 1417973002: [Cronet] Switch from InstrumentationTest to junit (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address Helen's comments Created 5 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
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/rules.gni") 6 import("//build/config/android/rules.gni")
7 7
8 android_library("net_java") { 8 android_library("net_java") {
9 DEPRECATED_java_in_dir = "java/src" 9 DEPRECATED_java_in_dir = "java/src"
10 deps = [ 10 deps = [
(...skipping 24 matching lines...) Expand all
35 ] 35 ]
36 srcjar_deps = [ ":net_java_test_support_enums_srcjar" ] 36 srcjar_deps = [ ":net_java_test_support_enums_srcjar" ]
37 } 37 }
38 38
39 android_library("net_javatests") { 39 android_library("net_javatests") {
40 DEPRECATED_java_in_dir = "javatests/src" 40 DEPRECATED_java_in_dir = "javatests/src"
41 deps = [ 41 deps = [
42 "//base:base_java", 42 "//base:base_java",
43 "//base:base_java_test_support", 43 "//base:base_java_test_support",
44 ":net_java", 44 ":net_java",
45 ":net_java_test_support",
45 ] 46 ]
46 } 47 }
47 48
48 java_cpp_template("net_errors_java") { 49 java_cpp_template("net_errors_java") {
49 package_name = "org/chromium/net" 50 package_name = "org/chromium/net"
50 sources = [ 51 sources = [
51 "java/NetError.template", 52 "java/NetError.template",
52 ] 53 ]
53 inputs = [ 54 inputs = [
54 "../base/net_error_list.h", 55 "../base/net_error_list.h",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 if (false) { 101 if (false) {
101 unittest_apk("net_unittests_apk") { 102 unittest_apk("net_unittests_apk") {
102 deps = [ 103 deps = [
103 ":net_java", 104 ":net_java",
104 ":net_javatests", 105 ":net_javatests",
105 "//net:net_unittests", 106 "//net:net_unittests",
106 ] 107 ]
107 unittests_dep = "//net:net_unittests" 108 unittests_dep = "//net:net_unittests"
108 } 109 }
109 } 110 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698