Chromium Code Reviews| 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.h", | |
| 8 "ntlm_buffer_reader.cc", | |
| 9 "ntlm_buffer_reader.h", | |
| 10 "ntlm_buffer_writer.cc", | |
| 11 "ntlm_buffer_writer.h", | |
| 12 ] | |
| 13 deps = [ | |
| 14 "//base", | |
| 15 ] | |
|
asanka
2017/07/06 03:36:01
Eventually we can add a 'public' section here and
zentaro
2017/07/06 20:45:20
Acknowledged.
| |
| 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 "//base", | |
| 26 "//net/ntlm", | |
|
asanka
2017/07/06 03:36:01
:ntlm
zentaro
2017/07/06 20:45:20
Done.
| |
| 27 "//testing/gtest", | |
| 28 ] | |
| 29 } | |
| OLD | NEW |