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

Side by Side Diff: ipc/BUILD.gn

Issue 400233002: GN Windows build fixes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ipc Created 6 years, 5 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 | « components/storage_monitor/BUILD.gn ('k') | media/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 sources = [ 6 sources = [
7 "file_descriptor_set_posix.cc", 7 "file_descriptor_set_posix.cc",
8 "file_descriptor_set_posix.h", 8 "file_descriptor_set_posix.h",
9 "ipc_channel.cc", 9 "ipc_channel.cc",
10 "ipc_channel.h", 10 "ipc_channel.h",
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 61
62 if (!is_nacl) { 62 if (!is_nacl) {
63 sources -= [ 63 sources -= [
64 "ipc_channel_nacl.cc", 64 "ipc_channel_nacl.cc",
65 "ipc_channel_nacl.h", 65 "ipc_channel_nacl.h",
66 ] 66 ]
67 } 67 }
68 68
69 if (is_win || is_ios) { 69 if (is_win || is_ios) {
70 sources -= [ 70 sources -= [
71 "unix_domain_socket_acceptor.cc",
72 "unix_domain_socket_util.cc", 71 "unix_domain_socket_util.cc",
73 ] 72 ]
74 } 73 }
75 74
76 defines = [ "IPC_IMPLEMENTATION" ] 75 defines = [ "IPC_IMPLEMENTATION" ]
77 76
78 deps = [ 77 deps = [
79 "//base", 78 "//base",
80 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect. 79 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect.
81 "//base/third_party/dynamic_annotations", 80 "//base/third_party/dynamic_annotations",
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 "ipc_test_sink.cc", 166 "ipc_test_sink.cc",
168 "ipc_test_sink.h", 167 "ipc_test_sink.h",
169 ] 168 ]
170 deps = [ 169 deps = [
171 ":ipc", 170 ":ipc",
172 "//base", 171 "//base",
173 "//testing/gtest", 172 "//testing/gtest",
174 ] 173 ]
175 } 174 }
176 175
OLDNEW
« no previous file with comments | « components/storage_monitor/BUILD.gn ('k') | media/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698