summaryrefslogtreecommitdiffstats
path: root/ppapi/ppapi.gyp
diff options
context:
space:
mode:
authornoelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-21 02:17:29 +0000
committernoelallen@google.com <noelallen@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-21 02:17:29 +0000
commit37aee1c3698e50522c05d3729181c0de73063388 (patch)
tree152c9a1f72f223cf414b8ecae3c50974fd98a00b /ppapi/ppapi.gyp
parent74c8613e564a373c8774be05e6039d0447641c4f (diff)
downloadchromium_src-37aee1c3698e50522c05d3729181c0de73063388.zip
chromium_src-37aee1c3698e50522c05d3729181c0de73063388.tar.gz
chromium_src-37aee1c3698e50522c05d3729181c0de73063388.tar.bz2
ppapi_egl target is currently unused as verified by using:
grep --include="*.gyp*" -nr -F "ppapi_egl" . However this library causes NaCl to require third_party/mesa which relative to NaCl is large. This CL moves the definition of this static library from ppapi to the lib/gl directory under ppapi so that PPAPI users are not forced to DEPS in mesa. Review URL: http://codereview.chromium.org/6342012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72090 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/ppapi.gyp')
-rw-r--r--ppapi/ppapi.gyp40
1 files changed, 0 insertions, 40 deletions
diff --git a/ppapi/ppapi.gyp b/ppapi/ppapi.gyp
index 90bd2d1..ae5b4ed 100644
--- a/ppapi/ppapi.gyp
+++ b/ppapi/ppapi.gyp
@@ -3,9 +3,6 @@
# found in the LICENSE file.
{
- 'includes': [
- '../third_party/mesa/mesa.gypi',
- ],
'variables': {
'chromium_code': 1, # Use higher warning level.
},
@@ -266,43 +263,6 @@
],
},
{
- 'target_name': 'ppapi_egl',
- 'type': 'static_library',
- 'dependencies': [
- 'ppapi_c',
- ],
- 'include_dirs': [
- 'lib/gl/include',
- ],
- 'defines': [
- # Do not export internal Mesa funcations. Exporting them is not
- # required because we are compiling both - API dispatcher and driver
- # into a single library.
- 'PUBLIC=',
- # Define a new PPAPI platform.
- '_EGL_PLATFORM_PPAPI=_EGL_NUM_PLATFORMS',
- '_EGL_NATIVE_PLATFORM=_EGL_PLATFORM_PPAPI',
- ],
- 'conditions': [
- ['OS=="win"', {
- 'defines': [
- '_EGL_OS_WINDOWS',
- ],
- }],
- ['OS=="mac"', {
- # TODO(alokp): Make this compile on mac.
- 'suppress_wildcard': 1,
- }],
- ],
- 'sources': [
- # Mesa EGL API dispatcher sources.
- '<@(mesa_egl_sources)',
- # PPAPI EGL driver sources.
- 'lib/gl/egl/egldriver.c',
- 'lib/gl/egl/egldriver_ppapi.c',
- ],
- },
- {
'target_name': 'ppapi_gles2',
'type': 'static_library',
'dependencies': [