Chromium Code Reviews| 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/'], |
| + ] |
| + }], |
| + ] |
| + }, |
| + ], |
| +} |