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

Unified Diff: net/ntlm/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 | « net/BUILD.gn ('k') | net/ntlm/OWNERS » ('j') | net/ntlm/OWNERS » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ntlm/BUILD.gn
diff --git a/net/ntlm/BUILD.gn b/net/ntlm/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..057af774d449b11b1eaca28df190293510307a54
--- /dev/null
+++ b/net/ntlm/BUILD.gn
@@ -0,0 +1,29 @@
+# Copyright 2017 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("ntlm") {
+ sources = [
+ "ntlm.h",
+ "ntlm_buffer_reader.cc",
+ "ntlm_buffer_reader.h",
+ "ntlm_buffer_writer.cc",
+ "ntlm_buffer_writer.h",
+ ]
+ deps = [
+ "//base",
+ ]
asanka 2017/07/06 03:36:01 Eventually we can add a 'public' section here and
zentaro 2017/07/06 20:45:20 Acknowledged.
+}
+
+source_set("ntlm_unittests") {
+ testonly = true
+ sources = [
+ "ntlm_buffer_reader_unittest.cc",
+ "ntlm_buffer_writer_unittest.cc",
+ ]
+ deps = [
+ "//base",
+ "//net/ntlm",
asanka 2017/07/06 03:36:01 :ntlm
zentaro 2017/07/06 20:45:20 Done.
+ "//testing/gtest",
+ ]
+}
« no previous file with comments | « net/BUILD.gn ('k') | net/ntlm/OWNERS » ('j') | net/ntlm/OWNERS » ('J')

Powered by Google App Engine
This is Rietveld 408576698