OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/test/mini_installer_test/mini_installer_test_constants.h" | 5 #include "chrome/test/mini_installer_test/mini_installer_test_constants.h" |
6 | 6 |
7 namespace mini_installer_constants { | 7 namespace mini_installer_constants { |
8 | 8 |
9 #if defined(GOOGLE_CHROME_BUILD) | 9 #if defined(GOOGLE_CHROME_BUILD) |
10 const wchar_t kChromeAppDir[] = L"Google\\Chrome\\Application\\"; | 10 const wchar_t kChromeAppDir[] = L"Google\\Chrome\\Application\\"; |
(...skipping 23 matching lines...) Expand all Loading... |
34 const wchar_t kGoogleUpdateExecutable[] = L"GoogleUpdate.exe"; | 34 const wchar_t kGoogleUpdateExecutable[] = L"GoogleUpdate.exe"; |
35 const wchar_t kUntaggedInstallerPattern[] = L"ChromeStandaloneSetup_"; | 35 const wchar_t kUntaggedInstallerPattern[] = L"ChromeStandaloneSetup_"; |
36 const wchar_t kDiffInstallerPattern[] = L"_from_"; | 36 const wchar_t kDiffInstallerPattern[] = L"_from_"; |
37 const wchar_t kFullInstallerPattern[] = L"_chrome_installer"; | 37 const wchar_t kFullInstallerPattern[] = L"_chrome_installer"; |
38 const wchar_t kDevChannelBuildPattern[] = L"2.0."; | 38 const wchar_t kDevChannelBuildPattern[] = L"2.0."; |
39 | 39 |
40 // Google Chrome meta installer location. | 40 // Google Chrome meta installer location. |
41 const wchar_t kChromeMetaInstallerExe[] = | 41 const wchar_t kChromeMetaInstallerExe[] = |
42 L"\\\\172.23.44.61\\shared\\chrome_autotest\\beta_build\\ChromeSetup.exe"; | 42 L"\\\\172.23.44.61\\shared\\chrome_autotest\\beta_build\\ChromeSetup.exe"; |
43 const wchar_t kChromeStandAloneInstallerLocation[] = | 43 const wchar_t kChromeStandAloneInstallerLocation[] = |
44 L"\\\\172.24.6.7\\shares\\googleclient\\nightly\\builds\\Win-OmahaInstallers
\\latest\\opt\\"; | 44 L"\\\\172.24.6.7\\shares\\googleclient\\nightly\\builds\\Win-OmahaInstallers
\\latest\\opt-win\\staging\\"; |
45 const wchar_t kChromeApplyTagExe[] = | 45 const wchar_t kChromeApplyTagExe[] = |
46 L"\\\\172.23.44.61\\shared\\chrome_autotest\\ApplyTag.exe"; | 46 L"\\\\172.23.44.61\\shared\\chrome_autotest\\ApplyTag.exe"; |
47 const wchar_t kChromeApplyTagParameters[] = | 47 const wchar_t kChromeApplyTagParameters[] = |
48 L"\"appguid={8A69D345-D564-463C-AFF1-A69D9E530F96}&appname=Chrome&needsadmin
=false\""; | 48 L"\"appguid={8A69D345-D564-463C-AFF1-A69D9E530F96}&appname=Chrome&needsadmin
=false\""; |
49 const wchar_t kChromeDiffInstallerLocation[] = | 49 const wchar_t kChromeDiffInstallerLocation[] = |
50 L"\\\\172.24.6.7\\shares\\googleclient\\save\\builds\\chrome\\"; | 50 L"\\\\172.24.6.7\\shares\\googleclient\\save\\builds\\chrome\\"; |
51 } | 51 } |
OLD | NEW |