| // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "chrome/test/mini_installer_test/mini_installer_test_constants.h" |
| |
| namespace mini_installer_constants { |
| |
| #if defined(GOOGLE_CHROME_BUILD) |
| const wchar_t kChromeAppDir[] = L"Google\\Chrome\\Application\\"; |
| const wchar_t kChromeBuildType[] = L"Google Chrome"; |
| const wchar_t kChromeFirstRunUI[] = L"Welcome to Google Chrome"; |
| const wchar_t kChromeLaunchShortcut[] = L"Google Chrome.lnk"; |
| const wchar_t kChromeUninstallShortcut[] = L"Uninstall Google Chrome.lnk"; |
| const wchar_t kChromeUninstallDialogName[] = L"Uninstall Google Chrome"; |
| #else |
| const wchar_t kChromeAppDir[] = L"Chromium\\Application\\"; |
| const wchar_t kChromeBuildType[] = L"Chromium"; |
| const wchar_t kChromeFirstRunUI[] = L"Welcome to Chromium"; |
| const wchar_t kChromeLaunchShortcut[] = L"Chromium.lnk"; |
| const wchar_t kChromeUninstallShortcut[] = L"Uninstall Chromium.lnk"; |
| const wchar_t kChromeUninstallDialogName[] = L"Uninstall Chromium"; |
| #endif |
| const wchar_t kBrowserAppName[] = L"Google - Google Chrome"; |
| const wchar_t kBrowserTabName[] = L"New Tab - Google Chrome"; |
| const wchar_t kChromeFrameAppDir[] = L"Google\\Chrome Frame\\Application\\"; |
| const wchar_t kChromeFrameAppName[] = L"Google Chrome Frame"; |
| const wchar_t kChromeFrameProductName[] = L"Chrome Frame"; |
| const wchar_t kChromeMiniInstallerExecutable[] = L"mini_installer.exe"; |
| const wchar_t kChromeMetaInstallerExecutable[] = L"chrome_installer.exe"; |
| const wchar_t kChromeProductName[] = L"Chrome"; |
| const wchar_t kChromeSetupExecutable[] = L"setup.exe"; |
| const wchar_t kChromeUserDataBackupDir[] = L"User Data Copy"; |
| const wchar_t kChromeUserDataDir[] = L"User Data"; |
| const wchar_t kDiffInstall[] = L"Diff"; |
| const wchar_t kDiffInstallerPattern[] = L"_from_"; |
| const wchar_t kFullInstallerPattern[] = L"_chrome_installer"; |
| const wchar_t kGoogleUpdateExecutable[] = L"GoogleUpdate.exe"; |
| const wchar_t kIEExecutable[] = L"iexplore.exe"; |
| const wchar_t kInstallerWindow[] = L"Chrome Installer"; |
| const wchar_t kStandaloneInstaller[] = L"ChromeSetupTest.exe"; |
| const wchar_t kUntaggedInstallerPattern[] = L"ChromeStandaloneSetup_"; |
| const wchar_t kWinFolder[] = L"win"; |
| |
| |
| const wchar_t kDevChannelBuild[] = L"10.0."; |
| const wchar_t kStableChannelBuild[] = L"8.0."; |
| const wchar_t kFullInstall[] = L"Full"; |
| |
| |
| const wchar_t kIELocation[] = L"Internet Explorer\\"; |
| const wchar_t kIEProcessName[] = L"IEXPLORE.EXE"; |
| |
| // Google Chrome meta installer location. |
| const wchar_t kChromeMetaInstallerExe[] = |
| L"\\\\172.23.44.61\\shared\\chrome_autotest\\beta_build\\ChromeSetup.exe"; |
| const wchar_t kChromeStandAloneInstallerLocation[] = |
| L"\\\\filer\\shares\\chromeclient\\builds\\ChromeSigning"; |
| const wchar_t kChromeApplyTagExe[] = |
| L"\\\\filer\\shares\\googleclient\\save\\builds\\Omaha\\1.3.21.57" |
| L"\\opt\\tests\\ApplyTag.exe"; |
| const wchar_t kChromeApplyTagParameters[] = |
| L"\"appguid={8A69D345-D564-463C-AFF1-A69D9E530F96}" |
| L"&appname=Chrome&needsadmin=false\""; |
| const wchar_t kChromeInstallersLocation[] = |
| L"\\\\172.24.6.7\\shares\\chromeclient\\builds\\chrome\\"; |
| |
| } // namespace mini_installer_constants |
| |
| namespace switches { |
| // Help. |
| extern const char kInstallerHelp[] = "help"; |
| |
| // Back up the profile. |
| const char kInstallerTestBackup[] = "backup"; |
| |
| // Control the build under test. |
| const char kInstallerTestBuild[] = "build"; |
| |
| // Force the installer tests to run, regardless of the current platform. |
| const char kInstallerTestForce[] = "force"; |
| } // namespace switches |