diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-01 17:53:39 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-01 17:53:39 +0000 |
commit | 31176b0b8772c2fa84e006c84f8717b9d7633c3d (patch) | |
tree | 24c0b8d2bbf43911bb40537b69be1fe6a3f89e71 /ppapi | |
parent | 064cd05cdf90ed81df7a3e09ef44c71b1641a3ec (diff) | |
download | chromium_src-31176b0b8772c2fa84e006c84f8717b9d7633c3d.zip chromium_src-31176b0b8772c2fa84e006c84f8717b9d7633c3d.tar.gz chromium_src-31176b0b8772c2fa84e006c84f8717b9d7633c3d.tar.bz2 |
Deleted gl.gyp that had duplicate ppapi_egl target.
Review URL: http://codereview.chromium.org/7283013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91320 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r-- | ppapi/lib/gl/gl.gyp | 55 | ||||
-rw-r--r-- | ppapi/ppapi_gl.gypi | 3 | ||||
-rw-r--r-- | ppapi/ppapi_tests.gypi | 2 |
3 files changed, 1 insertions, 59 deletions
diff --git a/ppapi/lib/gl/gl.gyp b/ppapi/lib/gl/gl.gyp index e7ffad3..e69de29 100644 --- a/ppapi/lib/gl/gl.gyp +++ b/ppapi/lib/gl/gl.gyp @@ -1,55 +0,0 @@ -# Copyright (c) 2010 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - - -# This file was split off from ppapi.gyp to prevent PPAPI users from -# needing to DEPS in ~10K files due to mesa. - -{ - 'includes': [ - '../../../third_party/mesa/mesa.gypi', - ], - 'variables': { - 'chromium_code': 1, # Use higher warning level. - }, - 'targets': [ - { - 'target_name': 'ppapi_egl', - 'type': 'static_library', - 'dependencies': [ - '<(DEPTH)/ppapi/ppapi.gyp:ppapi_c', - ], - 'include_dirs': [ - '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. - 'egl/egldriver.c', - 'egl/egldriver_ppapi.c', - ], - }, - ], -} diff --git a/ppapi/ppapi_gl.gypi b/ppapi/ppapi_gl.gypi index 7af9694..e9664de 100644 --- a/ppapi/ppapi_gl.gypi +++ b/ppapi/ppapi_gl.gypi @@ -2,9 +2,6 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. - -# This file was split off from ppapi.gyp to prevent PPAPI users from -# needing to DEPS in ~10K files due to mesa. { 'includes': [ '../third_party/mesa/mesa.gypi', diff --git a/ppapi/ppapi_tests.gypi b/ppapi/ppapi_tests.gypi index 2b5f967..2661de9 100644 --- a/ppapi/ppapi_tests.gypi +++ b/ppapi/ppapi_tests.gypi @@ -319,7 +319,7 @@ 'ppapi_example_skeleton', 'ppapi.gyp:ppapi_cpp', 'ppapi.gyp:ppapi_gles2', - 'lib/gl/gl.gyp:ppapi_egl', + 'ppapi.gyp:ppapi_egl', ], 'include_dirs': [ 'lib/gl/include', |