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

Unified Diff: crypto/BUILD.gn

Issue 709593004: Make *some* version of the Win GN build work. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
Index: crypto/BUILD.gn
diff --git a/crypto/BUILD.gn b/crypto/BUILD.gn
index d3d318de50ffcb82b1c8c61ffeea2aaa6a12f866..41a0b37899f806228505221ed66b4be5c5aabd40 100644
--- a/crypto/BUILD.gn
+++ b/crypto/BUILD.gn
@@ -168,7 +168,7 @@ component("crypto") {
defines = [ "CRYPTO_IMPLEMENTATION" ]
}
-if (is_win) {
+if (false && is_win) {
# A minimal crypto subset for hmac-related stuff that small standalone
# targets can use to reduce code size on Windows. This does not depend on
# OpenSSL/NSS but will use Windows APIs for that functionality.
@@ -198,6 +198,7 @@ if (is_win) {
}
}
+if (!is_win) {
test("crypto_unittests") {
sources = [
# Tests.
@@ -245,6 +246,7 @@ test("crypto_unittests") {
"//testing/gtest",
]
}
+}
source_set("test_support") {
sources = [

Powered by Google App Engine
This is Rietveld 408576698