Files
Xenia-Canary/src/poly/sources.gypi
2014-08-17 12:57:02 -07:00

54 lines
916 B
Python

# Copyright 2014 Ben Vanik. All Rights Reserved.
{
'sources': [
'assert.h',
'atomic.h',
'byte_order.h',
'debugging.h',
'config.h',
'cxx_compat.h',
'main.h',
'mapped_memory.h',
'math.cc',
'math.h',
'memory.cc',
'memory.h',
'platform.h',
'poly.h',
'string.cc',
'string.h',
'threading.h',
],
'conditions': [
['OS == "mac" or OS == "linux"', {
'sources': [
'main_posix.cc',
'mapped_memory_posix.cc',
],
}],
['OS == "linux"', {
'sources': [
'threading_posix.cc',
],
}],
['OS == "mac"', {
'sources': [
'debugging_mac.cc',
'threading_mac.cc',
],
}],
['OS == "win"', {
'sources': [
'debugging_win.cc',
'main_win.cc',
'mapped_memory_win.cc',
'threading_win.cc',
],
}],
],
'includes': [
],
}