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

Unified Diff: base/BUILD.gn

Issue 1218053003: [Android] Begin switching from lighttpd + apache to EmbeddedTestServer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/android/java/templates/NativeLibraries.template » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/BUILD.gn
diff --git a/base/BUILD.gn b/base/BUILD.gn
index 238a89a78fb3d5ebb2bcd92c3ff97bb10475daca..e5ebda898b0625462b833debb6243dfb1599c9a4 100644
--- a/base/BUILD.gn
+++ b/base/BUILD.gn
@@ -1585,7 +1585,13 @@ if (is_android) {
":base_java",
"//testing/android/reporter:reporter_java",
]
+ srcjar_deps = [ ":base_native_test_libraries_gen" ]
DEPRECATED_java_in_dir = "test/android/javatests/src"
+
+ jar_excluded_patterns = [
+ "*/NativeTestLibraries.class",
+ "*/NativeTestLibraries##*.class",
+ ]
}
# GYP: //base.gyp:base_junit_tests
@@ -1624,6 +1630,14 @@ if (is_android) {
package_name = "org/chromium/base/library_loader"
}
+ # GYP: //base/base.gyp:base_native_test_libraries_gen
+ java_cpp_template("base_native_test_libraries_gen") {
+ sources = [
+ "android/java/templates/NativeTestLibraries.template",
+ ]
+ package_name = "org/chromium/base/library_loader"
+ }
+
# GYP: //base.gyp:base_java_unittest_support
android_library("base_java_unittest_support") {
deps = [
« no previous file with comments | « no previous file | base/android/java/templates/NativeLibraries.template » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698