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

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

Issue 1134993003: ozone: Implement zero/one-copy texture for Ozone GBM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase to ToT Created 5 years, 5 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
11 # $GYP_DEFINES 11 # $GYP_DEFINES
12 'external_ozone_platforms%': [], 12 'external_ozone_platforms%': [],
13 'external_ozone_platform_files%': [], 13 'external_ozone_platform_files%': [],
14 'external_ozone_platform_deps%': [], 14 'external_ozone_platform_deps%': [],
15 'external_ozone_platform_unittest_deps%': [], 15 'external_ozone_platform_unittest_deps%': [],
16 'internal_ozone_platforms': [], 16 'internal_ozone_platforms': [],
17 'internal_ozone_platform_deps': [], 17 'internal_ozone_platform_deps': [],
18 'internal_ozone_platform_unittest_deps': [], 18 'internal_ozone_platform_unittest_deps': [],
19 }, 19 },
20 'targets': [ 20 'targets': [
21 { 21 {
22 # GN version: //ui/ozone:ozone_base 22 # GN version: //ui/ozone:ozone_base
23 'target_name': 'ozone_base', 23 'target_name': 'ozone_base',
24 'type': '<(component)', 24 'type': '<(component)',
25 'dependencies': [ 25 'dependencies': [
26 '<(DEPTH)/base/base.gyp:base', 26 '<(DEPTH)/base/base.gyp:base',
27 '<(DEPTH)/skia/skia.gyp:skia', 27 '<(DEPTH)/skia/skia.gyp:skia',
28 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 28 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
29 ], 29 ],
30 'defines': [ 30 'defines': [
31 'OZONE_BASE_IMPLEMENTATION', 31 'OZONE_BASE_IMPLEMENTATION',
32 ], 32 ],
33 'sources': [ 33 'sources': [
34 'public/cursor_factory_ozone.cc', 34 'public/cursor_factory_ozone.cc',
35 'public/cursor_factory_ozone.h', 35 'public/cursor_factory_ozone.h',
36 'public/gpu_platform_support.cc', 36 'public/gpu_platform_support.cc',
37 'public/gpu_platform_support.h', 37 'public/gpu_platform_support.h',
38 'public/gpu_platform_support_host.cc', 38 'public/gpu_platform_support_host.cc',
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 'platform/drm/gbm.gypi', 222 'platform/drm/gbm.gypi',
223 ], 223 ],
224 }], 224 }],
225 ['<(ozone_platform_test) == 1', { 225 ['<(ozone_platform_test) == 1', {
226 'includes': [ 226 'includes': [
227 'platform/test/test.gypi', 227 'platform/test/test.gypi',
228 ], 228 ],
229 }], 229 }],
230 ], 230 ],
231 } 231 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698