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

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

Issue 44933002: Implement OzonePlatform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'targets': [
10 {
11 'target_name': 'ozone',
12 'type': '<(component)',
13 'dependencies': [
14 '<(DEPTH)/base/base.gyp:base',
15 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
16 '<(DEPTH)/skia/skia.gyp:skia',
17 ],
18 'defines': [
19 'OZONE_IMPLEMENTATION',
20 ],
21 'sources': [
22 'ozone_platform.cc',
23 'ozone_platform.h',
24 'ozone_switches.cc',
25 'ozone_switches.h',
26 'platform/dri/ozone_platform_dri.cc',
27 'platform/dri/ozone_platform_dri.h',
28 'platform/test/ozone_platform_test.cc',
29 'platform/test/ozone_platform_test.h',
30 ],
31 'conditions': [
32 ['ozone_platform != "dri"', {
33 'sources/': [
34 ['exclude', '^platform/dri/'],
35 ]
36 }],
37 ['ozone_platform != "test"', {
38 'sources/': [
39 ['exclude', '^platform/test/'],
40 ]
41 }],
42 ]
43 },
44 ],
45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698