blob: 94508c417161c734ca5317a250477cbf11278369 [file] [log] [blame]
brians343bc112013-02-10 01:53:46 +00001{
2 'targets': [
3 {
4 'target_name': 'aos_queues',
5 'type': 'static_library',
6 'sources': [
7 'RobotState.q',
8 ],
9 'variables': {
10 'header_path': 'aos/common/messages',
11 },
12 'dependencies': [
13 '<(AOS)/build/aos.gyp:aos_internal_nolib',
14 '<(AOS)/common/common.gyp:queues',
15 ],
16 'export_dependent_settings': [
17 '<(AOS)/build/aos.gyp:aos_internal_nolib',
18 '<(AOS)/common/common.gyp:queues',
19 ],
20 'includes': ['../../build/queues.gypi'],
21 },
22 {
23 'target_name': 'queues_so',
24 'type': 'shared_library',
25 'sources': [
26 'RobotState.q',
27 ],
28 'variables': {
29 'header_path': 'aos/common/messages',
30 },
31 'dependencies': [
32 '<(AOS)/build/aos.gyp:aos_internal_nolib',
33 ],
34 'export_dependent_settings': [
35 '<(AOS)/build/aos.gyp:aos_internal_nolib',
36 ],
37 'direct_dependent_settings': {
38 'variables': {
39 'jni_libs': ['queues_so'],
40 },
41 },
42 'includes': ['../../build/queues.gypi'],
43 },
44 ],
45}