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

Unified Diff: net/BUILD.gn

Issue 2879353002: Add a buffer reader/writer for NTLM. (Closed)
Patch Set: EXPECT_* -> ASSERT_* Created 3 years, 5 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 | net/ntlm/BUILD.gn » ('j') | net/ntlm/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 d55845cc3045998093bd78a7bfde83a22e0d2beb..0707b6f6153adbb8b0d9021aeb87c60165a5ecc9 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -1754,6 +1754,10 @@ component("net") {
}
}
+ if (!is_win) {
+ deps += [ "//net/ntlm" ]
+ }
+
if (!enable_built_in_dns) {
sources -= [
"dns/address_sorter_posix.cc",
@@ -5216,6 +5220,10 @@ test("net_unittests") {
deps += [ "//gin" ]
}
+ if (!is_win) {
+ deps += [ "//net/ntlm:ntlm_unittests" ]
+ }
+
if (!use_nss_certs) {
sources -= [
"cert/internal/trust_store_nss_unittest.cc",
« no previous file with comments | « no previous file | net/ntlm/BUILD.gn » ('j') | net/ntlm/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698