[frontend_common] Fix unnecessary includes for non android
All checks were successful
eden-license / license-header (pull_request) Successful in 16s
All checks were successful
eden-license / license-header (pull_request) Successful in 16s
Signed-off-by: Aleksandr Popovich <popovich@eden-emu.dev>
This commit is contained in:
parent
a360f67fad
commit
ae4807bc77
1 changed files with 6 additions and 3 deletions
|
@ -3,9 +3,6 @@
|
|||
|
||||
#include "firmware_manager.h"
|
||||
#include <filesystem>
|
||||
#include <jni.h>
|
||||
#include <common/android/id_cache.h>
|
||||
#include <common/android/android_common.h>
|
||||
#include <common/fs/fs_paths.h>
|
||||
|
||||
#include "common/fs/fs.h"
|
||||
|
@ -16,6 +13,12 @@
|
|||
#include "core/crypto/key_manager.h"
|
||||
#include "frontend_common/content_manager.h"
|
||||
|
||||
#ifdef ANDROID
|
||||
#include <jni.h>
|
||||
#include <common/android/id_cache.h>
|
||||
#include <common/android/android_common.h>
|
||||
#endif
|
||||
|
||||
FirmwareManager::KeyInstallResult
|
||||
FirmwareManager::InstallKeys(std::string location, std::string extension) {
|
||||
LOG_INFO(Frontend, "Installing key files from {}", location);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue