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

Side by Side Diff: ui/gl/gl_tests.gyp

Issue 1419733005: gpu: Add YCbCr 420v extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase on master. Add gl/gfx namespace qualifiers. Created 5 years, 1 month 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 'sources': [ 42 'sources': [
43 'egl_api_unittest.cc', 43 'egl_api_unittest.cc',
44 'test/egl_initialization_displays_unittest.cc', 44 'test/egl_initialization_displays_unittest.cc',
45 ], 45 ],
46 }], 46 }],
47 ['OS == "linux" and use_x11 == 1', { 47 ['OS == "linux" and use_x11 == 1', {
48 'sources': [ 48 'sources': [
49 'glx_api_unittest.cc', 49 'glx_api_unittest.cc',
50 ], 50 ],
51 }], 51 }],
52 ['OS == "mac"', {
53 'sources': [
54 'gl_image_io_surface_unittest.cc',
55 ],
56 }],
52 ['OS == "win"', { 57 ['OS == "win"', {
53 'sources': [ 58 'sources': [
54 'wgl_api_unittest.cc', 59 'wgl_api_unittest.cc',
55 ], 60 ],
56 }], 61 }],
57 ], 62 ],
58 } 63 }
59 ], 64 ],
60 'conditions': [ 65 'conditions': [
61 ['OS == "android"', { 66 ['OS == "android"', {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 'dependencies': [ 118 'dependencies': [
114 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 119 '<(DEPTH)/tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
115 ], 120 ],
116 }], 121 }],
117 ], 122 ],
118 }, 123 },
119 ], 124 ],
120 }], 125 }],
121 ], 126 ],
122 } 127 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698