diff options
author | zmo@google.com <zmo@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-20 18:11:13 +0000 |
---|---|---|
committer | zmo@google.com <zmo@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-20 18:11:13 +0000 |
commit | e72fd5a245763aef78abcfc745895d9ff559c0ca (patch) | |
tree | edd8b102bc343acf4233b2af4063eb9cfa376ec0 /chrome/chrome_exe.gypi | |
parent | 6b92a571dba42c8a26e7ab6cb0924bdf995ebc76 (diff) | |
download | chromium_src-e72fd5a245763aef78abcfc745895d9ff559c0ca.zip chromium_src-e72fd5a245763aef78abcfc745895d9ff559c0ca.tar.gz chromium_src-e72fd5a245763aef78abcfc745895d9ff559c0ca.tar.bz2 |
Fix the mesa gl issue in chrome.
BUG=58343 TEST=none
Review URL: http://codereview.chromium.org/3860004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63236 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome_exe.gypi')
-rw-r--r-- | chrome/chrome_exe.gypi | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/chrome/chrome_exe.gypi b/chrome/chrome_exe.gypi index 00be5df..ebea4b5 100644 --- a/chrome/chrome_exe.gypi +++ b/chrome/chrome_exe.gypi @@ -461,6 +461,27 @@ }, ], 'conditions': [ + # http://code.google.com/p/chromium/issues/detail?id=18337 + ['target_arch!="x64" and target_arch!="arm"', { + 'targets': [ + { + 'target_name': 'chrome_mesa', + 'type': 'none', + 'dependencies': [ + 'chrome', + '../third_party/mesa/mesa.gyp:osmesa', + ], + 'conditions': [ + ['OS=="mac"', { + 'copies': [{ + 'destination': '<(PRODUCT_DIR)/<(branding).app/Contents/Versions/<(version_full)/<(branding) Helper.app/Contents/MacOS/', + 'files': ['<(PRODUCT_DIR)/osmesa.so'], + }], + }], + ], + }, + ], + }], ['OS=="win"', { 'targets': [ { |