blob: 59f5d27ebd67f9d9b9e29d01b98a94438abbf339 [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',
Brian Silverman71614332015-02-22 00:43:14 -05006 'variables': {
7 'no_rsync': 1,
8 },
Brian Silverman70f88512014-12-27 19:27:35 -08009 'sources': [
10 'dump_rtprio.cc',
11 ],
12 'dependencies': [
13 '<(AOS)/build/aos.gyp:logging',
14 '<(AOS)/common/common.gyp:time',
15 ],
16 },
17 {
Brian Silverman2fa99cb2014-09-06 00:53:00 -040018 'target_name': 'complex_thread_local',
19 'type': 'static_library',
20 'sources': [
21 'complex_thread_local.cc',
22 ],
23 'dependencies': [
24 '<(AOS)/common/common.gyp:once',
25 '<(AOS)/common/common.gyp:die',
26 ],
27 },
28 {
29 'target_name': 'complex_thread_local_test',
30 'type': 'executable',
31 'sources': [
32 'complex_thread_local_test.cc',
33 ],
34 'dependencies': [
35 'complex_thread_local',
36 '<(EXTERNALS):gtest',
37 '<(AOS)/common/util/util.gyp:thread',
38 '<(AOS)/build/aos.gyp:logging',
39 ],
40 },
41 {
Brian Silvermanf665d692013-02-17 22:11:39 -080042 'target_name': 'init',
43 'type': 'static_library',
44 'sources': [
Brian Silvermanaccb9352014-04-10 12:50:15 -070045 'init.cc',
Brian Silvermanf665d692013-02-17 22:11:39 -080046 ],
47 'dependencies': [
Brian Silverman14fd0fb2014-01-14 21:42:01 -080048 '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:shared_mem',
Brian Silvermanf665d692013-02-17 22:11:39 -080049 '<(AOS)/common/common.gyp:die',
50 '<(AOS)/build/aos.gyp:logging',
51 ],
52 },
Brian Silverman66f079a2013-08-26 16:24:30 -070053 {
54 'target_name': 'configuration',
55 'type': 'static_library',
56 'sources': [
57 'configuration.cc',
58 ],
59 'dependencies': [
60 '<(AOS)/common/common.gyp:once',
61 '<(AOS)/build/aos.gyp:logging',
62 ],
63 },
Brian Silvermanfe9b7a22014-02-10 15:03:42 -080064 {
65 'target_name': 'core',
66 'type': 'executable',
67 'sources': [
68 'core.cc',
69 ],
70 'dependencies': [
71 'init',
Brian Silvermanaf784862014-05-13 08:14:55 -070072 '<(AOS)/common/util/util.gyp:run_command',
Brian Silvermanfe9b7a22014-02-10 15:03:42 -080073 ],
74 },
Brian Silvermanf665d692013-02-17 22:11:39 -080075 ],
76}