зеркало из https://github.com/electron/electron.git
Fix building on OS X
This commit is contained in:
Родитель
83ae9f8d71
Коммит
05d2e431de
|
@ -3,10 +3,16 @@
|
|||
// found in the LICENSE file.
|
||||
|
||||
#include "chrome/common/chrome_constants.h"
|
||||
#include "chrome/common/chrome_version.h"
|
||||
|
||||
#define FPL FILE_PATH_LITERAL
|
||||
|
||||
namespace chrome {
|
||||
|
||||
#if defined(OS_MACOSX)
|
||||
const base::FilePath::CharType kFrameworkName[] =
|
||||
FPL(ATOM_PRODUCT_NAME " Framework.framework");
|
||||
#endif // OS_MACOSX
|
||||
|
||||
// filenames
|
||||
const base::FilePath::CharType kCacheDirname[] = FPL("Cache");
|
||||
const base::FilePath::CharType kChannelIDFilename[] = FPL("Origin Bound Certs");
|
||||
|
|
|
@ -11,6 +11,14 @@
|
|||
|
||||
namespace chrome {
|
||||
|
||||
#if defined(OS_MACOSX)
|
||||
// NOTE: if you change the value of kFrameworkName, please don't forget to
|
||||
// update components/test/run_all_unittests.cc as well.
|
||||
// TODO(tfarina): Remove the comment above, when you fix components to use plist
|
||||
// on Mac.
|
||||
extern const base::FilePath::CharType kFrameworkName[];
|
||||
#endif // OS_MACOSX
|
||||
|
||||
// filenames
|
||||
extern const base::FilePath::CharType kCacheDirname[];
|
||||
extern const base::FilePath::CharType kChannelIDFilename[];
|
||||
|
|
|
@ -179,10 +179,9 @@ base::FilePath GetVersionedDirectory() {
|
|||
// .app's versioned directory. Go up two steps to get to the browser
|
||||
// .app's versioned directory.
|
||||
path = path.DirName().DirName();
|
||||
DCHECK_EQ(path.BaseName().value(), kChromeVersion);
|
||||
} else {
|
||||
// Go into the versioned directory.
|
||||
path = path.Append("Versions").Append(kChromeVersion);
|
||||
path = path.Append("Frameworks");
|
||||
}
|
||||
|
||||
return path;
|
||||
|
|
Загрузка…
Ссылка в новой задаче