Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: ui/wayland/wayland.gyp

Issue 17265006: wayland patch for inspection Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/wayland/demos/util.cc ('k') | ui/wayland/wayland_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « ui/wayland/demos/util.cc ('k') | ui/wayland/wayland_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698