Files
Xenia-Canary/src/alloy/sources.gypi
Ben Vanik 475ddc1fcf Breakpoint hits reaching all the way to UI.
Nasty json only hackery right now, but fixable to support other protocols.
2013-12-23 14:01:13 -08:00

49 lines
817 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',
'mutex.h',
'string_buffer.cc',
'string_buffer.h',
'type_pool.h',
],
'conditions': [
['OS == "mac" or OS == "linux"', {
'sources': [
'mutex_posix.cc',
],
}],
['OS == "linux"', {
'sources': [
],
}],
['OS == "mac"', {
'sources': [
],
}],
['OS == "win"', {
'sources': [
'mutex_win.cc',
],
}],
],
'includes': [
'backend/sources.gypi',
'compiler/sources.gypi',
'frontend/sources.gypi',
'hir/sources.gypi',
'runtime/sources.gypi',
'tracing/sources.gypi',
],
}