Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1287)

Unified Diff: third_party/libjingle/libjingle_nacl.gyp

Issue 173013003: Compile libjingle for PNaCl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/libjingle/libjingle_nacl.gyp
diff --git a/third_party/libjingle/libjingle_nacl.gyp b/third_party/libjingle/libjingle_nacl.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..403e89fb76e2f2bbc2111f37d9cc24a8633b2b3c
--- /dev/null
+++ b/third_party/libjingle/libjingle_nacl.gyp
@@ -0,0 +1,134 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'variables': {
+ 'libjingle_source%': "source",
+ },
+ 'includes': [
+ '../../native_client/build/untrusted.gypi',
+ ],
+ 'targets': [
+ {
+ 'target_name': 'libjingle_nacl',
Ronghua Wu (Left Chromium) 2014/02/20 19:13:30 can nacl just be treated as another platform aside
Sergey Ulanov 2014/02/21 00:48:00 No, unfortunately it doesn't work this way. I thin
+ 'type': 'none',
+ 'variables': {
+ 'nlib_target': 'libjingle_nacl.a',
+ 'build_glibc': 0,
+ 'build_newlib': 1,
+ 'build_pnacl_newlib': 1,
+ },
+ 'dependencies': [
+ '<(DEPTH)/native_client/tools.gyp:prep_toolchain',
+ '<(DEPTH)/native_client_sdk/native_client_sdk_untrusted.gyp:nacl_io_untrusted',
+ '<(DEPTH)/third_party/expat/expat_nacl.gyp:expat_nacl',
+ '<(DEPTH)/third_party/openssl/openssl_nacl.gyp:openssl_nacl',
+ 'libjingle_p2p_constants_nacl',
+ ],
+ 'defines': [
+ 'EXPAT_RELATIVE_PATH',
+ 'FEATURE_ENABLE_SSL',
+ 'GTEST_RELATIVE_PATH',
+ 'HAVE_OPENSSL_SSL_H',
+ 'NATIVE_CLIENT',
+ 'NO_MAIN_THREAD_WRAPPING',
+ 'NO_SOUND_SYSTEM',
+ 'POSIX',
+ 'SRTP_RELATIVE_PATH',
+ 'SSL_USE_OPENSSL',
+ 'USE_WEBRTC_DEV_BRANCH',
+ 'timezone=_timezone',
+ ],
+ 'configurations': {
+ 'Debug': {
+ 'defines': [
+ # TODO(sergeyu): Fix libjingle to use NDEBUG instead of
+ # _DEBUG and remove this define. See below as well.
+ '_DEBUG',
+ ],
+ }
+ },
+ 'include_dirs': [
+ '../testing/gtest/include',
+ './<(libjingle_source)',
+ ],
+ 'includes': ['libjingle_srcs.gypi', ],
+ 'sources/': [
+ ['exclude', '/win[a-z0-9]+\\.(h|cc)$'],
+ ['exclude', '/schanneladapter\\.(h|cc)$'],
+ ['exclude', '/mac[a-z0-9]+\\.(h|cc)$'],
+ ['exclude', '/scoped_autorelease_pool\\.(h|mm)$'],
+ ],
+ 'sources!': [
+ '<(libjingle_source)/talk/base/cpumonitor.cc',
+ '<(libjingle_source)/talk/base/cpumonitor.h',
+ '<(libjingle_source)/talk/base/ifaddrs-android.cc',
+ '<(libjingle_source)/talk/base/ifaddrs-android.h',
+ '<(libjingle_source)/talk/base/json.cc',
+ '<(libjingle_source)/talk/base/json.h',
+ '<(libjingle_source)/talk/base/latebindingsymboltable.cc',
+ '<(libjingle_source)/talk/base/latebindingsymboltable.h',
+ '<(libjingle_source)/talk/base/linux.cc',
+ '<(libjingle_source)/talk/base/linux.h',
+ '<(libjingle_source)/talk/base/systeminfo.cc',
+ '<(libjingle_source)/talk/base/systeminfo.h',
+
+ # Compiled as part of libjingle_p2p_constants_nacl.
+ '<(libjingle_source)/talk/p2p/base/constants.cc',
+ '<(libjingle_source)/talk/p2p/base/constants.h',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ './overrides',
+ './<(libjingle_source)',
+ '../../testing/gtest/include',
+ '../../third_party',
+ '../../third_party/webrtc',
+ ],
+ 'defines': [
+ 'EXPAT_RELATIVE_PATH',
+ 'FEATURE_ENABLE_SSL',
+ 'GTEST_RELATIVE_PATH',
+ 'NATIVE_CLIENT=1',
+ 'NO_MAIN_THREAD_WRAPPING',
+ 'NO_SOUND_SYSTEM',
+ 'POSIX',
+ 'SRTP_RELATIVE_PATH',
+ 'SSL_USE_OPENSSL',
+ 'USE_WEBRTC_DEV_BRANCH',
+ ],
+ },
+ 'export_dependent_settings': [
+ '<(DEPTH)/native_client_sdk/native_client_sdk_untrusted.gyp:nacl_io_untrusted',
+ ],
+ }, # end of target 'libjingle_nacl'
+
+ {
+ 'target_name': 'libjingle_p2p_constants_nacl',
+ 'type': 'none',
+ 'variables': {
+ 'nlib_target': 'libjingle_p2p_constants_nacl.a',
+ 'build_glibc': 0,
+ 'build_newlib': 1,
+ 'build_pnacl_newlib': 1,
+ },
+ 'configurations': {
+ 'Debug': {
+ 'defines': [
+ # TODO(sergeyu): Fix libjingle to use NDEBUG instead of
+ # _DEBUG and remove this define. See below as well.
+ '_DEBUG',
+ ],
+ }
+ },
+ 'include_dirs': [
+ './<(libjingle_source)',
+ ],
+ 'sources': [
+ '<(libjingle_source)/talk/p2p/base/constants.cc',
+ '<(libjingle_source)/talk/p2p/base/constants.h',
+ ],
+ }, # end of target 'libjingle_p2p_constants_nacl'
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698