diff options
author | dpranke <dpranke@chromium.org> | 2015-04-29 16:00:00 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-29 23:00:33 +0000 |
commit | 1feead57e3a71bbdad4775899b19d0b173ffc7e7 (patch) | |
tree | 2ad7b4440b935b26bca07c86299249701ab62ea9 /build | |
parent | 45793258429d8e260a6e025b2e4c8ff4a1bd53f5 (diff) | |
download | chromium_src-1feead57e3a71bbdad4775899b19d0b173ffc7e7.zip chromium_src-1feead57e3a71bbdad4775899b19d0b173ffc7e7.tar.gz chromium_src-1feead57e3a71bbdad4775899b19d0b173ffc7e7.tar.bz2 |
Disable Nacl on Linux GN component builds.
This is a temporary workaround until the other fixes for bug
482415 can land. This shouldn't affect any of the bots, as
the only component GN Linux build we have is also a debug build,
so NaCl was already disabled.
TBR=brettw@chromium.org, bbudge@chromium.org
BUG=482415
Review URL: https://codereview.chromium.org/1104303003
Cr-Commit-Position: refs/heads/master@{#327604}
Diffstat (limited to 'build')
-rw-r--r-- | build/config/features.gni | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/config/features.gni b/build/config/features.gni index dd7b081..3f63773 100644 --- a/build/config/features.gni +++ b/build/config/features.gni @@ -32,8 +32,8 @@ declare_args() { # the commented out logic. # Eventually we want this to be: # enable_nacl = !is_ios && !is_android - enable_nacl = - (is_linux && !is_chromeos && !is_debug && current_cpu == "x64") || is_nacl + enable_nacl = (is_linux && !is_chromeos && !is_component_build && + current_cpu == "x64") || is_nacl enable_nacl_untrusted = enable_nacl enable_pnacl = enable_nacl_untrusted |