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' : [ |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 ], | 57 ], |
58 'include_dirs': [ | 58 'include_dirs': [ |
59 'include/protocol', | 59 'include/protocol', |
60 ], | 60 ], |
61 'direct_dependent_settings': { | 61 'direct_dependent_settings': { |
62 'include_dirs': [ | 62 'include_dirs': [ |
63 'include/protocol', | 63 'include/protocol', |
64 ], | 64 ], |
65 }, | 65 }, |
66 }, | 66 }, |
| 67 { |
| 68 'target_name': 'secure_output_protocol', |
| 69 'type': 'static_library', |
| 70 'dependencies' : [ |
| 71 '../wayland/wayland.gyp:wayland_util', |
| 72 ], |
| 73 'sources': [ |
| 74 'include/protocol/secure-output-unstable-v1-client-protocol.h', |
| 75 'include/protocol/secure-output-unstable-v1-server-protocol.h', |
| 76 'protocol/secure-output-protocol.c', |
| 77 ], |
| 78 'include_dirs': [ |
| 79 'include/protocol', |
| 80 ], |
| 81 'direct_dependent_settings': { |
| 82 'include_dirs': [ |
| 83 'include/protocol', |
| 84 ], |
| 85 }, |
| 86 }, |
67 ], | 87 ], |
68 } | 88 } |
OLD | NEW |