2013-04-03 20:20:59 +02:00
|
|
|
// Copyright (c) 2013 The Chromium Embedded Framework Authors.
|
2012-04-03 03:34:16 +02:00
|
|
|
// Portions 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.
|
|
|
|
|
2016-11-18 00:52:42 +01:00
|
|
|
#include "tests/shared/browser/resource_util.h"
|
2014-07-11 22:10:05 +02:00
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#include <mach-o/dyld.h>
|
|
|
|
#include <stdio.h>
|
2014-07-11 22:10:05 +02:00
|
|
|
|
|
|
|
#include "include/base/cef_logging.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2015-01-23 20:09:34 +01:00
|
|
|
namespace client {
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
namespace {
|
|
|
|
|
2016-11-23 21:54:29 +01:00
|
|
|
// Implementation adapted from Chromium's base/mac/foundation_util.mm
|
|
|
|
bool UncachedAmIBundled() {
|
|
|
|
return [[[NSBundle mainBundle] bundlePath] hasSuffix:@".app"];
|
|
|
|
}
|
2013-04-16 21:23:00 +02:00
|
|
|
|
2016-11-23 21:54:29 +01:00
|
|
|
bool AmIBundled() {
|
|
|
|
static bool am_i_bundled = UncachedAmIBundled();
|
|
|
|
return am_i_bundled;
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2013-04-03 20:20:59 +02:00
|
|
|
} // namespace
|
|
|
|
|
2017-01-27 01:14:56 +01:00
|
|
|
// Implementation adapted from Chromium's base/base_path_mac.mm
|
2012-04-03 03:34:16 +02:00
|
|
|
bool GetResourceDir(std::string& dir) {
|
2017-01-27 01:14:56 +01:00
|
|
|
// Retrieve the executable directory.
|
|
|
|
uint32_t pathSize = 0;
|
2021-06-17 22:08:01 +02:00
|
|
|
_NSGetExecutablePath(nullptr, &pathSize);
|
2017-01-27 01:14:56 +01:00
|
|
|
if (pathSize > 0) {
|
|
|
|
dir.resize(pathSize);
|
|
|
|
_NSGetExecutablePath(const_cast<char*>(dir.c_str()), &pathSize);
|
|
|
|
}
|
|
|
|
|
2013-04-03 20:20:59 +02:00
|
|
|
if (AmIBundled()) {
|
2017-01-27 01:14:56 +01:00
|
|
|
// Trim executable name up to the last separator.
|
2012-04-03 03:34:16 +02:00
|
|
|
std::string::size_type last_separator = dir.find_last_of("/");
|
|
|
|
dir.resize(last_separator);
|
|
|
|
dir.append("/../Resources");
|
|
|
|
return true;
|
|
|
|
}
|
2017-01-27 01:14:56 +01:00
|
|
|
|
|
|
|
dir.append("/Resources");
|
|
|
|
return true;
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
2015-01-23 20:09:34 +01:00
|
|
|
|
|
|
|
} // namespace client
|