From c5da08fc12faa862fbf0c34181332c32dae458a3 Mon Sep 17 00:00:00 2001 From: sakal Date: Fri, 13 Jan 2017 05:56:16 -0800 Subject: [PATCH] Drop dependency to Chromium in WebRtcJniBootTest. The dependency breaks a build downstream. BUG=None Review-Url: https://codereview.webrtc.org/2630713002 Cr-Commit-Position: refs/heads/master@{#16047} --- .../src/org/webrtc/WebRtcJniBootTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webrtc/sdk/android/instrumentationtests/src/org/webrtc/WebRtcJniBootTest.java b/webrtc/sdk/android/instrumentationtests/src/org/webrtc/WebRtcJniBootTest.java index c3b5b45798..adc4e1ebd5 100644 --- a/webrtc/sdk/android/instrumentationtests/src/org/webrtc/WebRtcJniBootTest.java +++ b/webrtc/sdk/android/instrumentationtests/src/org/webrtc/WebRtcJniBootTest.java @@ -12,7 +12,7 @@ package org.appspot.apprtc.test; import android.support.test.InstrumentationRegistry; import android.support.test.filters.SmallTest; -import org.chromium.base.test.BaseJUnit4ClassRunner; +import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import org.webrtc.PeerConnectionFactory; @@ -20,7 +20,7 @@ import org.webrtc.PeerConnectionFactory; // This test is intended to run on ARM and catch LoadLibrary errors when we load the WebRTC // JNI. It can't really be setting up calls since ARM emulators are too slow, but instantiating // a peer connection isn't timing-sensitive, so we can at least do that. -@RunWith(BaseJUnit4ClassRunner.class) +@RunWith(AndroidJUnit4.class) public class WebRtcJniBootTest { @Test @SmallTest