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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
139 | 139 |
140 { | 140 { |
141 'target_name': 'remoting_client_plugin_nacl', | 141 'target_name': 'remoting_client_plugin_nacl', |
142 'type': 'none', | 142 'type': 'none', |
143 'variables': { | 143 'variables': { |
144 'nacl_untrusted_build': 1, | 144 'nacl_untrusted_build': 1, |
145 'nexe_target': 'remoting_client_plugin', | 145 'nexe_target': 'remoting_client_plugin', |
146 'build_glibc': 0, | 146 'build_glibc': 0, |
147 'build_newlib': 0, | 147 'build_newlib': 0, |
148 'build_pnacl_newlib': 1, | 148 'build_pnacl_newlib': 1, |
149 'enable_x86_32': 0, | |
150 'enable_x86_64': 0, | |
jvoung (off chromium)
2014/07/31 17:05:25
Is this because the nexe is not needed, or is it r
Sergey Ulanov
2014/08/12 18:34:05
NEXE isn't needed on any platform, including ARM.
| |
151 'extra_deps_pnacl_newlib': [ | 149 'extra_deps_pnacl_newlib': [ |
152 '>(tc_lib_dir_pnacl_newlib)/libbase_i18n_nacl.a', | 150 '>(tc_lib_dir_pnacl_newlib)/libbase_i18n_nacl.a', |
153 '>(tc_lib_dir_pnacl_newlib)/libbase_nacl.a', | 151 '>(tc_lib_dir_pnacl_newlib)/libbase_nacl.a', |
154 '>(tc_lib_dir_pnacl_newlib)/libexpat_nacl.a', | 152 '>(tc_lib_dir_pnacl_newlib)/libexpat_nacl.a', |
155 '>(tc_lib_dir_pnacl_newlib)/libicudata_nacl.a', | 153 '>(tc_lib_dir_pnacl_newlib)/libicudata_nacl.a', |
156 '>(tc_lib_dir_pnacl_newlib)/libcrypto_nacl.a', | 154 '>(tc_lib_dir_pnacl_newlib)/libcrypto_nacl.a', |
157 '>(tc_lib_dir_pnacl_newlib)/libicui18n_nacl.a', | 155 '>(tc_lib_dir_pnacl_newlib)/libicui18n_nacl.a', |
158 '>(tc_lib_dir_pnacl_newlib)/libicuuc_nacl.a', | 156 '>(tc_lib_dir_pnacl_newlib)/libicuuc_nacl.a', |
159 '>(tc_lib_dir_pnacl_newlib)/libjingle_nacl.a', | 157 '>(tc_lib_dir_pnacl_newlib)/libjingle_nacl.a', |
160 '>(tc_lib_dir_pnacl_newlib)/libjingle_p2p_constants_nacl.a', | 158 '>(tc_lib_dir_pnacl_newlib)/libjingle_p2p_constants_nacl.a', |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
238 '-lppapi_cpp', | 236 '-lppapi_cpp', |
239 '-lpthread', | 237 '-lpthread', |
240 '-lnacl_io', | 238 '-lnacl_io', |
241 ], | 239 ], |
242 'sources': [ | 240 'sources': [ |
243 'client/plugin/pepper_module.cc', | 241 'client/plugin/pepper_module.cc', |
244 ], | 242 ], |
245 }, # end of target 'remoting_client_plugin_nacl' | 243 }, # end of target 'remoting_client_plugin_nacl' |
246 ] | 244 ] |
247 } | 245 } |
OLD | NEW |