// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BASE_BASE_PATHS_H_ #define BASE_BASE_PATHS_H_ // This file declares path keys for the base module. These can be used with // the PathService to access various special directories and files. #include "build/build_config.h" #if BUILDFLAG(IS_WIN) #include "base/base_paths_win.h" #elif BUILDFLAG(IS_MAC) #include "base/base_paths_mac.h" #elif BUILDFLAG(IS_IOS) #include "base/base_paths_ios.h" #elif BUILDFLAG(IS_ANDROID) #include "base/base_paths_android.h" #endif #if BUILDFLAG(IS_POSIX) #include "base/base_paths_posix.h" #endif namespace base { enum BasePathKey { … }; } // namespace base #endif // BASE_BASE_PATHS_H_