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

Unified Diff: content/test/BUILD.gn

Issue 1419583005: Make content_unittests not crash on GN Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/BUILD.gn
diff --git a/content/test/BUILD.gn b/content/test/BUILD.gn
index f5ce289fcfea0d6eeba43a1f40dbfed0bb991c87..d9724c92b784f66c45736b69bcd5fb3c5e8489e0 100644
--- a/content/test/BUILD.gn
+++ b/content/test/BUILD.gn
@@ -486,6 +486,25 @@ test("content_browsertests") {
}
}
+if (is_android) {
+ _content_unittests_apk_assets_dir =
+ "$root_out_dir/content_unittests_apk/assets"
+ copy_ex("copy_content_unittests_apk_assets") {
+ clear_dir = true
+ dest = _content_unittests_apk_assets_dir
+
+ if (v8_use_external_startup_data) {
+ sources = [
+ "$root_out_dir/natives_blob.bin",
+ "$root_out_dir/snapshot_blob.bin",
+ ]
+ deps = [
+ "//v8",
+ ]
+ }
+ }
+}
+
# TODO(GYP): Delete this after we've converted everything to GN.
# The _run targets exist only for compatibility w/ GYP.
group("content_unittests_run") {
@@ -671,7 +690,13 @@ test("content_unittests") {
"../browser/webui/url_data_manager_backend_unittest.cc",
]
deps -= [ "//device/battery" ]
- deps += [ "//testing/android/native_test:native_test_native_code" ]
+ deps += [ ":copy_content_unittests_apk_assets" ]
+
+ apk_asset_location = _content_unittests_apk_assets_dir
+ apk_deps = [
+ "//base:base_java_unittest_support",
+ "//content/public/android:content_java",
+ ]
defines += [ "APPCACHE_USE_SIMPLE_CACHE" ]
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698