diff --git a/webrtc/modules/modules.gyp b/webrtc/modules/modules.gyp index 426ab082e8..b302bdbb90 100644 --- a/webrtc/modules/modules.gyp +++ b/webrtc/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/webrtc/modules/video_capture/video_capture.gypi b/webrtc/modules/video_capture/video_capture.gypi index b32e30cec8..1a26eef3d7 100644 --- a/webrtc/modules/video_capture/video_capture.gypi +++ b/webrtc/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/webrtc/test/test.gyp b/webrtc/test/test.gyp index 0514e373c2..ef57d5de5e 100644 --- a/webrtc/test/test.gyp +++ b/webrtc/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/webrtc_tests.gypi b/webrtc/webrtc_tests.gypi index c8c0679c5e..ab71429089 100644 --- a/webrtc/webrtc_tests.gypi +++ b/webrtc/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', ],