| 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 27 matching lines...) Expand all Loading... |
| 38 'include_dirs': [ | 38 'include_dirs': [ |
| 39 'include/protocol', | 39 'include/protocol', |
| 40 ], | 40 ], |
| 41 'direct_dependent_settings': { | 41 'direct_dependent_settings': { |
| 42 'include_dirs': [ | 42 'include_dirs': [ |
| 43 'include/protocol', | 43 'include/protocol', |
| 44 ], | 44 ], |
| 45 }, | 45 }, |
| 46 }, | 46 }, |
| 47 { | 47 { |
| 48 'target_name': 'scaler_protocol', | |
| 49 'type': 'static_library', | |
| 50 'dependencies' : [ | |
| 51 '../wayland/wayland.gyp:wayland_util', | |
| 52 ], | |
| 53 'sources': [ | |
| 54 'include/protocol/scaler-client-protocol.h', | |
| 55 'include/protocol/scaler-server-protocol.h', | |
| 56 'protocol/scaler-protocol.c', | |
| 57 ], | |
| 58 'include_dirs': [ | |
| 59 'include/protocol', | |
| 60 ], | |
| 61 'direct_dependent_settings': { | |
| 62 'include_dirs': [ | |
| 63 'include/protocol', | |
| 64 ], | |
| 65 }, | |
| 66 }, | |
| 67 { | |
| 68 'target_name': 'viewporter_protocol', | 48 'target_name': 'viewporter_protocol', |
| 69 'type': 'static_library', | 49 'type': 'static_library', |
| 70 'dependencies' : [ | 50 'dependencies' : [ |
| 71 '../wayland/wayland.gyp:wayland_util', | 51 '../wayland/wayland.gyp:wayland_util', |
| 72 ], | 52 ], |
| 73 'sources': [ | 53 'sources': [ |
| 74 'include/protocol/viewporter-client-protocol.h', | 54 'include/protocol/viewporter-client-protocol.h', |
| 75 'include/protocol/viewporter-server-protocol.h', | 55 'include/protocol/viewporter-server-protocol.h', |
| 76 'protocol/viewporter-protocol.c', | 56 'protocol/viewporter-protocol.c', |
| 77 ], | 57 ], |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 'include/protocol', | 119 'include/protocol', |
| 140 ], | 120 ], |
| 141 'direct_dependent_settings': { | 121 'direct_dependent_settings': { |
| 142 'include_dirs': [ | 122 'include_dirs': [ |
| 143 'include/protocol', | 123 'include/protocol', |
| 144 ], | 124 ], |
| 145 }, | 125 }, |
| 146 }, | 126 }, |
| 147 ], | 127 ], |
| 148 } | 128 } |
| OLD | NEW |