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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/wayland/demos/util.cc ('k') | ui/wayland/wayland_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/wayland/wayland.gyp
diff --git a/ui/wayland/wayland.gyp b/ui/wayland/wayland.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..38c0b626718c19a166e1394fbee45b3c2119369e
--- /dev/null
+++ b/ui/wayland/wayland.gyp
@@ -0,0 +1,62 @@
+# Copyright 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'wayland',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../../build/linux/system.gyp:wayland',
+ '../../base/base.gyp:base',
+ '../../base/base.gyp:base_i18n',
+ '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
+ '../../skia/skia.gyp:skia',
+ '../compositor/compositor.gyp:compositor',
+ '../ui.gyp:ui',
+ '../ui.gyp:ui_resources',
+ ],
+ 'include_dirs': [
+ '.',
+ '../..',
+ ],
+ 'sources': [
+ 'wayland_display.cc',
+ 'wayland_display.h',
+ 'wayland_task.cc',
+ 'wayland_task.h',
+ 'wayland_input_device.cc',
+ 'wayland_input_device.h',
+ 'wayland_input_method_event_filter.cc',
+ 'wayland_input_method_event_filter.h',
+ 'wayland_screen.cc',
+ 'wayland_screen.h',
+ 'wayland_delegate.h',
+ 'wayland_window.cc',
+ 'wayland_window.h',
+ ],
+ },
+ {
+ 'target_name': 'wayland_sample',
+ 'type': 'executable',
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ '../../build/linux/system.gyp:wayland',
+ '../ui.gyp:ui',
+ '../gl/gl.gyp:gl',
+ 'wayland',
+ ],
+ 'include_dirs': [
+ '.',
+ '../..',
+ 'events',
+ ],
+ 'sources': [
+ 'demos/sample.cc',
+ 'demos/util.cc',
+ 'demos/util.h',
+ ],
+ },
+ ],
+}
« 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