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

Unified Diff: ppapi/lib/gl/gl.gyp

Issue 7283013: Deleted gl.gyp that had duplicate ppapi_egl target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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 | ppapi/ppapi_gl.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/lib/gl/gl.gyp
===================================================================
--- ppapi/lib/gl/gl.gyp (revision 90950)
+++ ppapi/lib/gl/gl.gyp (working copy)
@@ -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',
- ],
- },
- ],
-}
« no previous file with comments | « no previous file | ppapi/ppapi_gl.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698