| 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 'variables': { | 6 'variables': { |
| 7 'libjingle_source': "source", | 7 'libjingle_source': "source", |
| 8 'webrtc_base': "../webrtc/base", | 8 'webrtc_base': "../webrtc/base", |
| 9 'webrtc_xmllite': "../webrtc/libjingle/xmllite", | 9 'webrtc_xmllite': "../webrtc/libjingle/xmllite", |
| 10 'webrtc_p2p': "../webrtc/p2p", | 10 'webrtc_p2p': "../webrtc/p2p", |
| 11 }, | 11 }, |
| 12 'includes': [ | 12 'includes': [ |
| 13 '../../native_client/build/untrusted.gypi', | 13 '../../native_client/build/untrusted.gypi', |
| 14 ], | 14 ], |
| 15 'targets': [ | 15 'targets': [ |
| 16 { | 16 { |
| 17 'target_name': 'libjingle_nacl', | 17 'target_name': 'libjingle_nacl', |
| 18 'type': 'none', | 18 'type': 'none', |
| 19 'variables': { | 19 'variables': { |
| 20 'nlib_target': 'libjingle_nacl.a', | 20 'nlib_target': 'libjingle_nacl.a', |
| 21 'nacl_untrusted_build': 1, | 21 'nacl_untrusted_build': 1, |
| 22 'build_glibc': 0, | 22 'build_glibc': 0, |
| 23 'build_newlib': 0, | 23 'build_newlib': 0, |
| 24 'build_pnacl_newlib': 1, | 24 'build_pnacl_newlib': 1, |
| 25 'use_openssl': 1, | 25 'use_openssl': 1, |
| 26 }, | 26 }, |
| 27 'dependencies': [ | 27 'dependencies': [ |
| 28 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | |
| 29 '<(DEPTH)/native_client_sdk/native_client_sdk_untrusted.gyp:nacl_io_untr
usted', | 28 '<(DEPTH)/native_client_sdk/native_client_sdk_untrusted.gyp:nacl_io_untr
usted', |
| 30 '<(DEPTH)/third_party/expat/expat_nacl.gyp:expat_nacl', | 29 '<(DEPTH)/third_party/expat/expat_nacl.gyp:expat_nacl', |
| 31 '<(DEPTH)/third_party/boringssl/boringssl_nacl.gyp:boringssl_nacl', | 30 '<(DEPTH)/third_party/boringssl/boringssl_nacl.gyp:boringssl_nacl', |
| 32 'libjingle_p2p_constants_nacl', | 31 'libjingle_p2p_constants_nacl', |
| 33 ], | 32 ], |
| 34 'defines': [ | 33 'defines': [ |
| 35 'EXPAT_RELATIVE_PATH', | 34 'EXPAT_RELATIVE_PATH', |
| 36 'FEATURE_ENABLE_SSL', | 35 'FEATURE_ENABLE_SSL', |
| 37 'GTEST_RELATIVE_PATH', | 36 'GTEST_RELATIVE_PATH', |
| 38 'HAVE_OPENSSL_SSL_H', | 37 'HAVE_OPENSSL_SSL_H', |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 './<(libjingle_source)', | 320 './<(libjingle_source)', |
| 322 '../' | 321 '../' |
| 323 ], | 322 ], |
| 324 'sources': [ | 323 'sources': [ |
| 325 '<(webrtc_p2p)/base/constants.cc', | 324 '<(webrtc_p2p)/base/constants.cc', |
| 326 '<(webrtc_p2p)/base/constants.h', | 325 '<(webrtc_p2p)/base/constants.h', |
| 327 ], | 326 ], |
| 328 }, # end of target 'libjingle_p2p_constants_nacl' | 327 }, # end of target 'libjingle_p2p_constants_nacl' |
| 329 ], | 328 ], |
| 330 } | 329 } |
| OLD | NEW |