diff --git a/.gitmodules b/.gitmodules index b85aa582d..9c7c17e95 100644 --- a/.gitmodules +++ b/.gitmodules @@ -10,9 +10,6 @@ [submodule "third_party/sparsehash"] path = third_party/sparsehash url = https://github.com/benvanik/sparsehash.git -[submodule "third_party/asmjit"] - path = third_party/asmjit - url = https://github.com/benvanik/asmjit.git [submodule "third_party/beaengine"] path = third_party/beaengine url = https://github.com/benvanik/beaengine.git diff --git a/third_party/asmjit b/third_party/asmjit deleted file mode 160000 index 5ba569c56..000000000 --- a/third_party/asmjit +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 5ba569c5630d5f4a13eb2a3d03507f86a4c025de diff --git a/third_party/asmjit.gypi b/third_party/asmjit.gypi deleted file mode 100644 index 6b3f14f2d..000000000 --- a/third_party/asmjit.gypi +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 2013 Ben Vanik. All Rights Reserved. -{ - 'targets': [ - { - 'target_name': 'asmjit', - 'type': '<(library)', - - 'direct_dependent_settings': { - 'include_dirs': [ - 'asmjit/src/', - ], - 'defines': [ - 'ASMJIT_X64=', - 'ASMJIT_API=', - ], - }, - - 'defines': [ - 'ASMJIT_X64=', - 'ASMJIT_API=', - ], - - 'include_dirs': [ - 'asmjit/src/', - ], - - 'sources': [ - 'asmjit/src/asmjit/asmjit.h', - 'asmjit/src/asmjit/config.h', - 'asmjit/src/asmjit/core.h', - 'asmjit/src/asmjit/x86.h', - 'asmjit/src/asmjit/core/apibegin.h', - 'asmjit/src/asmjit/core/apiend.h', - 'asmjit/src/asmjit/core/assembler.cpp', - 'asmjit/src/asmjit/core/assembler.h', - 'asmjit/src/asmjit/core/assert.cpp', - 'asmjit/src/asmjit/core/assert.h', - 'asmjit/src/asmjit/core/buffer.cpp', - 'asmjit/src/asmjit/core/buffer.h', - 'asmjit/src/asmjit/core/build.h', - 'asmjit/src/asmjit/core/compiler.cpp', - 'asmjit/src/asmjit/core/compiler.h', - 'asmjit/src/asmjit/core/compilercontext.cpp', - 'asmjit/src/asmjit/core/compilercontext.h', - 'asmjit/src/asmjit/core/compilerfunc.cpp', - 'asmjit/src/asmjit/core/compilerfunc.h', - 'asmjit/src/asmjit/core/compileritem.cpp', - 'asmjit/src/asmjit/core/compileritem.h', - 'asmjit/src/asmjit/core/context.cpp', - 'asmjit/src/asmjit/core/context.h', - 'asmjit/src/asmjit/core/cpuinfo.cpp', - 'asmjit/src/asmjit/core/cpuinfo.h', - 'asmjit/src/asmjit/core/defs.cpp', - 'asmjit/src/asmjit/core/defs.h', - 'asmjit/src/asmjit/core/func.cpp', - 'asmjit/src/asmjit/core/func.h', - 'asmjit/src/asmjit/core/intutil.h', - 'asmjit/src/asmjit/core/lock.h', - 'asmjit/src/asmjit/core/logger.cpp', - 'asmjit/src/asmjit/core/logger.h', - 'asmjit/src/asmjit/core/memorymanager.cpp', - 'asmjit/src/asmjit/core/memorymanager.h', - 'asmjit/src/asmjit/core/memorymarker.cpp', - 'asmjit/src/asmjit/core/memorymarker.h', - 'asmjit/src/asmjit/core/operand.cpp', - 'asmjit/src/asmjit/core/operand.h', - 'asmjit/src/asmjit/core/podvector.h', - 'asmjit/src/asmjit/core/stringbuilder.cpp', - 'asmjit/src/asmjit/core/stringbuilder.h', - 'asmjit/src/asmjit/core/stringutil.cpp', - 'asmjit/src/asmjit/core/stringutil.h', - 'asmjit/src/asmjit/core/virtualmemory.cpp', - 'asmjit/src/asmjit/core/virtualmemory.h', - 'asmjit/src/asmjit/core/zonememory.cpp', - 'asmjit/src/asmjit/core/zonememory.h', - 'asmjit/src/asmjit/x86/x86assembler.cpp', - 'asmjit/src/asmjit/x86/x86assembler.h', - 'asmjit/src/asmjit/x86/x86compiler.cpp', - 'asmjit/src/asmjit/x86/x86compiler.h', - 'asmjit/src/asmjit/x86/x86compilercontext.cpp', - 'asmjit/src/asmjit/x86/x86compilercontext.h', - 'asmjit/src/asmjit/x86/x86compilerfunc.cpp', - 'asmjit/src/asmjit/x86/x86compilerfunc.h', - 'asmjit/src/asmjit/x86/x86compileritem.cpp', - 'asmjit/src/asmjit/x86/x86compileritem.h', - 'asmjit/src/asmjit/x86/x86cpuinfo.cpp', - 'asmjit/src/asmjit/x86/x86cpuinfo.h', - 'asmjit/src/asmjit/x86/x86defs.cpp', - 'asmjit/src/asmjit/x86/x86defs.h', - 'asmjit/src/asmjit/x86/x86func.cpp', - 'asmjit/src/asmjit/x86/x86func.h', - 'asmjit/src/asmjit/x86/x86operand.cpp', - 'asmjit/src/asmjit/x86/x86operand.h', - 'asmjit/src/asmjit/x86/x86util.cpp', - 'asmjit/src/asmjit/x86/x86util.h', - ], - } - ] -} diff --git a/xenia.gyp b/xenia.gyp index 848abc69f..742035032 100644 --- a/xenia.gyp +++ b/xenia.gyp @@ -2,7 +2,6 @@ { 'includes': [ 'tools/tools.gypi', - 'third_party/asmjit.gypi', 'third_party/beaengine.gypi', 'third_party/gflags.gypi', 'third_party/jansson.gypi', @@ -247,7 +246,6 @@ 'type': 'static_library', 'dependencies': [ - 'asmjit', 'beaengine', 'gflags', 'jansson', @@ -255,7 +253,6 @@ 'alloy', ], 'export_dependent_settings': [ - 'asmjit', 'beaengine', 'gflags', 'jansson',