Chromium Code Reviews| Index: ppapi/ppapi.gyp |
| =================================================================== |
| --- ppapi/ppapi.gyp (revision 71928) |
| +++ ppapi/ppapi.gyp (working copy) |
| @@ -4,7 +4,9 @@ |
| { |
| 'includes': [ |
| - '../third_party/mesa/mesa.gypi', |
| +# This include forces PPAPI consumers to DEPS in third_party/mesa |
|
bradn
2011/01/21 01:38:02
Why not drop this completely and put this comment
|
| +# which is ~10k files and 2K dirs even for projects that do not use it. |
| +# '../third_party/mesa/mesa.gypi', |
| ], |
| 'variables': { |
| 'chromium_code': 1, # Use higher warning level. |
| @@ -266,43 +268,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': [ |