Chromium Code Reviews| 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", |
| + ] |
| +} |