| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 deps = [ | 149 deps = [ |
| 150 ":ipc_tests", | 150 ":ipc_tests", |
| 151 ] | 151 ] |
| 152 } | 152 } |
| 153 | 153 |
| 154 test("ipc_tests") { | 154 test("ipc_tests") { |
| 155 sources = [ | 155 sources = [ |
| 156 "attachment_broker_mac_unittest.cc", | 156 "attachment_broker_mac_unittest.cc", |
| 157 "attachment_broker_privileged_mac_unittest.cc", | 157 "attachment_broker_privileged_mac_unittest.cc", |
| 158 "attachment_broker_privileged_win_unittest.cc", | 158 "attachment_broker_privileged_win_unittest.cc", |
| 159 "attachment_broker_unprivileged_win_unittest.cc", | |
| 160 "ipc_channel_posix_unittest.cc", | 159 "ipc_channel_posix_unittest.cc", |
| 161 "ipc_channel_proxy_unittest.cc", | 160 "ipc_channel_proxy_unittest.cc", |
| 162 "ipc_channel_reader_unittest.cc", | 161 "ipc_channel_reader_unittest.cc", |
| 163 "ipc_channel_unittest.cc", | 162 "ipc_channel_unittest.cc", |
| 164 "ipc_fuzzing_tests.cc", | 163 "ipc_fuzzing_tests.cc", |
| 165 "ipc_message_attachment_set_posix_unittest.cc", | 164 "ipc_message_attachment_set_posix_unittest.cc", |
| 166 "ipc_message_unittest.cc", | 165 "ipc_message_unittest.cc", |
| 167 "ipc_message_utils_unittest.cc", | 166 "ipc_message_utils_unittest.cc", |
| 168 "ipc_send_fds_test.cc", | 167 "ipc_send_fds_test.cc", |
| 169 "ipc_sync_channel_unittest.cc", | 168 "ipc_sync_channel_unittest.cc", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 ] | 250 ] |
| 252 public_deps = [ | 251 public_deps = [ |
| 253 ":ipc", | 252 ":ipc", |
| 254 ] | 253 ] |
| 255 deps = [ | 254 deps = [ |
| 256 "//base", | 255 "//base", |
| 257 "//base/test:test_support", | 256 "//base/test:test_support", |
| 258 "//testing/gtest", | 257 "//testing/gtest", |
| 259 ] | 258 ] |
| 260 } | 259 } |
| OLD | NEW |