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 |
11 'variables': { | 11 'variables': { |
12 'protoc': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFIX)', | 12 'protoc': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFIX)', |
13 'proto_out_base': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', | 13 'proto_out_base': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', |
14 'proto_out_dir': '<(proto_out_base)/remoting/proto', | 14 'proto_out_dir': '<(proto_out_base)/remoting/proto', |
15 'use_nss_certs': 0, | 15 'use_nss_certs': 0, |
16 'use_nss_verifier': 0, | |
Sergey Ulanov
2016/03/18 21:34:37
This parameter is not used in this file and can be
svaldez
2016/03/21 13:57:40
Done.
| |
16 'nacl_untrusted_build': 1, | 17 'nacl_untrusted_build': 1, |
17 'chromium_code': 1, | 18 'chromium_code': 1, |
18 }, | 19 }, |
19 | 20 |
20 'targets': [ | 21 'targets': [ |
21 { | 22 { |
22 'target_name': 'remoting_webrtc_nacl', | 23 'target_name': 'remoting_webrtc_nacl', |
23 'type': 'none', | 24 'type': 'none', |
24 'variables': { | 25 'variables': { |
25 'nacl_untrusted_build': 1, | 26 'nacl_untrusted_build': 1, |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
228 '-lppapi_cpp', | 229 '-lppapi_cpp', |
229 '-lpthread', | 230 '-lpthread', |
230 '-lnacl_io', | 231 '-lnacl_io', |
231 ], | 232 ], |
232 'sources': [ | 233 'sources': [ |
233 'client/plugin/pepper_module.cc', | 234 'client/plugin/pepper_module.cc', |
234 ], | 235 ], |
235 }, # end of target 'remoting_client_plugin_nacl' | 236 }, # end of target 'remoting_client_plugin_nacl' |
236 ] | 237 ] |
237 } | 238 } |
OLD | NEW |