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

Unified Diff: chrome/test/BUILD.gn

Issue 1495323002: Fix unit_tests crash on start-up for GN Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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: chrome/test/BUILD.gn
diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
index 32a0caaa068a47adb3c35f3100847edbbbdd0eac..812bfb7cfc1e53eb66c17ff3aa243bd3cc922cd7 100644
--- a/chrome/test/BUILD.gn
+++ b/chrome/test/BUILD.gn
@@ -1667,12 +1667,14 @@ test("unit_tests") {
[ "../browser/download/download_request_infobar_delegate_unittest.cc" ]
}
- if (!is_android && !is_ios) {
+ if (!is_ios) {
deps += [ ":unit_tests_js" ]
- sources += rebase_path(
- chrome_tests_unit_gypi_values.chrome_unit_tests_non_mobile_sources,
- ".",
- "//chrome")
+ if (!is_android) {
+ sources += rebase_path(
+ chrome_tests_unit_gypi_values.chrome_unit_tests_non_mobile_sources,
+ ".",
+ "//chrome")
+ }
}
if (is_ios || is_chromeos) {
« 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