diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-26 20:38:45 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-26 20:38:45 +0000 |
commit | bce6e4be0debf38250ca05093ac423ffc45d3024 (patch) | |
tree | 22b75bb3975c0a7a66b62f13d2aa1769e4abe2a0 /ppapi/ppapi_gl.gypi | |
parent | 1ae0eddfb57cbf1f863c4f0929cfac6cb3a171b2 (diff) | |
download | chromium_src-bce6e4be0debf38250ca05093ac423ffc45d3024.zip chromium_src-bce6e4be0debf38250ca05093ac423ffc45d3024.tar.gz chromium_src-bce6e4be0debf38250ca05093ac423ffc45d3024.tar.bz2 |
Removing ppapi_egl target
This target is making the Mesa upgrade (7 -> 9) difficult. It turns
out that this code isn't used in the first place
BUG=238755
R=binji@chromium.org, dmichael@chromium.org, dpranke@chromium.org, kbr@chromium.org
Review URL: https://codereview.chromium.org/16927004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@208776 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/ppapi_gl.gypi')
-rw-r--r-- | ppapi/ppapi_gl.gypi | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/ppapi/ppapi_gl.gypi b/ppapi/ppapi_gl.gypi index 6830e72..cdbc40b 100644 --- a/ppapi/ppapi_gl.gypi +++ b/ppapi/ppapi_gl.gypi @@ -3,51 +3,8 @@ # found in the LICENSE file. { - 'includes': [ - '../third_party/mesa/mesa.gypi', - ], 'targets': [ { - 'target_name': 'ppapi_egl', - 'type': 'static_library', - 'dependencies': [ - '<(DEPTH)/ppapi/ppapi.gyp: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"', { - 'suppress_wildcard': 1, - 'xcode_settings': { - # Suppress warnings in third party mesa_egl code. - 'WARNING_CFLAGS': ['-Wno-sign-compare'] - } - }], - ], - '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': [ |