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

Unified Diff: ui/base/ozone/ozone.gyp

Issue 44933002: Implement OzonePlatform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add external_ozone_platform_files, external_ozone_platform_deps 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/base/ozone/ozone.gyp
diff --git a/ui/base/ozone/ozone.gyp b/ui/base/ozone/ozone.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..19c466bb0b12b5bfaad2769dc9847fe5480151fb
--- /dev/null
+++ b/ui/base/ozone/ozone.gyp
@@ -0,0 +1,49 @@
+# 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,
+ 'external_ozone_platform_files': [],
+ 'external_ozone_platform_deps': [],
+ },
+ 'targets': [
+ {
+ 'target_name': 'ozone',
+ 'type': '<(component)',
+ 'dependencies': [
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
+ '<(DEPTH)/skia/skia.gyp:skia',
+ '<@(external_ozone_platform_deps)',
+ ],
+ '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',
+ '<@(external_ozone_platform_files)',
+ ],
+ 'conditions': [
+ ['ozone_platform != "dri"', {
+ 'sources/': [
+ ['exclude', '^platform/dri/'],
rjkroege 2013/10/28 15:48:19 you will explain to me in the fullness of time how
spang 2013/10/28 16:01:41 Maybe we can discuss on the new ozone-dev list.
+ ]
+ }],
+ ['ozone_platform != "test"', {
+ 'sources/': [
+ ['exclude', '^platform/test/'],
+ ]
+ }],
+ ]
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698