Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Side by Side Diff: tools/gn/secondary/ipc/BUILD.gn

Issue 138273007: Convert GN single-item list concat to use lists. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/gn/secondary/crypto/BUILD.gn ('k') | tools/gn/secondary/net/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « tools/gn/secondary/crypto/BUILD.gn ('k') | tools/gn/secondary/net/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698