Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: third_party/mesa/mesa.gyp

Issue 2975016: Build OSMesa as a loadable_module so chrome does not link against it.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/mesa/mesa.gyp
===================================================================
--- third_party/mesa/mesa.gyp (revision 52360)
+++ third_party/mesa/mesa.gyp (working copy)
@@ -5,6 +5,15 @@
{
'variables': {
},
+ 'target_defaults': {
+ 'conditions': [
+ ['OS=="linux"', {
+ 'cflags': [
+ '-fPIC',
+ ],
+ }],
+ ],
+ },
'targets': [
{
'target_name': 'mesa',
@@ -424,7 +433,8 @@
# replace it with a slow software renderer.
{
'target_name': 'osmesa',
- 'type': 'shared_library',
+ 'type': 'loadable_module',
+ 'mac_bundle': 0,
'dependencies': [
'mesa',
],
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698