OLD | NEW |
| (Empty) |
1 # Copyright 2014 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("domain_socket") { | |
6 sources = [ | |
7 "completion_callback.h", | |
8 "net_errors.cc", | |
9 "net_errors.h", | |
10 "net_error_list.h", | |
11 "socket_descriptor.h", | |
12 "socket_libevent.cc", | |
13 "socket_libevent.h", | |
14 "unix_domain_client_socket_posix.cc", | |
15 "unix_domain_client_socket_posix.h", | |
16 "unix_domain_server_socket_posix.cc", | |
17 "unix_domain_server_socket_posix.h", | |
18 ] | |
19 | |
20 deps = [ | |
21 "//base", | |
22 ] | |
23 } | |
24 | |
25 source_set("tests") { | |
26 testonly = true | |
27 | |
28 sources = [ | |
29 "test_completion_callback.cc", | |
30 "test_completion_callback.h", | |
31 "unix_domain_client_socket_posix_unittest.cc", | |
32 "unix_domain_server_socket_posix_unittest.cc", | |
33 ] | |
34 | |
35 deps = [ | |
36 ":domain_socket", | |
37 "//base", | |
38 "//base/test:test_support", | |
39 "//testing/gtest", | |
40 ] | |
41 } | |
OLD | NEW |