mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 02:39:05 +01:00
This also changes the way bridges are used. Instead of using the torrc config file, bridges are now activated via Tor's control port.
24 lines
547 B
Java
24 lines
547 B
Java
package org.briarproject.bramble;
|
|
|
|
import org.briarproject.bramble.event.EventModule;
|
|
import org.briarproject.bramble.plugin.PluginModule;
|
|
import org.briarproject.bramble.plugin.tor.BridgeTest;
|
|
import org.briarproject.bramble.system.SystemModule;
|
|
|
|
import javax.inject.Singleton;
|
|
|
|
import dagger.Component;
|
|
|
|
@Singleton
|
|
@Component(modules = {
|
|
BrambleAndroidModule.class,
|
|
PluginModule.class, // needed for BackoffFactory
|
|
EventModule.class,
|
|
SystemModule.class,
|
|
})
|
|
public interface IntegrationTestComponent {
|
|
|
|
void inject(BridgeTest init);
|
|
|
|
}
|