blob: ee8c9ab2b32746b599c986a01b1060df11a136a0 [file] [log] [blame]
brians343bc112013-02-10 01:53:46 +00001{
2 'targets': [
3 {
Brian Silverman771b4b82013-04-12 16:36:56 -07004 'target_name': 'netconsole',
5 'type': 'executable',
6 'sources': [
7 'netconsole.cc',
8 ],
9 'dependencies': [
10 '<(AOS)/build/aos.gyp:logging',
Brian Silverman14fd0fb2014-01-14 21:42:01 -080011 '<(AOS)/linux_code/linux_code.gyp:configuration',
Brianc1dc7d22014-04-02 12:21:08 -070012 '<(AOS)/common/util/util.gyp:inet_addr',
Brian Silverman138449e2014-04-12 17:13:15 -070013 '<(AOS)/linux_code/linux_code.gyp:init',
Brian Silverman771b4b82013-04-12 16:36:56 -070014 ],
15 },
16 {
brians343bc112013-02-10 01:53:46 +000017 'target_name': 'starter_exe',
18 'type': 'executable',
19 'sources': [
Brian Silvermand169fcd2013-02-27 13:18:47 -080020 'starter.cc',
brians343bc112013-02-10 01:53:46 +000021 ],
22 'dependencies': [
Brian Silverman14fd0fb2014-01-14 21:42:01 -080023 '<(AOS)/linux_code/linux_code.gyp:init',
Brian Silvermand169fcd2013-02-27 13:18:47 -080024 '<(EXTERNALS):libevent',
Brian Silverman5cc661b2013-02-27 15:23:36 -080025 '<(AOS)/build/aos.gyp:logging',
26 '<(AOS)/common/common.gyp:once',
27 '<(AOS)/common/common.gyp:time',
Brian Silvermanaf784862014-05-13 08:14:55 -070028 '<(AOS)/common/libc/libc.gyp:aos_strsignal',
29 '<(AOS)/common/util/util.gyp:run_command',
brians343bc112013-02-10 01:53:46 +000030 ],
31 'copies': [
32 {
33 'destination': '<(rsync_dir)',
34 'files': [
brians343bc112013-02-10 01:53:46 +000035 'starter_loop.sh',
36 ],
Austin Schuh010eb812014-10-25 18:06:49 -070037 'conditions': [
38 ['FULL_COMPILER=="gcc_frc"', {
39 'files': [
40 'starter_roborio.sh',
41 ],
42 }, {
43 'files': [
44 'starter.sh',
45 ],
46 }
47 ]],
brians343bc112013-02-10 01:53:46 +000048 },
49 ],
50 },
51 ],
52}