/external/chromium-trace/catapult/telemetry/telemetry/testing/ |
run_chromeos_tests.py | 9 def RunChromeOSTests(browser_type, tests_to_run): 12 |browser_type|: string specifies which browser type to use. 21 logging.info('Running unit tests in %s with browser_type "%s".' % 22 (top_level_dir, browser_type)) 24 ret = _RunOneSetOfTests(browser_type, top_level_dir, unit_tests, stream) 30 def _RunOneSetOfTests(browser_type, top_level_dir, tests, stream): 31 args = ['--browser', browser_type,
|
run_tests_unittest.py | 19 def __init__(self, browser_type, os_name, os_version_name, 21 self.browser_type = browser_type 40 def _GetEnabledTests(self, browser_type, os_name, os_version_name, 49 browser_type, os_name, os_version_name, supports_tab_control)
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/browser/ |
browser_finder.py | 46 if options.browser_type == 'exact' and options.browser_executable == None: 49 if options.browser_type != 'exact' and options.browser_executable != None: 53 if options.browser_type == 'cros-chrome' and options.cros_remote == None: 55 'browser_type=cros-chrome requires cros_remote be set.') 56 if (options.browser_type != 'cros-chrome' and 57 options.browser_type != 'cros-chrome-guest' and 67 if(options.browser_type and options.browser_type != 'any' and 68 options.browser_type not in finder.FindAllBrowserTypes(options)): 76 if options.browser_type == None [all...] |
extension_to_load.py | 16 def __init__(self, path, browser_type, is_component=False): 29 # browser_type argument to determine how we should encode 32 and not (browser_type.startswith('android') 33 or browser_type.startswith('cros')))
|
possible_browser.py | 14 def __init__(self, browser_type, target_os, supports_tab_control): 15 super(PossibleBrowser, self).__init__(app_type=browser_type, 24 def browser_type(self): member in class:PossibleBrowser
|
browser_options.py | 29 def __init__(self, browser_type=None): 32 self.browser_type = browser_type 67 dest='browser_type', 170 if self.browser_executable and not self.browser_type: 171 self.browser_type = 'exact' 172 if self.browser_type == 'list': 184 [browser.browser_type for browser in possible_browsers]) 193 for browser_type in browser_types[device_name]: 194 print ' ', browser_type [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
netlog_profiler.py | 20 def is_supported(cls, browser_type): 21 return not browser_type.startswith('cros') 24 def CustomizeBrowserOptions(cls, browser_type, options): 25 if browser_type.startswith('android'):
|
v8_profiler.py | 21 def is_supported(cls, browser_type): 22 return not browser_type.startswith('cros') 25 def CustomizeBrowserOptions(cls, browser_type, options): 26 if browser_type.startswith('android'):
|
android_screen_recorder_profiler.py | 35 def is_supported(cls, browser_type): 36 if browser_type == 'any': 38 return browser_type.startswith('android')
|
iprofiler_profiler.py | 85 def is_supported(cls, browser_type): 88 if browser_type == 'any': 90 return (not browser_type.startswith('android') and 91 not browser_type.startswith('cros'))
|
sample_profiler.py | 78 def is_supported(cls, browser_type): 81 if browser_type == 'any': 83 return (not browser_type.startswith('android') and 84 not browser_type.startswith('cros'))
|
android_systrace_profiler.py | 56 def is_supported(cls, browser_type): 57 if browser_type == 'any': 59 return browser_type.startswith('android')
|
android_traceview_profiler.py | 49 def is_supported(cls, browser_type): 50 if browser_type == 'any': 52 return browser_type.startswith('android')
|
oomkiller_profiler.py | 56 def is_supported(cls, browser_type): 57 if browser_type == 'any': 59 return browser_type.startswith('android')
|
profiler_finder.py | 28 if p.is_supported(browser_type='any')])
|
/external/autotest/client/site_tests/telemetry_UnitTests/ |
telemetry_UnitTests.py | 16 def run_once(self, browser_type, unit_tests, perf_tests): 19 @param browser_type: The string type of browser to use, e.g., 'system'. 33 error_str = run_chromeos_tests.RunChromeOSTests(browser_type,
|
control.guest | 19 job.run_test('telemetry_UnitTests', browser_type='system-guest', tag='guest',
|
control.perf | 19 job.run_test('telemetry_UnitTests', browser_type='system', tag='perf',
|
control.user | 19 job.run_test('telemetry_UnitTests', browser_type='system', tag='user',
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/ |
ios_browser_finder.py | 29 def __init__(self, browser_type, _): 30 super(PossibleIOSBrowser, self).__init__(browser_type, 'ios', True) 78 options.browser_type = 'ios-chrome' 112 for browser_type in browser_types: 113 browsers.append(PossibleIOSBrowser(IOS_BROWSERS[browser_type],
|
desktop_browser_finder.py | 26 def __init__(self, browser_type, finder_options, executable, flash_path, 30 browser_type, target_os, not is_content_shell) 31 assert browser_type in FindAllBrowserTypes(finder_options), ( 33 browser_type) 42 self.browser_type, self._local_executable, self._flash_path) 189 def AddIfFound(browser_type, build_path, app_name, content_shell): 193 browser_type, finder_options, app, flash_path, 200 # TODO(agrieve): Extract browser_type from args.gn's is_debug. 201 browser_type = os.path.basename(build_path).lower() 203 AddIfFound(browser_type, build_path, chromium_app_name, False [all...] |
android_browser_finder_unittest.py | 67 set([b.browser_type for b in possible_browsers])) 80 set([b.browser_type for b in possible_browsers])) 97 set([b.browser_type for b in possible_browsers])) 126 self.assertNotIn('exact', [b.browser_type for b in possible_browsers]) 133 self.assertNotIn('reference', [b.browser_type for b in possible_browsers]) 143 self.assertNotIn('reference', [b.browser_type for b in possible_browsers]) 151 self.assertNotIn('reference', [b.browser_type for b in possible_browsers])
|
cros_browser_finder.py | 21 def __init__(self, browser_type, finder_options, cros_platform, is_guest): 22 super(PossibleCrOSBrowser, self).__init__(browser_type, 'cros', True) 23 assert browser_type in FindAllBrowserTypes(finder_options), ( 25 browser_type) 32 return 'PossibleCrOSBrowser(browser_type=%s)' % self.browser_type 66 if b.browser_type == 'system':
|
cros_test_case.py | 21 self._is_guest = options.browser_type == 'cros-chrome-guest' 39 browser_type=options.browser_type,
|
ios_browser_finder_unittest.py | 23 self.assertEqual('ios-chrome', browser.browser_type)
|