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

Side by Side Diff: ui/gl/init/gl_init.gyp

Issue 2088453003: Move GLSurface and rename source files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix GYP path. Created 4 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 unified diff | Download patch
« no previous file with comments | « ui/gl/init/gl_factory_ozone.cc ('k') | ui/gl/init/gl_surface_ozone.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'targets': [ 10 'targets': [
(...skipping 17 matching lines...) Expand all
28 'gl_initializer_win.cc', 28 'gl_initializer_win.cc',
29 'gl_initializer_x11.cc', 29 'gl_initializer_x11.cc',
30 'gl_factory.cc', 30 'gl_factory.cc',
31 'gl_factory.h', 31 'gl_factory.h',
32 'gl_factory_android.cc', 32 'gl_factory_android.cc',
33 'gl_factory_mac.cc', 33 'gl_factory_mac.cc',
34 'gl_factory_ozone.cc', 34 'gl_factory_ozone.cc',
35 'gl_factory_win.cc', 35 'gl_factory_win.cc',
36 'gl_factory_x11.cc', 36 'gl_factory_x11.cc',
37 'gl_init_export.h', 37 'gl_init_export.h',
38 'gl_surface_ozone.cc',
39 'gl_surface_ozone.h',
38 ], 40 ],
39 'conditions': [ 41 'conditions': [
40 ['OS=="mac"', { 42 ['OS=="mac"', {
41 'link_settings': { 43 'link_settings': {
42 'libraries': [ 44 'libraries': [
43 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 45 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
44 ], 46 ],
45 }, 47 },
46 }], 48 }],
49 ['use_ozone==1', {
50 'dependencies': [
51 '../../ozone/ozone.gyp:ozone',
52 ],
53 }],
47 ], 54 ],
48 }, 55 },
49 ], 56 ],
50 } 57 }
OLDNEW
« no previous file with comments | « ui/gl/init/gl_factory_ozone.cc ('k') | ui/gl/init/gl_surface_ozone.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698