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 '../native_client/build/untrusted.gypi', | 7 '../native_client/build/untrusted.gypi', |
8 'remoting_srcs.gypi', | 8 'remoting_srcs.gypi', |
9 ], | 9 ], |
10 | 10 |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 'sources': [ | 116 'sources': [ |
117 '../ui/events/keycodes/dom4/keycode_converter.cc', | 117 '../ui/events/keycodes/dom4/keycode_converter.cc', |
118 '<@(remoting_base_sources)', | 118 '<@(remoting_base_sources)', |
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 ], | 122 ], |
123 'sources!': [ | 123 'sources!': [ |
124 'base/url_request_context.cc', | 124 'base/url_request_context.cc', |
125 'jingle_glue/chromium_socket_factory.cc', | 125 'jingle_glue/chromium_socket_factory.cc', |
126 ] | 126 ], |
| 127 |
| 128 # Include normalizing_input_filter_mac.cc excluded by the filename |
| 129 # exclusion rules. Must be in target_conditions to make sure it's |
| 130 # evaluated after the filename rules. |
| 131 'target_conditions': [ |
| 132 ['1==1', { |
| 133 'sources/': [ |
| 134 [ 'include', 'client/plugin/normalizing_input_filter_mac.cc' ], |
| 135 ], |
| 136 }], |
| 137 ], |
127 }, # end of target 'remoting_client_plugin_lib_nacl' | 138 }, # end of target 'remoting_client_plugin_lib_nacl' |
128 | 139 |
129 { | 140 { |
130 'target_name': 'remoting_client_plugin_nacl', | 141 'target_name': 'remoting_client_plugin_nacl', |
131 'type': 'none', | 142 'type': 'none', |
132 'variables': { | 143 'variables': { |
133 'nacl_untrusted_build': 1, | 144 'nacl_untrusted_build': 1, |
134 'nexe_target': 'remoting_client_plugin', | 145 'nexe_target': 'remoting_client_plugin', |
135 'build_glibc': 0, | 146 'build_glibc': 0, |
136 'build_newlib': 0, | 147 'build_newlib': 0, |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
227 '-lppapi_cpp', | 238 '-lppapi_cpp', |
228 '-lpthread', | 239 '-lpthread', |
229 '-lnacl_io', | 240 '-lnacl_io', |
230 ], | 241 ], |
231 'sources': [ | 242 'sources': [ |
232 'client/plugin/pepper_module.cc', | 243 'client/plugin/pepper_module.cc', |
233 ], | 244 ], |
234 }, # end of target 'remoting_client_plugin_nacl' | 245 }, # end of target 'remoting_client_plugin_nacl' |
235 ] | 246 ] |
236 } | 247 } |
OLD | NEW |