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

Unified Diff: ui/gl/init/gl_init.gyp

Issue 2306743002: Nukes the gyp/gypi files in ui (Closed)
Patch Set: keep webui Created 4 years, 3 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 | « ui/gl/gl_tests.gyp ('k') | ui/keyboard/keyboard.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gl/init/gl_init.gyp
diff --git a/ui/gl/init/gl_init.gyp b/ui/gl/init/gl_init.gyp
deleted file mode 100644
index 342cddf980105f23d769e017dc2af6d41100ec61..0000000000000000000000000000000000000000
--- a/ui/gl/init/gl_init.gyp
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 2016 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.
-
-{
- 'variables': {
- 'chromium_code': 1,
- },
-
- 'targets': [
- {
- 'target_name': 'gl_init',
- 'type': '<(component)',
- 'dependencies': [
- '../../../base/base.gyp:base',
- '../../gfx/gfx.gyp:gfx',
- '../../gfx/gfx.gyp:gfx_geometry',
- '../gl.gyp:gl',
- ],
- 'defines': [
- 'GL_INIT_IMPLEMENTATION',
- ],
- 'sources': [
- 'gl_initializer.h',
- 'gl_initializer_android.cc',
- 'gl_initializer_mac.cc',
- 'gl_initializer_ozone.cc',
- 'gl_initializer_win.cc',
- 'gl_initializer_x11.cc',
- 'gl_factory.cc',
- 'gl_factory.h',
- 'gl_factory_android.cc',
- 'gl_factory_mac.cc',
- 'gl_factory_ozone.cc',
- 'gl_factory_win.cc',
- 'gl_factory_x11.cc',
- 'gl_init_export.h',
- ],
- 'conditions': [
- ['OS=="mac"', {
- 'link_settings': {
- 'libraries': [
- '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
- ],
- },
- }],
- ['OS=="win"', {
- 'msvs_settings': {
- 'VCLinkerTool': {
- 'DelayLoadDLLs': [
- 'dwmapi.dll',
- ],
- 'AdditionalDependencies': [
- 'dwmapi.lib',
- ],
- },
- },
- 'link_settings': {
- 'libraries': [
- '-ldwmapi.lib',
- ],
- },
- }],
- ['use_x11 == 1', {
- 'dependencies': [
- '../../gfx/x/gfx_x11.gyp:gfx_x11',
- ],
- }],
- ['use_ozone==1', {
- 'dependencies': [
- '../../ozone/gl/ozone_gl.gyp:ozone_gl',
- '../../ozone/ozone.gyp:ozone',
- '../../ozone/ozone.gyp:ozone_base',
- ],
- }],
- ],
- },
- ],
-}
« no previous file with comments | « ui/gl/gl_tests.gyp ('k') | ui/keyboard/keyboard.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698