diff options
author | mkosiba@chromium.org <mkosiba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-28 14:20:20 +0000 |
---|---|---|
committer | mkosiba@chromium.org <mkosiba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-28 14:20:20 +0000 |
commit | b62753a029d1c11aa5f94ee278c6291ce2a544af (patch) | |
tree | 635a3088b6a3559f6aa0c001b2e02e9888f43d9e /gpu/gpu.gyp | |
parent | 55ddb3c59070eb300700d5a2aa56bd2d8f766cdf (diff) | |
download | chromium_src-b62753a029d1c11aa5f94ee278c6291ce2a544af.zip chromium_src-b62753a029d1c11aa5f94ee278c6291ce2a544af.tar.gz chromium_src-b62753a029d1c11aa5f94ee278c6291ce2a544af.tar.bz2 |
Fix gyp --checked violations.
This removes 'or' and 'and' usage that is outside of quoted strings.
TBR=dmichael@chromium.org
BUG=
Review URL: https://chromiumcodereview.appspot.com/10886009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@153660 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/gpu.gyp')
-rw-r--r-- | gpu/gpu.gyp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gpu/gpu.gyp b/gpu/gpu.gyp index 712f7aa..0b805c1 100644 --- a/gpu/gpu.gyp +++ b/gpu/gpu.gyp @@ -410,7 +410,7 @@ }, ], }], - ['disable_nacl!=1' and 'OS=="win"', { + ['disable_nacl!=1 and OS=="win"', { 'targets': [ { 'target_name': 'gpu_ipc_win64', |