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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 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_util',
9 'type': 'static_library',
10 'sources': [
11 'src/src/wayland-util.c',
12 'src/src/wayland-util.h',
13 ],
14 'include_dirs': [
15 'include/src',
16 'include/protocol',
17 'src/src',
18 ],
19 'direct_dependent_settings': {
20 'include_dirs': [
21 'include/src',
22 'include/protocol',
23 'src/src',
24 ],
25 },
26 },
27 {
28 'target_name': 'wayland_private',
29 'type': 'static_library',
30 'dependencies' : [
31 '../../build/linux/system.gyp:libffi',
32 ],
33 'sources': [
34 'src/src/connection.c',
35 'src/src/wayland-os.c',
36 'src/src/wayland-os.h',
37 'src/src/wayland-private.h',
38 ],
39 'include_dirs': [
40 'include/src',
41 'include/protocol',
42 'src/src',
43 ],
44 },
45 {
46 'target_name': 'wayland_server',
47 'type': 'static_library',
48 'dependencies' : [
49 '../../build/linux/system.gyp:libffi',
50 'wayland_private',
51 'wayland_util',
52 ],
53 'sources': [
54 'include/protocol/wayland-server-protocol.h',
55 'protocol/wayland-protocol.c',
56 'src/src/event-loop.c',
57 'src/src/wayland-server.c',
58 'src/src/wayland-shm.c',
59 ],
60 'include_dirs': [
61 'include/src',
62 'include/protocol',
63 'src/src',
64 ],
65 'direct_dependent_settings': {
66 'include_dirs': [
67 'include/src',
68 'include/protocol',
69 'src/src',
70 ],
71 },
72 },
73 ],
74 }
OLDNEW
« 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