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

Unified Diff: ipc/BUILD.gn

Issue 877553008: Land prep work to enable NaCl in the Linux x64 GN builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: yet more feedback 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « extensions/shell/BUILD.gn ('k') | mojo/nacl/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/BUILD.gn
diff --git a/ipc/BUILD.gn b/ipc/BUILD.gn
index 0ff1279b30492ce4ac5eb6047c5ddc802163809f..439d461a5ab106412bede8de6be9ebb21aa5e069 100644
--- a/ipc/BUILD.gn
+++ b/ipc/BUILD.gn
@@ -67,7 +67,13 @@ component("ipc") {
"unix_domain_socket_util.h",
]
- if (!is_nacl) {
+ if (is_nacl) {
+ sources -= [
+ "ipc_channel.cc",
+ "ipc_channel_posix.cc",
+ "unix_domain_socket_util.cc",
+ ]
+ } else {
sources -= [
"ipc_channel_nacl.cc",
"ipc_channel_nacl.h",
@@ -88,7 +94,7 @@ component("ipc") {
]
}
-# TODO(dpranke): crbug.com/360936. Get this to build and run on Android.
+# TODO(GYP): crbug.com/360936. Get this to build and run on Android.
if (!is_android) {
test("ipc_tests") {
sources = [
@@ -149,7 +155,6 @@ if (!is_android) {
# deps += "//base/allocator"
# }
#}
-
deps = [
":ipc",
":test_support",
« no previous file with comments | « extensions/shell/BUILD.gn ('k') | mojo/nacl/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698