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