#include "chrome/common/chrome_paths_internal.h"
#include <stdlib.h>
#include "base/base_paths.h"
#include "base/environment.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/path_service.h"
#include "build/branding_buildflags.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "chrome/common/chrome_constants.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace chrome {
TEST(ChromePaths, UserCacheDir) { … }
#if BUILDFLAG(IS_LINUX) && !BUILDFLAG(IS_CHROMEOS_LACROS) && \
!BUILDFLAG(IS_CHROMEOS_ASH)
TEST(ChromePaths, DefaultUserDataDir) { … }
#endif
#if BUILDFLAG(IS_CHROMEOS_LACROS) || BUILDFLAG(IS_CHROMEOS_ASH)
TEST(ChromePaths, UserMediaDirectories) {
base::FilePath path;
EXPECT_FALSE(GetUserMusicDirectory(&path));
EXPECT_FALSE(GetUserPicturesDirectory(&path));
EXPECT_FALSE(GetUserVideosDirectory(&path));
}
#endif
}