| 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 component("ipc") { | 5 component("ipc") { |
| 6 external = true | 6 external = true |
| 7 sources = [ | 7 sources = [ |
| 8 "file_descriptor_set_posix.cc", | 8 "file_descriptor_set_posix.cc", |
| 9 "file_descriptor_set_posix.h", | 9 "file_descriptor_set_posix.h", |
| 10 "ipc_channel.cc", | 10 "ipc_channel.cc", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "ipc_sync_channel_unittest.cc", | 92 "ipc_sync_channel_unittest.cc", |
| 93 "ipc_sync_message_unittest.cc", | 93 "ipc_sync_message_unittest.cc", |
| 94 "ipc_sync_message_unittest.h", | 94 "ipc_sync_message_unittest.h", |
| 95 "ipc_test_base.cc", | 95 "ipc_test_base.cc", |
| 96 "ipc_test_base.h", | 96 "ipc_test_base.h", |
| 97 "sync_socket_unittest.cc", | 97 "sync_socket_unittest.cc", |
| 98 "unix_domain_socket_util_unittest.cc", | 98 "unix_domain_socket_util_unittest.cc", |
| 99 ] | 99 ] |
| 100 | 100 |
| 101 if (is_win || is_ios) { | 101 if (is_win || is_ios) { |
| 102 sources -= "unix_domain_socket_util_unittest.cc" | 102 sources -= [ "unix_domain_socket_util_unittest.cc" ] |
| 103 } | 103 } |
| 104 #if (is_android && gtest_target_type == "shared_library") { | 104 #if (is_android && gtest_target_type == "shared_library") { |
| 105 # deps += "/testing/android/native_test.gyp:native_testNative_code" | 105 # deps += "/testing/android/native_test.gyp:native_testNative_code" |
| 106 #} | 106 #} |
| 107 #if (is_posix && !is_mac && !is_android) { | 107 #if (is_posix && !is_mac && !is_android) { |
| 108 # if (linux_use_tcmalloc) { | 108 # if (linux_use_tcmalloc) { |
| 109 # deps += "/base/allocator" | 109 # deps += "/base/allocator" |
| 110 # } | 110 # } |
| 111 #} | 111 #} |
| 112 | 112 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 "ipc_test_sink.cc", | 157 "ipc_test_sink.cc", |
| 158 "ipc_test_sink.h", | 158 "ipc_test_sink.h", |
| 159 ] | 159 ] |
| 160 deps = [ | 160 deps = [ |
| 161 ":ipc", | 161 ":ipc", |
| 162 "//base", | 162 "//base", |
| 163 "//testing/gtest", | 163 "//testing/gtest", |
| 164 ] | 164 ] |
| 165 } | 165 } |
| 166 | 166 |
| OLD | NEW |