OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'includes': [ | 6 'includes': [ |
7 '../build/common_untrusted.gypi', | 7 '../build/common_untrusted.gypi', |
8 'remoting_srcs.gypi', | 8 'remoting_srcs.gypi', |
9 ], | 9 ], |
10 | 10 |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 '<@(remoting_client_plugin_sources)', | 119 '<@(remoting_client_plugin_sources)', |
120 '<@(remoting_client_sources)', | 120 '<@(remoting_client_sources)', |
121 '<@(remoting_protocol_sources)', | 121 '<@(remoting_protocol_sources)', |
122 '<@(remoting_signaling_sources)', | 122 '<@(remoting_signaling_sources)', |
123 ], | 123 ], |
124 'sources!': [ | 124 'sources!': [ |
125 'base/url_request_context_getter.cc', | 125 'base/url_request_context_getter.cc', |
126 'protocol/chromium_socket_factory.cc', | 126 'protocol/chromium_socket_factory.cc', |
127 ], | 127 ], |
128 | 128 |
129 # Include normalizing_input_filter_mac.cc excluded by the filename | 129 # Include normalizing_input_filter_*.cc excluded by the filename |
130 # exclusion rules. Must be in target_conditions to make sure it's | 130 # exclusion rules. Must be in target_conditions to make sure it's |
131 # evaluated after the filename rules. | 131 # evaluated after the filename rules. |
132 'target_conditions': [ | 132 'target_conditions': [ |
133 ['1==1', { | 133 ['1==1', { |
134 'sources/': [ | 134 'sources/': [ |
135 [ 'include', 'client/normalizing_input_filter_mac.cc' ], | 135 [ 'include', 'client/normalizing_input_filter_mac.cc' ], |
| 136 [ 'include', 'client/normalizing_input_filter_win.cc' ], |
136 ], | 137 ], |
137 }], | 138 }], |
138 ], | 139 ], |
139 }, # end of target 'remoting_client_plugin_lib_nacl' | 140 }, # end of target 'remoting_client_plugin_lib_nacl' |
140 | 141 |
141 { | 142 { |
142 'target_name': 'remoting_client_plugin_nacl', | 143 'target_name': 'remoting_client_plugin_nacl', |
143 'type': 'none', | 144 'type': 'none', |
144 'variables': { | 145 'variables': { |
145 'nacl_untrusted_build': 1, | 146 'nacl_untrusted_build': 1, |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 '-lppapi_cpp', | 230 '-lppapi_cpp', |
230 '-lpthread', | 231 '-lpthread', |
231 '-lnacl_io', | 232 '-lnacl_io', |
232 ], | 233 ], |
233 'sources': [ | 234 'sources': [ |
234 'client/plugin/pepper_module.cc', | 235 'client/plugin/pepper_module.cc', |
235 ], | 236 ], |
236 }, # end of target 'remoting_client_plugin_nacl' | 237 }, # end of target 'remoting_client_plugin_nacl' |
237 ] | 238 ] |
238 } | 239 } |
OLD | NEW |