Moving alloy/ into xenia/cpu/ to start simplifying things.

This commit is contained in:
Ben Vanik
2015-03-24 07:46:18 -07:00
parent 59395318f3
commit 29912f44c0
519 changed files with 2246 additions and 2296 deletions

111
xenia.gyp
View File

@@ -1,8 +1,8 @@
# Copyright 2013 Ben Vanik. All Rights Reserved.
{
'includes': [
'src/alloy/frontend/ppc/test/test.gypi',
'src/alloy/test/test.gypi',
'src/xenia/cpu/frontend/ppc/test/test.gypi',
'src/xenia/cpu/test/test.gypi',
'tools/tools.gypi',
'third_party/beaengine.gypi',
'third_party/gflags.gypi',
@@ -283,108 +283,24 @@
],
},
{
'target_name': 'liballoy',
'product_name': 'liballoy',
'type': 'static_library',
'dependencies': [
'beaengine',
'gflags',
'llvm',
'libpoly',
],
'conditions': [
['OS == "mac"', {
'xcode_settings': {
'OTHER_CFLAGS': [
'-fno-operator-names',
],
},
}],
['OS == "linux"', {
'cflags': [
'-fno-operator-names',
],
}],
],
'export_dependent_settings': [
'beaengine',
'gflags',
'llvm',
'libpoly',
],
'direct_dependent_settings': {
'include_dirs': [
'src/',
],
'target_conditions': [
['_type=="shared_library"', {
'cflags': [
],
}],
['_type=="executable"', {
'conditions': [
['OS == "win"', {
'libraries': [
'kernel32',
'user32',
'ole32',
'ntdll',
'advapi32',
],
}],
['OS == "mac"', {
'xcode_settings': {
'OTHER_LDFLAGS': [
],
},
}],
['OS == "linux"', {
'libraries': [
'-lpthread',
'-ldl',
],
}],
],
}],
],
},
'cflags': [
],
'include_dirs': [
'.',
'src/',
'<(INTERMEDIATE_DIR)',
],
'includes': [
'src/alloy/sources.gypi',
],
},
{
'target_name': 'libxenia',
'product_name': 'libxenia',
'type': 'static_library',
'dependencies': [
'beaengine',
'gflags',
'glew',
'liballoy',
'llvm',
'libpoly',
'xxhash',
],
'export_dependent_settings': [
'beaengine',
'gflags',
'glew',
'liballoy',
'llvm',
'libpoly',
'xxhash',
],
@@ -436,6 +352,21 @@
],
},
'conditions': [
['OS == "mac"', {
'xcode_settings': {
'OTHER_CFLAGS': [
'-fno-operator-names',
],
},
}],
['OS == "linux"', {
'cflags': [
'-fno-operator-names',
],
}],
],
'cflags': [
],