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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
Index: ui/ozone/ozone.gyp
diff --git a/ui/ozone/ozone.gyp b/ui/ozone/ozone.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..777c74102a6aedcd2380165d91b3c60da80a96da
--- /dev/null
+++ b/ui/ozone/ozone.gyp
@@ -0,0 +1,45 @@
+# Copyright 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'targets': [
+ {
+ 'target_name': 'ozone',
+ 'type': '<(component)',
+ 'dependencies': [
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
+ '<(DEPTH)/skia/skia.gyp:skia',
+ ],
+ 'defines': [
+ 'OZONE_IMPLEMENTATION',
+ ],
+ 'sources': [
+ 'ozone_platform.cc',
+ 'ozone_platform.h',
+ 'ozone_switches.cc',
+ 'ozone_switches.h',
+ 'platform/dri/ozone_platform_dri.cc',
+ 'platform/dri/ozone_platform_dri.h',
+ 'platform/test/ozone_platform_test.cc',
+ 'platform/test/ozone_platform_test.h',
+ ],
+ 'conditions': [
+ ['ozone_platform != "dri"', {
+ 'sources/': [
+ ['exclude', '^platform/dri/'],
+ ]
+ }],
+ ['ozone_platform != "test"', {
+ 'sources/': [
+ ['exclude', '^platform/test/'],
+ ]
+ }],
+ ]
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698