| 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 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 7 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 8 | 8 |
| 9 assert(!is_ios) | |
| 10 | |
| 11 component("ipc") { | 9 component("ipc") { |
| 12 sources = [ | 10 sources = [ |
| 13 "attachment_broker.cc", | 11 "attachment_broker.cc", |
| 14 "attachment_broker.h", | 12 "attachment_broker.h", |
| 15 "attachment_broker_messages.h", | 13 "attachment_broker_messages.h", |
| 16 "attachment_broker_privileged.cc", | 14 "attachment_broker_privileged.cc", |
| 17 "attachment_broker_privileged.h", | 15 "attachment_broker_privileged.h", |
| 18 "attachment_broker_privileged_mac.cc", | 16 "attachment_broker_privileged_mac.cc", |
| 19 "attachment_broker_privileged_mac.h", | 17 "attachment_broker_privileged_mac.h", |
| 20 "attachment_broker_privileged_win.cc", | 18 "attachment_broker_privileged_win.cc", |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 "ipc_channel_posix.cc", | 112 "ipc_channel_posix.cc", |
| 115 "unix_domain_socket_util.cc", | 113 "unix_domain_socket_util.cc", |
| 116 ] | 114 ] |
| 117 } else { | 115 } else { |
| 118 sources -= [ | 116 sources -= [ |
| 119 "ipc_channel_nacl.cc", | 117 "ipc_channel_nacl.cc", |
| 120 "ipc_channel_nacl.h", | 118 "ipc_channel_nacl.h", |
| 121 ] | 119 ] |
| 122 } | 120 } |
| 123 | 121 |
| 124 if (is_win || is_ios || is_nacl_nonsfi) { | 122 if (is_win || is_nacl_nonsfi) { |
| 125 sources -= [ "unix_domain_socket_util.cc" ] | 123 sources -= [ "unix_domain_socket_util.cc" ] |
| 126 } | 124 } |
| 127 | 125 |
| 128 defines = [ "IPC_IMPLEMENTATION" ] | 126 defines = [ "IPC_IMPLEMENTATION" ] |
| 129 | 127 |
| 130 public_deps = [ | 128 public_deps = [ |
| 131 ":param_traits", | 129 ":param_traits", |
| 132 ] | 130 ] |
| 133 deps = [ | 131 deps = [ |
| 134 "//base", | 132 "//base", |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 ] | 249 ] |
| 252 public_deps = [ | 250 public_deps = [ |
| 253 ":ipc", | 251 ":ipc", |
| 254 ] | 252 ] |
| 255 deps = [ | 253 deps = [ |
| 256 "//base", | 254 "//base", |
| 257 "//base/test:test_support", | 255 "//base/test:test_support", |
| 258 "//testing/gtest", | 256 "//testing/gtest", |
| 259 ] | 257 ] |
| 260 } | 258 } |
| OLD | NEW |