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

Unified Diff: jingle/jingle.gyp

Issue 11570014: Build jingle targets when webrtc is enabled. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/jingle.gyp
===================================================================
--- jingle/jingle.gyp (revision 172934)
+++ jingle/jingle.gyp (working copy)
@@ -7,7 +7,7 @@
'chromium_code': 1,
}, # variables
'conditions': [
- ['OS != "ios" and OS != "android"', {
+ ['enable_webrtc==1 or (OS != "ios" and OS != "android")', {
'targets': [
# A library of various utils for integration with libjingle.
{
@@ -214,9 +214,9 @@
],
},
],
- }, { # OS == "ios" or OS == "android"
+ }, { # enable_webrtc != 1 and (OS == "ios" or OS == "android")
'targets': [
- # Stub targets as iOS/Android don't use libjingle.
+ # Stub targets as iOS/Android don't use libjingle when webrtc is disabled.
{
'target_name': 'jingle_glue',
'type': 'none',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698