xenia/src/alloy/sources.gypi
2014-07-13 21:25:58 -07:00

45 lines
724 B
Python

# Copyright 2013 Ben Vanik. All Rights Reserved.
{
'sources': [
'alloy-private.h',
'alloy.cc',
'alloy.h',
'arena.cc',
'arena.h',
'core.h',
'delegate.h',
'memory.cc',
'memory.h',
'string_buffer.cc',
'string_buffer.h',
'type_pool.h',
],
'conditions': [
['OS == "mac" or OS == "linux"', {
'sources': [
],
}],
['OS == "linux"', {
'sources': [
],
}],
['OS == "mac"', {
'sources': [
],
}],
['OS == "win"', {
'sources': [
],
}],
],
'includes': [
'backend/sources.gypi',
'compiler/sources.gypi',
'frontend/sources.gypi',
'hir/sources.gypi',
'runtime/sources.gypi',
],
}