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

Unified Diff: webrtc/build/common.gypi

Issue 1610243002: Move talk/app/webrtc to webrtc/api (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Updated location for peerconnection_unittests.isolate Created 4 years, 11 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: webrtc/build/common.gypi
diff --git a/webrtc/build/common.gypi b/webrtc/build/common.gypi
index d483f24a53d952749fb0b2a9965471af046ee555..1dbc53f82f3e2c50799a5da460ee352de4e9f1b8 100644
--- a/webrtc/build/common.gypi
+++ b/webrtc/build/common.gypi
@@ -133,6 +133,9 @@
# Determines whether NEON code will be built.
'build_with_neon%': 0,
+ # Disable this to skip building source requiring GTK.
+ 'use_gtk%': 1,
+
# Enable this to use HW H.264 encoder/decoder on iOS/Mac PeerConnections.
# Enabling this may break interop with Android clients that support H264.
'use_objc_h264%': 0,
@@ -169,6 +172,9 @@
'include_tests%': 1,
'restrict_webrtc_logging%': 0,
}],
+ ['OS=="android" or OS=="linux"', {
+ 'java_home%': '<!(python -c "import os; dir=os.getenv(\'JAVA_HOME\', \'/usr/lib/jvm/java-7-openjdk-amd64\'); assert os.path.exists(os.path.join(dir, \'include/jni.h\')), \'Point \\$JAVA_HOME or the java_home gyp variable to a directory containing include/jni.h!\'; print dir")',
+ }],
['OS=="ios"', {
'build_libjpeg%': 0,
}],

Powered by Google App Engine
This is Rietveld 408576698