diff options
author | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-05 03:07:07 +0000 |
---|---|---|
committer | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-05 03:07:07 +0000 |
commit | 4049046a39cb364577a1ac8a2aac47a86afc5b7b (patch) | |
tree | e670e88f432ee925b7b89994eff756052739af60 /chrome/chrome.gyp | |
parent | 07a174f4c159a347c6d7e10a5f3da2d5966c92d1 (diff) | |
download | chromium_src-4049046a39cb364577a1ac8a2aac47a86afc5b7b.zip chromium_src-4049046a39cb364577a1ac8a2aac47a86afc5b7b.tar.gz chromium_src-4049046a39cb364577a1ac8a2aac47a86afc5b7b.tar.bz2 |
linux: implement gpu plugin
Review URL: http://codereview.chromium.org/500132
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35509 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome.gyp')
-rwxr-xr-x | chrome/chrome.gyp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp index d1ab06c..ffd1ed9 100755 --- a/chrome/chrome.gyp +++ b/chrome/chrome.gyp @@ -450,9 +450,6 @@ # end up using this module as well. 'conditions': [ ['OS=="win"', { - 'dependencies': [ - '../gpu/gpu.gyp:command_buffer_service', - ], 'defines': [ '__STD_C', '_CRT_SECURE_NO_DEPRECATE', @@ -461,6 +458,11 @@ 'include_dirs': [ 'third_party/wtl/include', ], + }], + ['OS=="win" or (OS=="linux" and target_arch!="arm")', { + 'dependencies': [ + '../gpu/gpu.gyp:command_buffer_service', + ], 'sources': [ 'plugin/command_buffer_stub.cc', 'plugin/command_buffer_stub.h', |