OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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': 'xdg_shell_protocol', | 8 'target_name': 'xdg_shell_protocol', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies' : [ | 10 'dependencies' : [ |
11 '../wayland/wayland.gyp:wayland_util', | 11 '../wayland/wayland.gyp:wayland_util', |
12 ], | 12 ], |
13 'sources': [ | 13 'sources': [ |
14 'include/protocol/xdg-shell-unstable-v5-client-protocol.h', | 14 'include/protocol/xdg-shell-unstable-v5-client-protocol.h', |
15 'include/protocol/xdg-shell-unstable-v5-server-protocol.h', | 15 'include/protocol/xdg-shell-unstable-v5-server-protocol.h', |
16 'protocol/xdg-shell-protocol.c', | 16 'protocol/xdg-shell-protocol.c', |
17 ], | 17 ], |
18 'include_dirs': [ | 18 'include_dirs': [ |
19 'include/protocol', | 19 'include/protocol', |
20 ], | 20 ], |
21 'direct_dependent_settings': { | 21 'direct_dependent_settings': { |
22 'include_dirs': [ | 22 'include_dirs': [ |
23 'include/protocol', | 23 'include/protocol', |
24 ], | 24 ], |
25 }, | 25 }, |
26 }, | 26 }, |
27 { | 27 { |
| 28 'target_name': 'linux_dmabuf_protocol', |
| 29 'type': 'static_library', |
| 30 'dependencies' : [ |
| 31 '../wayland/wayland.gyp:wayland_util', |
| 32 ], |
| 33 'sources': [ |
| 34 'include/protocol/linux-dmabuf-unstable-v1-client-protocol.h', |
| 35 'include/protocol/linux-dmabuf-unstable-v1-server-protocol.h', |
| 36 'protocol/linux-dmabuf-protocol.c', |
| 37 ], |
| 38 'include_dirs': [ |
| 39 'include/protocol', |
| 40 ], |
| 41 'direct_dependent_settings': { |
| 42 'include_dirs': [ |
| 43 'include/protocol', |
| 44 ], |
| 45 }, |
| 46 }, |
| 47 { |
28 'target_name': 'scaler_protocol', | 48 'target_name': 'scaler_protocol', |
29 'type': 'static_library', | 49 'type': 'static_library', |
30 'dependencies' : [ | 50 'dependencies' : [ |
31 '../wayland/wayland.gyp:wayland_util', | 51 '../wayland/wayland.gyp:wayland_util', |
32 ], | 52 ], |
33 'sources': [ | 53 'sources': [ |
34 'include/protocol/scaler-client-protocol.h', | 54 'include/protocol/scaler-client-protocol.h', |
35 'include/protocol/scaler-server-protocol.h', | 55 'include/protocol/scaler-server-protocol.h', |
36 'protocol/scaler-protocol.c', | 56 'protocol/scaler-protocol.c', |
37 ], | 57 ], |
38 'include_dirs': [ | 58 'include_dirs': [ |
39 'include/protocol', | 59 'include/protocol', |
40 ], | 60 ], |
41 'direct_dependent_settings': { | 61 'direct_dependent_settings': { |
42 'include_dirs': [ | 62 'include_dirs': [ |
43 'include/protocol', | 63 'include/protocol', |
44 ], | 64 ], |
45 }, | 65 }, |
46 }, | 66 }, |
47 ], | 67 ], |
48 } | 68 } |
OLD | NEW |