OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 import("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("ipc") { | 8 component("ipc") { |
9 sources = [ | 9 sources = [ |
10 "attachment_broker.cc", | 10 "attachment_broker.cc", |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 } | 137 } |
138 | 138 |
139 # This is provided as a separate target so other targets can provide param | 139 # This is provided as a separate target so other targets can provide param |
140 # traits implementations without necessarily linking to all of IPC. | 140 # traits implementations without necessarily linking to all of IPC. |
141 source_set("param_traits") { | 141 source_set("param_traits") { |
142 public = [ | 142 public = [ |
143 "ipc_param_traits.h", | 143 "ipc_param_traits.h", |
144 ] | 144 ] |
145 } | 145 } |
146 | 146 |
147 group("ipc_tests_run") { | |
148 testonly = true | |
149 deps = [ | |
150 ":ipc_tests", | |
151 ] | |
152 } | |
153 | |
154 test("ipc_tests") { | 147 test("ipc_tests") { |
155 sources = [ | 148 sources = [ |
156 "attachment_broker_mac_unittest.cc", | 149 "attachment_broker_mac_unittest.cc", |
157 "attachment_broker_privileged_mac_unittest.cc", | 150 "attachment_broker_privileged_mac_unittest.cc", |
158 "attachment_broker_privileged_win_unittest.cc", | 151 "attachment_broker_privileged_win_unittest.cc", |
159 "ipc_channel_posix_unittest.cc", | 152 "ipc_channel_posix_unittest.cc", |
160 "ipc_channel_proxy_unittest.cc", | 153 "ipc_channel_proxy_unittest.cc", |
161 "ipc_channel_reader_unittest.cc", | 154 "ipc_channel_reader_unittest.cc", |
162 "ipc_channel_unittest.cc", | 155 "ipc_channel_unittest.cc", |
163 "ipc_fuzzing_tests.cc", | 156 "ipc_fuzzing_tests.cc", |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 ] | 235 ] |
243 public_deps = [ | 236 public_deps = [ |
244 ":ipc", | 237 ":ipc", |
245 ] | 238 ] |
246 deps = [ | 239 deps = [ |
247 "//base", | 240 "//base", |
248 "//base/test:test_support", | 241 "//base/test:test_support", |
249 "//testing/gtest", | 242 "//testing/gtest", |
250 ] | 243 ] |
251 } | 244 } |
OLD | NEW |