Searched refs:chrome_path (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium_org/remoting/tools/
H A Drun_webapp_unittest.py18 chrome_path = ''
20 chrome_path = (
23 chrome_path = '/usr/bin/google-chrome'
27 return chrome_path
48 def BuildCommandLine(chrome_path, opt_module, opt_coverage):
51 command.append('"' + chrome_path + '"')
63 chrome_path = GetChromePath()
68 default=chrome_path)
81 if not os.path.exists(args.chrome_path):
83 print 'Please use the flag --chrome_path
[all...]
/external/chromium_org/chrome/test/mini_installer/
H A Dquit_chrome.py63 def QuitChrome(chrome_path):
68 chrome_path: The path to chrome.exe.
70 if not CloseWindows(chrome_path):
73 'Killing all processes belonging to %s\n' % chrome_path)
74 KillNamedProcess(chrome_path)
78 usage = 'usage: %prog chrome_path'
83 chrome_path = args[0]
85 QuitChrome(chrome_path)
H A Dlaunch_chrome.py38 usage = 'usage: %prog chrome_path'
43 chrome_path = args[0]
47 _, _, process_id, _ = win32process.CreateProcess(None, chrome_path, None,
/external/chromium_org/native_client_sdk/src/tools/
H A Dgetos.py114 chrome_path = os.environ.get('CHROME_PATH')
115 if chrome_path:
116 if not os.path.exists(chrome_path):
117 raise Error('Invalid CHROME_PATH: %s' % chrome_path)
118 return os.path.realpath(chrome_path)
122 chrome_path = oshelpers.FindExeInPath(basename)
123 if chrome_path:
124 return os.path.realpath(chrome_path)
127 chrome_path = CHROME_DEFAULT_PATH[platform]
128 if os.path.exists(chrome_path)
[all...]
/external/chromium_org/chrome/installer/launcher_support/
H A Dchrome_launcher_support.cc110 base::FilePath chrome_path; local
111 if (chrome_path.empty())
112 chrome_path = GetChromePathForInstallationLevel(SYSTEM_LEVEL_INSTALLATION);
113 if (chrome_path.empty())
114 chrome_path = GetChromePathForInstallationLevel(USER_LEVEL_INSTALLATION);
115 return chrome_path;
/external/chromium_org/chrome/installer/util/
H A Dfirewall_manager_win.h26 const base::FilePath& chrome_path);
H A Dfirewall_manager_win.cc104 const base::FilePath& chrome_path) {
108 if (manager->Init(dist->GetDisplayName(), chrome_path))
114 if (legacy_manager->Init(dist->GetDisplayName(), chrome_path))
102 Create( BrowserDistribution* dist, const base::FilePath& chrome_path) argument
/external/chromium_org/tools/ipc_fuzzer/
H A Dplay_testcase.py46 chrome_path = os.path.join(build_dir, chrome_binary)
47 if not os.path.exists(chrome_path):
48 print 'chrome executable not found at ', chrome_path
67 chrome_path,
/external/chromium_org/chrome/test/nacl_test_injection/
H A Dfind_chrome.py93 chrome_path = FindChrome(src_dir, options.config, options.verbose)
94 if not chrome_path:
99 print chrome_path
/external/chromium_org/third_party/skia/
H A Dgyp_skia99 chrome_path = os.getenv('CHROME_PATH') variable
100 os.chdir(chrome_path)
101 sys.path.append(os.path.join(chrome_path, 'build'))
102 sys.path.append(os.path.join(chrome_path, 'tools'))
/external/skia/
H A Dgyp_skia99 chrome_path = os.getenv('CHROME_PATH') variable
100 os.chdir(chrome_path)
101 sys.path.append(os.path.join(chrome_path, 'build'))
102 sys.path.append(os.path.join(chrome_path, 'tools'))
/external/chromium_org/tools/ipc_fuzzer/mutate/
H A Dipc_fuzzer_gen.py47 chrome_path = os.environ[app_path_key]
48 out_dir = os.path.dirname(chrome_path)
H A Dipc_fuzzer_mut.py55 chrome_path = os.environ[app_path_key]
56 out_dir = os.path.dirname(chrome_path)
/external/chromium_org/chrome/test/base/
H A Din_process_browser_test.cc131 base::FilePath chrome_path; local
132 CHECK(PathService::Get(base::FILE_EXE, &chrome_path));
133 chrome_path = chrome_path.DirName();
134 chrome_path = chrome_path.Append(chrome::kBrowserProcessExecutablePath);
135 CHECK(PathService::Override(base::FILE_EXE, chrome_path));
/external/chromium_org/cloud_print/virtual_driver/win/port_monitor/
H A Dport_monitor_unittest.cc100 base::FilePath chrome_path = cloud_print::GetChromeExePath(); local
101 EXPECT_FALSE(chrome_path.empty());
103 chrome_path.value().rfind(kAlternateChromeExePath) != std::string::npos);
104 EXPECT_TRUE(base::PathExists(chrome_path));
106 chrome_path = cloud_print::GetChromeExePath();
108 EXPECT_TRUE(chrome_path.empty() ||
109 chrome_path.value().rfind(kChromeExePath) == std::string::npos);
/external/chromium_org/chrome/browser/ui/views/apps/
H A Dchrome_native_app_window_views_win.cc173 base::FilePath chrome_path;
174 if (!PathService::Get(base::FILE_EXE, &chrome_path))
188 link->set_icon(chrome_path.value(),
/external/chromium_org/cloud_print/service/win/
H A Dsetup_listener.cc22 const char SetupListener::kChromePathJsonValueName[] = "chrome_path";
71 base::string16 chrome_path; local
72 dictionary->GetString(kChromePathJsonValueName, &chrome_path);
73 chrome_path_ = base::FilePath(chrome_path);
H A Dchrome_launcher.cc201 base::FilePath chrome_path = chrome_launcher_support::GetAnyChromePath(); local
203 if (!chrome_path.empty()) {
204 CommandLine cmd(chrome_path);
261 base::FilePath chrome_path = chrome_launcher_support::GetAnyChromePath(); local
262 if (chrome_path.empty()) {
281 CommandLine cmd(chrome_path);
H A Dsetup_listener.h46 const base::FilePath& chrome_path() const { function in class:SetupListener
/external/chromium_org/chrome/test/chromedriver/test/
H A Drun_all_tests.py207 temp_dir, chrome_path = DownloadChrome(version_name, version[1],
209 if not chrome_path:
214 chrome=chrome_path,
217 code2 = RunJavaTests(chromedriver, chrome=chrome_path,
H A Drun_java_tests.py65 chromedriver_path, chrome_path, log_path, android_package_key,
74 chrome_path: path to Chrome exe.
102 if chrome_path:
103 sys_props += ['webdriver.chrome.binary=' + os.path.abspath(chrome_path)]
323 chrome_path=util.GetAbsolutePathOfUserPath(options.chrome),
/external/chromium_org/chrome/installer/setup/
H A Dsetup_util.h50 Version* GetMaxVersionFromArchiveDir(const base::FilePath& chrome_path);
/external/chromium_org/components/test/data/password_manager/
H A Drun_tests.py19 "--chrome-path", action="store", dest="chrome_path",
74 (tests_path, websitetest.name, args.chrome_path[0],
H A Dtests.py342 def RunTests(chrome_path, chromedriver_path, profile_path,
350 chrome_path: The chrome binary file.
371 environment = Environment(chrome_path, chromedriver_path, profile_path,
406 "--chrome-path", action="store", dest="chrome_path",
465 tests_results = RunTests(args.chrome_path[0],
478 tests_results += RunTests(args.chrome_path[0],
H A Denvironment.py48 def __init__(self, chrome_path, chromedriver_path, profile_path,
54 chrome_path: The chrome binary file.
94 # If |chrome_path| is not defined, this means that we are in the dashboard
97 if chrome_path:
103 options.binary_location = chrome_path
117 "|chrome_path| is provided, otherwise the tests could not be run")

Completed in 375 milliseconds

12