OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'internal_ozone_platform_deps': [ | 7 'internal_ozone_platform_deps': [ |
8 'ozone_platform_dri', | 8 'ozone_platform_dri', |
9 ], | 9 ], |
10 'internal_ozone_platforms': [ | 10 'internal_ozone_platforms': [ |
11 'dri' | 11 'dri' |
12 ], | 12 ], |
13 }, | 13 }, |
14 'targets': [ | 14 'targets': [ |
15 { | 15 { |
16 'target_name': 'ozone_platform_dri', | 16 'target_name': 'ozone_platform_dri', |
17 'type': 'static_library', | 17 'type': 'static_library', |
18 'dependencies': [ | 18 'dependencies': [ |
19 '../../base/base.gyp:base', | 19 '../../base/base.gyp:base', |
20 '../../build/linux/system.gyp:dridrm', | 20 '../../build/linux/system.gyp:dridrm', |
21 '../../skia/skia.gyp:skia', | 21 '../../skia/skia.gyp:skia', |
22 '../base/ui_base.gyp:ui_base', | |
sadrul
2014/05/16 13:39:52
This is necessary because of BitmapCursorFactoryOz
| |
22 '../display/display.gyp:display_types', | 23 '../display/display.gyp:display_types', |
23 '../display/display.gyp:display_util', | 24 '../display/display.gyp:display_util', |
24 '../events/events.gyp:events', | 25 '../events/events.gyp:events', |
25 '../events/ozone/events_ozone.gyp:events_ozone_evdev', | 26 '../events/ozone/events_ozone.gyp:events_ozone_evdev', |
26 '../gfx/gfx.gyp:gfx', | 27 '../gfx/gfx.gyp:gfx', |
27 '../gfx/gfx.gyp:gfx_geometry', | 28 '../gfx/gfx.gyp:gfx_geometry', |
28 ], | 29 ], |
29 'defines': [ | 30 'defines': [ |
30 'OZONE_IMPLEMENTATION', | 31 'OZONE_IMPLEMENTATION', |
31 ], | 32 ], |
(...skipping 21 matching lines...) Expand all Loading... | |
53 'hardware_display_controller.cc', | 54 'hardware_display_controller.cc', |
54 'hardware_display_controller.h', | 55 'hardware_display_controller.h', |
55 'ozone_platform_dri.cc', | 56 'ozone_platform_dri.cc', |
56 'ozone_platform_dri.h', | 57 'ozone_platform_dri.h', |
57 'screen_manager.cc', | 58 'screen_manager.cc', |
58 'screen_manager.h', | 59 'screen_manager.h', |
59 ], | 60 ], |
60 }, | 61 }, |
61 ], | 62 ], |
62 } | 63 } |
OLD | NEW |