diff options
author | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-06 04:38:55 +0000 |
---|---|---|
committer | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-06 04:38:55 +0000 |
commit | be4f188066196d7bd0a4a7a62254bb603e566f74 (patch) | |
tree | a493671ea3e09fec3d20c86a0e452d509e7c9954 /chrome/chrome_renderer.gypi | |
parent | ee3cd175f8592b2b1f2ccd14b071d56ca733a5c6 (diff) | |
download | chromium_src-be4f188066196d7bd0a4a7a62254bb603e566f74.zip chromium_src-be4f188066196d7bd0a4a7a62254bb603e566f74.tar.gz chromium_src-be4f188066196d7bd0a4a7a62254bb603e566f74.tar.bz2 |
linux: implement gpu plugin
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=35509
Review URL: http://codereview.chromium.org/500132
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35612 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome_renderer.gypi')
-rwxr-xr-x | chrome/chrome_renderer.gypi | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/chrome/chrome_renderer.gypi b/chrome/chrome_renderer.gypi index d9cc809..40a066a 100755 --- a/chrome/chrome_renderer.gypi +++ b/chrome/chrome_renderer.gypi @@ -165,10 +165,6 @@ 'include_dirs': [ 'third_party/wtl/include', ], - 'sources': [ - 'renderer/command_buffer_proxy.cc', - 'renderer/command_buffer_proxy.h', - ], 'conditions': [ ['win_use_allocator_shim==1', { 'dependencies': [ @@ -180,6 +176,12 @@ }], ], }], + ['OS=="win" or (OS=="linux" and target_arch!="arm")', { + 'sources': [ + 'renderer/command_buffer_proxy.cc', + 'renderer/command_buffer_proxy.h', + ], + }], ], }, ], |