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

Side by Side Diff: ui/ozone/ozone.gyp

Issue 1253363004: ozone gbm: whitelist 3 DRM ioctl code for native GpuMemoryBuffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move vgem_map target into ozone.gyp Created 5 years, 2 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 # Normally, the external_ozone_platform* variables below can be 8 # Normally, the external_ozone_platform* variables below can be
9 # overridden by supplement.gypi which must exist exactly one level 9 # overridden by supplement.gypi which must exist exactly one level
10 # below the top-level src directory. They can now also be set in 10 # below the top-level src directory. They can now also be set in
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 ['<(ozone_platform_gbm) == 1', { 218 ['<(ozone_platform_gbm) == 1', {
219 'includes': [ 219 'includes': [
220 'platform/drm/gbm.gypi', 220 'platform/drm/gbm.gypi',
221 ], 221 ],
222 }], 222 }],
223 ['<(ozone_platform_test) == 1', { 223 ['<(ozone_platform_test) == 1', {
224 'includes': [ 224 'includes': [
225 'platform/test/test.gypi', 225 'platform/test/test.gypi',
226 ], 226 ],
227 }], 227 }],
228 ['use_vgem_map==1', {
229 'targets': [
230 {
231 'target_name': 'vgem_map',
232 'type': 'none',
233 'direct_dependent_settings': {
234 'defines': [
235 'USE_VGEM_MAP',
236 ],
237 },
238 },
239 ],
240 }],
228 ], 241 ],
229 } 242 }
OLDNEW
« build/common.gypi ('K') | « ui/ozone/ozone.gni ('k') | ui/ozone/platform/drm/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698