| Index: build/android/pylib/instrumentation/instrumentation_test_instance.py
|
| diff --git a/build/android/pylib/instrumentation/instrumentation_test_instance.py b/build/android/pylib/instrumentation/instrumentation_test_instance.py
|
| index 278ffb2f7212efa6c25b77ebacf39a202db183d6..95a5fe34129385298f0824f0f117143491a6fc65 100644
|
| --- a/build/android/pylib/instrumentation/instrumentation_test_instance.py
|
| +++ b/build/android/pylib/instrumentation/instrumentation_test_instance.py
|
| @@ -33,9 +33,6 @@ _DEFAULT_ANNOTATIONS = [
|
| 'EnormousTest', 'IntegrationTest']
|
| _EXCLUDE_UNLESS_REQUESTED_ANNOTATIONS = [
|
| 'DisabledTest', 'FlakyTest']
|
| -_EXTRA_ENABLE_HTTP_SERVER = (
|
| - 'org.chromium.chrome.test.ChromeInstrumentationTestRunner.'
|
| - + 'EnableTestHttpServer')
|
| _EXTRA_DRIVER_TEST_LIST = (
|
| 'org.chromium.test.driver.OnDeviceInstrumentationDriver.TestList')
|
| _EXTRA_DRIVER_TEST_LIST_FILE = (
|
| @@ -585,12 +582,6 @@ class InstrumentationTestInstance(test_instance.TestInstance):
|
| new_tests.append(parameterized_t)
|
| return tests + new_tests
|
|
|
| - @staticmethod
|
| - def GetHttpServerEnvironmentVars():
|
| - return {
|
| - _EXTRA_ENABLE_HTTP_SERVER: None,
|
| - }
|
| -
|
| def GetDriverEnvironmentVars(
|
| self, test_list=None, test_list_file_path=None):
|
| env = {
|
|
|