summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkjellander@webrtc.org <kjellander@webrtc.org>2014-09-02 08:40:39 +0000
committerkjellander@webrtc.org <kjellander@webrtc.org>2014-09-02 08:40:39 +0000
commit606c1cd636e8fb26a18528876b98b46f101ebaf5 (patch)
tree1453f97aff80a432ec0b1bb0d526b56745a5760f
parent02b30eb3e27bd4db9caa02cdf4001d8f42417533 (diff)
downloadwebrtc-606c1cd636e8fb26a18528876b98b46f101ebaf5.tar.gz
Remove build_with_chromium==1 conditions for Android
Most of these changes were done in r7014, but a few targets were missed. This should make these tests run better (but they might still be failing due to webrtc:3764). BUG=webrtc:3741 TESTED=Local compilation using: GYP_DEFINES="OS=android component=static_library fastbuild=1 target_arch=arm" webrtc/build/gyp_webrtc ninja -C out/Debug R=phoglund@webrtc.org Review URL: https://webrtc-codereview.appspot.com/24369004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@7019 4adac7df-926f-26a2-2b94-8c16560cd09d
-rw-r--r--modules/modules.gyp4
-rw-r--r--modules/video_capture/video_capture.gypi4
-rw-r--r--test/test.gyp4
-rw-r--r--webrtc_tests.gypi4
4 files changed, 4 insertions, 12 deletions
diff --git a/modules/modules.gyp b/modules/modules.gyp
index 426ab082..b302bdbb 100644
--- a/modules/modules.gyp
+++ b/modules/modules.gyp
@@ -295,9 +295,7 @@
'<(DEPTH)/third_party/libvpx/libvpx.gyp:libvpx',
],
}],
- # TODO(henrike): remove build_with_chromium==1 when the bots are
- # using Chromium's buildbots.
- ['build_with_chromium==1 and OS=="android"', {
+ ['OS=="android"', {
'dependencies': [
'<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
],
diff --git a/modules/video_capture/video_capture.gypi b/modules/video_capture/video_capture.gypi
index b32e30ce..1a26eef3 100644
--- a/modules/video_capture/video_capture.gypi
+++ b/modules/video_capture/video_capture.gypi
@@ -203,9 +203,7 @@
'-lX11',
],
}],
- # TODO(henrike): remove build_with_chromium==1 when the bots are
- # using Chromium's buildbots.
- ['build_with_chromium==1 and OS=="android"', {
+ ['OS=="android"', {
'dependencies': [
'<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
],
diff --git a/test/test.gyp b/test/test.gyp
index 0514e373..ef57d5de 100644
--- a/test/test.gyp
+++ b/test/test.gyp
@@ -115,9 +115,7 @@
'testsupport/trace_to_stderr.h',
],
'conditions': [
- # TODO(henrike): remove build_with_chromium==1 when the bots are using
- # Chromium's buildbots.
- ['build_with_chromium==1 and OS=="android"', {
+ ['OS=="android"', {
'dependencies': [
'<(DEPTH)/base/base.gyp:base',
],
diff --git a/webrtc_tests.gypi b/webrtc_tests.gypi
index c8c0679c..ab714290 100644
--- a/webrtc_tests.gypi
+++ b/webrtc_tests.gypi
@@ -88,9 +88,7 @@
'webrtc',
],
'conditions': [
- # TODO(henrike): remove build_with_chromium==1 when the bots are
- # using Chromium's buildbots.
- ['build_with_chromium==1 and OS=="android"', {
+ ['OS=="android"', {
'dependencies': [
'<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
],