Chromium Code Reviews| Index: ui/ozone/platform/cast/cast.gypi |
| diff --git a/ui/ozone/platform/cast/cast.gypi b/ui/ozone/platform/cast/cast.gypi |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9da261d6d52e52fe47c59c378fe976ea1490d7f4 |
| --- /dev/null |
| +++ b/ui/ozone/platform/cast/cast.gypi |
| @@ -0,0 +1,45 @@ |
| +# Copyright 2014 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': { |
| + 'cast_graphics_gyp%': '../../chromecast/chromecast.gyp', |
| + 'internal_ozone_platform_deps': [ |
| + 'ozone_platform_cast', |
| + ], |
| + 'internal_ozone_platform_unittest_deps': [ ], |
| + 'internal_ozone_platforms': [ |
| + 'cast', |
| + ], |
| + }, |
| + 'targets': [ |
| + { |
| + 'target_name': 'ozone_platform_cast', |
| + 'type': 'static_library', |
| + 'dependencies': [ |
| + '../../base/base.gyp:base', |
| + '../../chromecast/chromecast.gyp:cast_public_api', |
| + '<(cast_graphics_gyp):libcast_graphics_1.0', |
|
byungchul
2015/04/04 03:02:20
looks like a wrong order.
halliwell
2015/04/06 14:32:42
reordered.
|
| + '../events/events.gyp:events', |
| + '../gfx/gfx.gyp:gfx', |
| + '../gfx/gfx.gyp:gfx_geometry', |
| + ], |
| + 'defines': [ |
| + 'OZONE_IMPLEMENTATION', |
| + ], |
| + 'sources': [ |
| + 'gpu_platform_support_cast.cc', |
| + 'gpu_platform_support_cast.h', |
| + 'ozone_platform_cast.cc', |
| + 'ozone_platform_cast.h', |
| + 'platform_window_cast.cc', |
| + 'platform_window_cast.h', |
| + 'surface_factory_cast.cc', |
| + 'surface_factory_cast.h', |
| + 'surface_ozone_egl_cast.cc', |
| + 'surface_ozone_egl_cast.h', |
| + ], |
| + }, |
| + ], |
| +} |