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/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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 ] | 79 ] |
80 } | 80 } |
81 | 81 |
82 junit_binary("net_junit_tests") { | 82 junit_binary("net_junit_tests") { |
83 java_files = | 83 java_files = |
84 [ "junit/src/org/chromium/net/HttpNegotiateAuthenticatorTest.java" ] | 84 [ "junit/src/org/chromium/net/HttpNegotiateAuthenticatorTest.java" ] |
85 deps = [ | 85 deps = [ |
86 ":net_java", | 86 ":net_java", |
87 "//base:base_java", | 87 "//base:base_java", |
88 "//base:base_java_test_support", | 88 "//base:base_java_test_support", |
| 89 "//base:base_junit_test_support", |
89 "//third_party/junit:hamcrest", | 90 "//third_party/junit:hamcrest", |
90 ] | 91 ] |
91 } | 92 } |
92 | 93 |
93 # TODO(GYP) | 94 # TODO(GYP) |
94 if (false) { | 95 if (false) { |
95 unittest_apk("net_unittests_apk") { | 96 unittest_apk("net_unittests_apk") { |
96 deps = [ | 97 deps = [ |
97 ":net_java", | 98 ":net_java", |
98 ":net_javatests", | 99 ":net_javatests", |
99 "//net:net_unittests", | 100 "//net:net_unittests", |
100 ] | 101 ] |
101 unittests_dep = "//net:net_unittests" | 102 unittests_dep = "//net:net_unittests" |
102 } | 103 } |
103 } | 104 } |
OLD | NEW |