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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
Index: ipc/BUILD.gn
diff --git a/ipc/BUILD.gn b/ipc/BUILD.gn
index a4405936cb64f47bd0d3ee4bc94f0d755e3456a4..6c2acf65a6134e03a7698ba237167b32fceed75c 100644
--- a/ipc/BUILD.gn
+++ b/ipc/BUILD.gn
@@ -75,7 +75,11 @@ component("ipc") {
}
if (is_win || is_ios) {
- sources -= [ "unix_domain_socket_util.cc" ]
+ sources -= [
+ "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
+ "ipc_platform_file_attachment.h",
+ "unix_domain_socket_util.cc",
+ ]
}
defines = [ "IPC_IMPLEMENTATION" ]

Powered by Google App Engine
This is Rietveld 408576698