OLD | NEW |
| (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_protocol', | |
47 'type': 'static_library', | |
48 'dependencies': [ | |
49 'wayland_util', | |
50 ], | |
51 'sources': [ | |
52 'protocol/wayland-protocol.c', | |
53 ], | |
54 'include_dirs': [ | |
55 'include/src', | |
56 'include/protocol', | |
57 'src/src', | |
58 ], | |
59 'direct_dependent_settings': { | |
60 'include_dirs': [ | |
61 'include/src', | |
62 'include/protocol', | |
63 'src/src', | |
64 ], | |
65 }, | |
66 }, | |
67 { | |
68 'target_name': 'wayland_server', | |
69 'type': 'static_library', | |
70 'dependencies': [ | |
71 '../../build/linux/system.gyp:libffi', | |
72 'wayland_private', | |
73 'wayland_protocol', | |
74 'wayland_util', | |
75 ], | |
76 'sources': [ | |
77 'include/protocol/wayland-server-protocol.h', | |
78 'src/src/event-loop.c', | |
79 'src/src/wayland-server.c', | |
80 'src/src/wayland-shm.c', | |
81 ], | |
82 'include_dirs': [ | |
83 'include/src', | |
84 'include/protocol', | |
85 'src/src', | |
86 ], | |
87 'direct_dependent_settings': { | |
88 'include_dirs': [ | |
89 'include/src', | |
90 'include/protocol', | |
91 'src/src', | |
92 ], | |
93 }, | |
94 }, | |
95 { | |
96 'target_name': 'wayland_client', | |
97 'type': 'static_library', | |
98 'dependencies': [ | |
99 '../../build/linux/system.gyp:libffi', | |
100 'wayland_private', | |
101 'wayland_protocol', | |
102 'wayland_util', | |
103 ], | |
104 'sources': [ | |
105 'include/protocol/wayland-client-protocol.h', | |
106 'src/src/wayland-client.c', | |
107 ], | |
108 'include_dirs': [ | |
109 'include/src', | |
110 'include/protocol', | |
111 'src/src', | |
112 ], | |
113 'direct_dependent_settings': { | |
114 'include_dirs': [ | |
115 'include/src', | |
116 'include/protocol', | |
117 'src/src', | |
118 ], | |
119 }, | |
120 }, | |
121 ], | |
122 } | |
OLD | NEW |