blob: 16f3fd66328f1afe1a3b102f156da7597c4cc5ea [file] [log] [blame]
Brian Silvermanf665d692013-02-17 22:11:39 -08001{
2 'targets': [
3 {
Brian Silverman70f88512014-12-27 19:27:35 -08004 'target_name': 'dump_rtprio',
5 'type': 'executable',
6 'sources': [
7 'dump_rtprio.cc',
8 ],
9 'dependencies': [
10 '<(AOS)/build/aos.gyp:logging',
11 '<(AOS)/common/common.gyp:time',
12 ],
13 },
14 {
Brian Silverman2fa99cb2014-09-06 00:53:00 -040015 'target_name': 'complex_thread_local',
16 'type': 'static_library',
17 'sources': [
18 'complex_thread_local.cc',
19 ],
20 'dependencies': [
21 '<(AOS)/common/common.gyp:once',
22 '<(AOS)/common/common.gyp:die',
23 ],
24 },
25 {
26 'target_name': 'complex_thread_local_test',
27 'type': 'executable',
28 'sources': [
29 'complex_thread_local_test.cc',
30 ],
31 'dependencies': [
32 'complex_thread_local',
33 '<(EXTERNALS):gtest',
34 '<(AOS)/common/util/util.gyp:thread',
35 '<(AOS)/build/aos.gyp:logging',
36 ],
37 },
38 {
Brian Silvermanf665d692013-02-17 22:11:39 -080039 'target_name': 'init',
40 'type': 'static_library',
41 'sources': [
Brian Silvermanaccb9352014-04-10 12:50:15 -070042 'init.cc',
Brian Silvermanf665d692013-02-17 22:11:39 -080043 ],
44 'dependencies': [
Brian Silverman14fd0fb2014-01-14 21:42:01 -080045 '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:shared_mem',
Brian Silvermanf665d692013-02-17 22:11:39 -080046 '<(AOS)/common/common.gyp:die',
47 '<(AOS)/build/aos.gyp:logging',
48 ],
49 },
Brian Silverman66f079a2013-08-26 16:24:30 -070050 {
51 'target_name': 'configuration',
52 'type': 'static_library',
53 'sources': [
54 'configuration.cc',
55 ],
56 'dependencies': [
57 '<(AOS)/common/common.gyp:once',
58 '<(AOS)/build/aos.gyp:logging',
59 ],
60 },
Brian Silvermanfe9b7a22014-02-10 15:03:42 -080061 {
62 'target_name': 'core',
63 'type': 'executable',
64 'sources': [
65 'core.cc',
66 ],
67 'dependencies': [
68 'init',
Brian Silvermanaf784862014-05-13 08:14:55 -070069 '<(AOS)/common/util/util.gyp:run_command',
Brian Silvermanfe9b7a22014-02-10 15:03:42 -080070 ],
71 },
Brian Silvermanf665d692013-02-17 22:11:39 -080072 ],
73}