From 71cbd00ce4c63af41f3d9a3c2acffc301600813b Mon Sep 17 00:00:00 2001 From: "phajdan.jr@chromium.org" Date: Thu, 5 Mar 2009 09:38:38 +0000 Subject: Make startup_tests build and run on Linux (except reference tests). Review URL: http://codereview.chromium.org/27240 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10978 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/common/chrome_constants.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'chrome/common') diff --git a/chrome/common/chrome_constants.cc b/chrome/common/chrome_constants.cc index 658a243..aee1b07 100644 --- a/chrome/common/chrome_constants.cc +++ b/chrome/common/chrome_constants.cc @@ -12,7 +12,11 @@ namespace chrome { // The following should not be used for UI strings; they are meant // for system strings only. UI changes should be made in the GRD. +#if defined(OS_WIN) const wchar_t kBrowserProcessExecutableName[] = L"chrome.exe"; +#elif defined(OS_LINUX) +const wchar_t kBrowserProcessExecutableName[] = L"chrome"; +#endif #if defined(GOOGLE_CHROME_BUILD) const wchar_t kBrowserAppName[] = L"Chrome"; const char kStatsFilename[] = "ChromeStats2"; -- cgit v1.1