OLD | NEW |
(Empty) | |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("ntlm") { |
| 6 sources = [ |
| 7 "ntlm_buffer_reader.cc", |
| 8 "ntlm_buffer_reader.h", |
| 9 "ntlm_buffer_writer.cc", |
| 10 "ntlm_buffer_writer.h", |
| 11 "ntlm_constants.h", |
| 12 ] |
| 13 deps = [ |
| 14 "//base", |
| 15 ] |
| 16 } |
| 17 |
| 18 source_set("ntlm_unittests") { |
| 19 testonly = true |
| 20 sources = [ |
| 21 "ntlm_buffer_reader_unittest.cc", |
| 22 "ntlm_buffer_writer_unittest.cc", |
| 23 ] |
| 24 deps = [ |
| 25 ":ntlm", |
| 26 "//base", |
| 27 "//testing/gtest", |
| 28 ] |
| 29 } |
OLD | NEW |