Index: net/ntlm/BUILD.gn |
diff --git a/net/ntlm/BUILD.gn b/net/ntlm/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..15e6795f398391eac7659c242666cc77de4c0130 |
--- /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_buffer_reader.cc", |
+ "ntlm_buffer_reader.h", |
+ "ntlm_buffer_writer.cc", |
+ "ntlm_buffer_writer.h", |
+ "ntlm_constants.h", |
+ ] |
+ deps = [ |
+ "//base", |
+ ] |
+} |
+ |
+source_set("ntlm_unittests") { |
+ testonly = true |
+ sources = [ |
+ "ntlm_buffer_reader_unittest.cc", |
+ "ntlm_buffer_writer_unittest.cc", |
+ ] |
+ deps = [ |
+ ":ntlm", |
+ "//base", |
+ "//testing/gtest", |
+ ] |
+} |