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

Unified Diff: third_party/wayland/wayland.gyp

Issue 1426583009: third_party: Add wayland library. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/wayland/protocol/wayland-protocol.c ('k') | tools/checklicenses/checklicenses.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/wayland/wayland.gyp
diff --git a/third_party/wayland/wayland.gyp b/third_party/wayland/wayland.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..7bb4c79c657e4e130d151a39c8c9c59ea652b32b
--- /dev/null
+++ b/third_party/wayland/wayland.gyp
@@ -0,0 +1,74 @@
+# Copyright 2015 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_util',
+ 'type': 'static_library',
+ 'sources': [
+ 'src/src/wayland-util.c',
+ 'src/src/wayland-util.h',
+ ],
+ 'include_dirs': [
+ 'include/src',
+ 'include/protocol',
+ 'src/src',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ 'include/src',
+ 'include/protocol',
+ 'src/src',
+ ],
+ },
+ },
+ {
+ 'target_name': 'wayland_private',
+ 'type': 'static_library',
+ 'dependencies' : [
+ '../../build/linux/system.gyp:libffi',
+ ],
+ 'sources': [
+ 'src/src/connection.c',
+ 'src/src/wayland-os.c',
+ 'src/src/wayland-os.h',
+ 'src/src/wayland-private.h',
+ ],
+ 'include_dirs': [
+ 'include/src',
+ 'include/protocol',
+ 'src/src',
+ ],
+ },
+ {
+ 'target_name': 'wayland_server',
+ 'type': 'static_library',
+ 'dependencies' : [
+ '../../build/linux/system.gyp:libffi',
+ 'wayland_private',
+ 'wayland_util',
+ ],
+ 'sources': [
+ 'include/protocol/wayland-server-protocol.h',
+ 'protocol/wayland-protocol.c',
+ 'src/src/event-loop.c',
+ 'src/src/wayland-server.c',
+ 'src/src/wayland-shm.c',
+ ],
+ 'include_dirs': [
+ 'include/src',
+ 'include/protocol',
+ 'src/src',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ 'include/src',
+ 'include/protocol',
+ 'src/src',
+ ],
+ },
+ },
+ ],
+}
« no previous file with comments | « third_party/wayland/protocol/wayland-protocol.c ('k') | tools/checklicenses/checklicenses.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698