xenia/src/poly/sources.gypi

40 lines
596 B
Python

# Copyright 2014 Ben Vanik. All Rights Reserved.
{
'sources': [
'assert.h',
'atomic.h',
'config.h',
'cxx_compat.h',
'math.h',
'platform.h',
'poly-private.h',
'poly.cc',
'poly.h',
'threading.h',
],
'conditions': [
['OS == "mac" or OS == "linux"', {
'sources': [
],
}],
['OS == "linux"', {
'sources': [
],
}],
['OS == "mac"', {
'sources': [
'threading_mac.cc',
],
}],
['OS == "win"', {
'sources': [
'threading_win.cc',
],
}],
],
'includes': [
],
}