OLD | NEW |
| (Empty) |
1 # Copyright 2014 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 'target_name': 'gfx_ozone', | |
11 'type': '<(component)', | |
12 'defines': [ | |
13 'GFX_IMPLEMENTATION', | |
14 ], | |
15 'dependencies': [ | |
16 '../../../base/base.gyp:base', | |
17 '../../../skia/skia.gyp:skia', | |
18 '../gfx.gyp:gfx', | |
19 '../gfx.gyp:gfx_geometry', | |
20 ], | |
21 'sources': [ | |
22 'impl/file_surface_factory.cc', | |
23 'impl/file_surface_factory.h', | |
24 'surface_factory_ozone.cc', | |
25 'surface_factory_ozone.h', | |
26 'surface_ozone_egl.h', | |
27 'surface_ozone_canvas.h', | |
28 'overlay_candidates_ozone.cc', | |
29 'overlay_candidates_ozone.h', | |
30 ], | |
31 }], | |
32 } | |
OLD | NEW |