OLD | NEW |
(Empty) | |
| 1 # Copyright 2013 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 'targets': [ |
| 7 { |
| 8 'target_name': 'wayland', |
| 9 'type': 'static_library', |
| 10 'dependencies': [ |
| 11 '../../build/linux/system.gyp:wayland', |
| 12 '../../base/base.gyp:base', |
| 13 '../../base/base.gyp:base_i18n', |
| 14 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
| 15 '../../skia/skia.gyp:skia', |
| 16 '../compositor/compositor.gyp:compositor', |
| 17 '../ui.gyp:ui', |
| 18 '../ui.gyp:ui_resources', |
| 19 ], |
| 20 'include_dirs': [ |
| 21 '.', |
| 22 '../..', |
| 23 ], |
| 24 'sources': [ |
| 25 'wayland_display.cc', |
| 26 'wayland_display.h', |
| 27 'wayland_task.cc', |
| 28 'wayland_task.h', |
| 29 'wayland_input_device.cc', |
| 30 'wayland_input_device.h', |
| 31 'wayland_input_method_event_filter.cc', |
| 32 'wayland_input_method_event_filter.h', |
| 33 'wayland_screen.cc', |
| 34 'wayland_screen.h', |
| 35 'wayland_delegate.h', |
| 36 'wayland_window.cc', |
| 37 'wayland_window.h', |
| 38 ], |
| 39 }, |
| 40 { |
| 41 'target_name': 'wayland_sample', |
| 42 'type': 'executable', |
| 43 'dependencies': [ |
| 44 '../../base/base.gyp:base', |
| 45 '../../build/linux/system.gyp:wayland', |
| 46 '../ui.gyp:ui', |
| 47 '../gl/gl.gyp:gl', |
| 48 'wayland', |
| 49 ], |
| 50 'include_dirs': [ |
| 51 '.', |
| 52 '../..', |
| 53 'events', |
| 54 ], |
| 55 'sources': [ |
| 56 'demos/sample.cc', |
| 57 'demos/util.cc', |
| 58 'demos/util.h', |
| 59 ], |
| 60 }, |
| 61 ], |
| 62 } |
OLD | NEW |