Add Windows ARM64 build support

This commit is contained in:
Iain Apreotesei@Arm
2019-10-02 11:43:38 +00:00
committed by Marshall Greenblatt
parent cc0530cbf6
commit a8283d1cc3
7 changed files with 213 additions and 7 deletions

View File

@@ -178,6 +178,8 @@ Atomic64 Release_Load(volatile const Atomic64* ptr);
// Include our platform specific implementation.
#if defined(OS_WIN) && defined(COMPILER_MSVC) && defined(ARCH_CPU_X86_FAMILY)
#include "include/base/internal/cef_atomicops_x86_msvc.h"
#elif defined(OS_WIN) && defined(__ARM_ARCH_ISA_A64)
#include "include/base/internal/cef_atomicops_arm64_msvc.h"
#elif defined(OS_MACOSX)
#include "include/base/internal/cef_atomicops_mac.h"
#elif defined(COMPILER_GCC) && defined(ARCH_CPU_X86_FAMILY)