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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « net/BUILD.gn ('k') | net/ntlm/OWNERS » ('j') | net/ntlm/OWNERS » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« 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