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

Unified Diff: third_party/boringssl/BUILD.gn

Issue 2004743002: [iOS/GN] Fix the compilation of "all" on iOS with gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 | « third_party/WebKit/Source/wtf/BUILD.gn ('k') | ui/events/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/boringssl/BUILD.gn
diff --git a/third_party/boringssl/BUILD.gn b/third_party/boringssl/BUILD.gn
index a2829003793f2eae070c2eaa950021234958e7ad..8b1f025dea0de47f319f3039740a58c1929f524f 100644
--- a/third_party/boringssl/BUILD.gn
+++ b/third_party/boringssl/BUILD.gn
@@ -140,17 +140,19 @@ if (build_with_chromium) {
]
}
- test("boringssl_unittests") {
- deps = [
- ":boringssl_tests",
- "//base",
- "//base/test:run_all_unittests",
- "//base/test:test_support",
- "//testing/gtest",
- ]
- sources = [
- "boringssl_unittest.cc",
- ]
+ if (!is_ios) {
+ test("boringssl_unittests") {
+ deps = [
+ ":boringssl_tests",
+ "//base",
+ "//base/test:run_all_unittests",
+ "//base/test:test_support",
+ "//testing/gtest",
+ ]
+ sources = [
+ "boringssl_unittest.cc",
+ ]
+ }
}
# The same as boringssl, but builds with BORINGSSL_UNSAFE_FUZZER_MODE.
« no previous file with comments | « third_party/WebKit/Source/wtf/BUILD.gn ('k') | ui/events/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698