Chromium Code Reviews| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 component("ipc") { | 7 component("ipc") { |
| 8 sources = [ | 8 sources = [ |
| 9 "attachment_broker.cc", | 9 "attachment_broker.cc", |
| 10 "attachment_broker.h", | 10 "attachment_broker.h", |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 79 "param_traits_read_macros.h", | 79 "param_traits_read_macros.h", |
| 80 "param_traits_write_macros.h", | 80 "param_traits_write_macros.h", |
| 81 "struct_constructor_macros.h", | 81 "struct_constructor_macros.h", |
| 82 "struct_destructor_macros.h", | 82 "struct_destructor_macros.h", |
| 83 "unix_domain_socket_util.cc", | 83 "unix_domain_socket_util.cc", |
| 84 "unix_domain_socket_util.h", | 84 "unix_domain_socket_util.h", |
| 85 ] | 85 ] |
| 86 | 86 |
| 87 if (is_nacl) { | 87 if (is_nacl) { |
| 88 sources -= [ | 88 sources -= [ |
| 89 "ipc_channel.cc", | |
| 90 "ipc_channel_posix.cc", | 89 "ipc_channel_posix.cc", |
|
Tom Sepez
2015/07/30 00:35:47
Did you mean to do this?
erikchen
2015/07/30 01:38:19
Yes, but it's no longer relevant now that I moved
| |
| 91 "unix_domain_socket_util.cc", | 90 "unix_domain_socket_util.cc", |
| 92 ] | 91 ] |
| 93 } else { | 92 } else { |
| 94 sources -= [ | 93 sources -= [ |
| 95 "ipc_channel_nacl.cc", | 94 "ipc_channel_nacl.cc", |
| 96 "ipc_channel_nacl.h", | 95 "ipc_channel_nacl.h", |
| 97 ] | 96 ] |
| 98 } | 97 } |
| 99 | 98 |
| 100 if (is_win || is_ios) { | 99 if (is_win || is_ios) { |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 211 "ipc_test_sink.cc", | 210 "ipc_test_sink.cc", |
| 212 "ipc_test_sink.h", | 211 "ipc_test_sink.h", |
| 213 ] | 212 ] |
| 214 deps = [ | 213 deps = [ |
| 215 ":ipc", | 214 ":ipc", |
| 216 "//base", | 215 "//base", |
| 217 "//base/test:test_support", | 216 "//base/test:test_support", |
| 218 "//testing/gtest", | 217 "//testing/gtest", |
| 219 ] | 218 ] |
| 220 } | 219 } |
| OLD | NEW |