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

Unified Diff: ipc/BUILD.gn

Issue 2500263004: Remove ipc/unix_domain_socket_util.* (Closed)
Patch Set: Created 4 years, 1 month 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 cd1f365befe6b22c254176f8860ae2c70572d7a6..ccc10633b873171104e9b6dc217192e43f7c68e8 100644
--- a/ipc/BUILD.gn
+++ b/ipc/BUILD.gn
@@ -86,15 +86,10 @@ component("ipc") {
"param_traits_write_macros.h",
"struct_constructor_macros.h",
"struct_destructor_macros.h",
- "unix_domain_socket_util.cc",
- "unix_domain_socket_util.h",
]
if (is_nacl && !is_nacl_nonsfi) {
- sources -= [
- "ipc_channel.cc",
- "unix_domain_socket_util.cc",
- ]
+ sources -= [ "ipc_channel.cc" ]
} else {
sources -= [
"ipc_channel_nacl.cc",
@@ -102,10 +97,6 @@ component("ipc") {
]
}
- if (is_win || is_nacl_nonsfi) {
- sources -= [ "unix_domain_socket_util.cc" ]
- }
-
defines = [ "IPC_IMPLEMENTATION" ]
public_deps = [
@@ -185,10 +176,6 @@ if (!is_ios) {
"sync_socket_unittest.cc",
]
- if (!is_win && !is_ios) {
- sources += [ "unix_domain_socket_util_unittest.cc" ]
- }
-
if (!is_ios) {
sources += [ "ipc_send_fds_test.cc" ]
}

Powered by Google App Engine
This is Rietveld 408576698