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

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

Issue 8378005: wayland: define base:NativeEvent for Wayland (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Create a new wayland namespace in base and define WaylandEvent there. Created 9 years, 1 month 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'wayland', 8 'target_name': 'wayland',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
11 '../../base/base.gyp:base', 11 '../../base/base.gyp:base',
12 '../../build/linux/system.gyp:wayland', 12 '../../build/linux/system.gyp:wayland',
13 '../ui.gyp:ui', 13 '../ui.gyp:ui',
14 ], 14 ],
15 'include_dirs': [ 15 'include_dirs': [
16 '.', 16 '.',
17 '../..', 17 '../..',
18 'events', 18 'events',
19 ], 19 ],
20 'sources': [ 20 'sources': [
21 'events/wayland_event.h',
22 'wayland_buffer.cc', 21 'wayland_buffer.cc',
23 'wayland_buffer.h', 22 'wayland_buffer.h',
24 'wayland_cursor.cc', 23 'wayland_cursor.cc',
25 'wayland_cursor.h', 24 'wayland_cursor.h',
26 'wayland_display.cc', 25 'wayland_display.cc',
27 'wayland_display.h', 26 'wayland_display.h',
28 'wayland_input_device.cc', 27 'wayland_input_device.cc',
29 'wayland_input_device.h', 28 'wayland_input_device.h',
30 'wayland_message_pump.cc', 29 'wayland_message_pump.cc',
31 'wayland_message_pump.h', 30 'wayland_message_pump.h',
32 'wayland_screen.cc', 31 'wayland_screen.cc',
33 'wayland_screen.h', 32 'wayland_screen.h',
34 'wayland_shm_buffer.cc', 33 'wayland_shm_buffer.cc',
35 'wayland_shm_buffer.h', 34 'wayland_shm_buffer.h',
36 'wayland_widget.h', 35 'wayland_widget.h',
37 'wayland_window.cc', 36 'wayland_window.cc',
38 'wayland_window.h', 37 'wayland_window.h',
39 ], 38 ],
40 } 39 }
41 ], 40 ],
42 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698