summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authormcgrathr <mcgrathr@chromium.org>2015-10-23 13:54:15 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-23 20:55:01 +0000
commitefac61aadc057f6e98ba628e68e5ad1d5c76053e (patch)
tree70f0bd61bc1f8e4a53354b607b35c3a85e0fff77 /components
parentd29c68068138dde6f35da3fb7fc6adad40e97638 (diff)
downloadchromium_src-efac61aadc057f6e98ba628e68e5ad1d5c76053e.zip
chromium_src-efac61aadc057f6e98ba628e68e5ad1d5c76053e.tar.gz
chromium_src-efac61aadc057f6e98ba628e68e5ad1d5c76053e.tar.bz2
GN: Fix components/nacl build for non-Linux
The NaCl code compiles fine on Mac now. BUG= 545236 R=bradnelson@chromium.org, dpranke@chromium.org Review URL: https://codereview.chromium.org/1418193002 Cr-Commit-Position: refs/heads/master@{#355876}
Diffstat (limited to 'components')
-rw-r--r--components/nacl/BUILD.gn8
1 files changed, 5 insertions, 3 deletions
diff --git a/components/nacl/BUILD.gn b/components/nacl/BUILD.gn
index ceb79717..2a238a3 100644
--- a/components/nacl/BUILD.gn
+++ b/components/nacl/BUILD.gn
@@ -86,7 +86,6 @@ if (enable_nacl) {
deps = [
":nacl_common",
":nacl_switches",
- ":nacl_helper",
"//base",
"//base/third_party/dynamic_annotations",
"//content/public/browser",
@@ -97,7 +96,6 @@ if (enable_nacl) {
"//ppapi/host",
"//ppapi/proxy:ipc",
"//ppapi/shared_impl",
- "//sandbox/linux:sandbox_services",
]
if (is_linux) {
@@ -106,7 +104,11 @@ if (enable_nacl) {
"zygote/nacl_fork_delegate_linux.h",
]
- deps += [ "//sandbox/linux:suid_sandbox_client" ]
+ deps += [
+ ":nacl_helper",
+ "//sandbox/linux:sandbox_services",
+ "//sandbox/linux:suid_sandbox_client",
+ ]
}
}