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}
This commit is contained in:
sakal 2017-01-13 05:56:16 -08:00 committed by Commit bot
parent 61f31ee376
commit c5da08fc12

View File

@ -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