OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 source_set("domain_socket") { | 5 source_set("domain_socket") { |
6 sources = [ | 6 sources = [ |
7 "completion_callback.h", | 7 "completion_callback.h", |
8 "net_errors.cc", | 8 "net_errors.cc", |
9 "net_errors.h", | 9 "net_errors.h", |
10 "net_error_list.h", | 10 "net_error_list.h", |
(...skipping 21 matching lines...) Expand all Loading... |
32 "unix_domain_server_socket_posix_unittest.cc", | 32 "unix_domain_server_socket_posix_unittest.cc", |
33 ] | 33 ] |
34 | 34 |
35 deps = [ | 35 deps = [ |
36 ":domain_socket", | 36 ":domain_socket", |
37 "//base", | 37 "//base", |
38 "//base/test:test_support", | 38 "//base/test:test_support", |
39 "//testing/gtest", | 39 "//testing/gtest", |
40 ] | 40 ] |
41 } | 41 } |
OLD | NEW |