blob: 74b788d22e4701c2a3e439e3b3ae5b227bea8400 [file] [log] [blame]
Brian Silvermanf665d692013-02-17 22:11:39 -08001{
2 'targets': [
3 {
4 'target_name': 'init',
5 'type': 'static_library',
6 'sources': [
Brian Silvermanaccb9352014-04-10 12:50:15 -07007 'init.cc',
Brian Silvermanf665d692013-02-17 22:11:39 -08008 ],
9 'dependencies': [
Brian Silverman14fd0fb2014-01-14 21:42:01 -080010 '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:shared_mem',
Brian Silvermanf665d692013-02-17 22:11:39 -080011 '<(AOS)/common/common.gyp:die',
12 '<(AOS)/build/aos.gyp:logging',
13 ],
14 },
Brian Silverman66f079a2013-08-26 16:24:30 -070015 {
16 'target_name': 'configuration',
17 'type': 'static_library',
18 'sources': [
19 'configuration.cc',
20 ],
21 'dependencies': [
22 '<(AOS)/common/common.gyp:once',
23 '<(AOS)/build/aos.gyp:logging',
24 ],
25 },
Brian Silvermanfe9b7a22014-02-10 15:03:42 -080026 {
27 'target_name': 'core',
28 'type': 'executable',
29 'sources': [
30 'core.cc',
31 ],
32 'dependencies': [
33 'init',
Brian Silvermanaf784862014-05-13 08:14:55 -070034 '<(AOS)/common/util/util.gyp:run_command',
Brian Silvermanfe9b7a22014-02-10 15:03:42 -080035 ],
36 },
Brian Silvermanf665d692013-02-17 22:11:39 -080037 ],
38}