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

Unified Diff: net/BUILD.gn

Issue 239543013: Work on Mac GN build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix line endings Created 6 years, 8 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 | « crypto/BUILD.gn ('k') | skia/BUILD.gn » ('j') | skia/BUILD.gn » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/BUILD.gn
diff --git a/net/BUILD.gn b/net/BUILD.gn
index ce95a3ce83245d8ac4f3f5d2db750492eebce8c7..cde05e271903225817aa0013b50d4addace0ec87 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -281,7 +281,7 @@ component("net") {
]
}
- if (!use_nss) {
+ if (use_openssl) {
sources -= [
"cert/cert_verify_proc_nss.cc",
"cert/cert_verify_proc_nss.h",
@@ -396,19 +396,15 @@ component("net") {
}
if (is_mac) {
- sources -= [
- "ssl/client_cert_store_nss.cc",
- "ssl/client_cert_store_nss.h",
- ]
deps += [
"//third_party/nss:nspr",
"//third_party/nss",
]
libs = [
- "$SDKROOT/System/Library/Frameworks/Foundation.framework",
- "$SDKROOT/System/Library/Frameworks/Security.framework",
- "$SDKROOT/System/Library/Frameworks/SystemConfiguration.framework",
- "$SDKROOT/usr/lib/libresolv.dylib",
+ "Foundation.framework",
+ "Security.framework",
+ "SystemConfiguration.framework",
+ "resolv",
]
}
@@ -418,11 +414,11 @@ component("net") {
"//third_party/nss",
]
libs = [
- "$SDKROOT/System/Library/Frameworks/CFNetwork.framework",
- "$SDKROOT/System/Library/Frameworks/MobileCoreServices.framework",
- "$SDKROOT/System/Library/Frameworks/Security.framework",
- "$SDKROOT/System/Library/Frameworks/SystemConfiguration.framework",
- "$SDKROOT/usr/lib/libresolv.dylib",
+ "CFNetwork.framework",
+ "MobileCoreServices.framework",
+ "Security.framework",
+ "SystemConfiguration.framework",
+ "resolv",
]
}
« no previous file with comments | « crypto/BUILD.gn ('k') | skia/BUILD.gn » ('j') | skia/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698