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

Side by Side Diff: ipc/BUILD.gn

Issue 883093003: IPC::Message Refactoring: Move POSIX specific bits to PlatformFileAttachment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 component("ipc") { 7 component("ipc") {
8 sources = [ 8 sources = [
9 "ipc_channel.cc", 9 "ipc_channel.cc",
10 "ipc_channel.h", 10 "ipc_channel.h",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 ] 68 ]
69 69
70 if (!is_nacl) { 70 if (!is_nacl) {
71 sources -= [ 71 sources -= [
72 "ipc_channel_nacl.cc", 72 "ipc_channel_nacl.cc",
73 "ipc_channel_nacl.h", 73 "ipc_channel_nacl.h",
74 ] 74 ]
75 } 75 }
76 76
77 if (is_win || is_ios) { 77 if (is_win || is_ios) {
78 sources -= [ "unix_domain_socket_util.cc" ] 78 sources -= [
79 "ipc_platform_file_attachment.cc",
agl 2015/01/30 19:34:02 Why aren't these built on iOS. Is iOS not POSIX?
Hajime Morrita 2015/01/30 21:01:29 Uh, dunno. I just did piggyback what we already ha
80 "ipc_platform_file_attachment.h",
81 "unix_domain_socket_util.cc",
82 ]
79 } 83 }
80 84
81 defines = [ "IPC_IMPLEMENTATION" ] 85 defines = [ "IPC_IMPLEMENTATION" ]
82 86
83 deps = [ 87 deps = [
84 "//base", 88 "//base",
85 89
86 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect. 90 # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect.
87 "//base/third_party/dynamic_annotations", 91 "//base/third_party/dynamic_annotations",
88 ] 92 ]
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 "ipc_test_channel_listener.h", 181 "ipc_test_channel_listener.h",
178 "ipc_test_sink.cc", 182 "ipc_test_sink.cc",
179 "ipc_test_sink.h", 183 "ipc_test_sink.h",
180 ] 184 ]
181 deps = [ 185 deps = [
182 ":ipc", 186 ":ipc",
183 "//base", 187 "//base",
184 "//testing/gtest", 188 "//testing/gtest",
185 ] 189 ]
186 } 190 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698