blob: f02103342acf4c923b31922c22a8eaeb0e359ee1 [file] [log] [blame]
Austin Schuh47017412013-03-10 11:50:46 -07001{
2 'targets': [
3 {
4 'target_name': 'auto_queue',
5 'type': 'static_library',
6 'sources': ['auto.q'],
7 'variables': {
8 'header_path': 'frc971/autonomous',
9 },
Austin Schuh47017412013-03-10 11:50:46 -070010 'includes': ['../../aos/build/queues.gypi'],
11 },
12 {
13 'target_name': 'auto_lib',
14 'type': 'static_library',
15 'sources': [
16 'auto.cc',
17 ],
18 'dependencies': [
Austin Schuh47017412013-03-10 11:50:46 -070019 'auto_queue',
Brian Silverman7ff05bf2014-04-10 12:48:25 -070020 '<(AOS)/common/controls/controls.gyp:control_loop',
Brian Silvermanada5f2c2015-02-01 02:41:14 -050021 '<(DEPTH)/frc971/control_loops/drivetrain/drivetrain.gyp:drivetrain_queue',
Brian Silverman431500a2013-10-28 19:50:15 -070022 '<(DEPTH)/frc971/frc971.gyp:constants',
Austin Schuh47017412013-03-10 11:50:46 -070023 '<(AOS)/common/common.gyp:time',
Brian3afd6fc2014-04-02 20:41:49 -070024 '<(AOS)/common/util/util.gyp:phased_loop',
Austin Schuh6be011a2013-03-19 10:07:02 +000025 '<(AOS)/common/util/util.gyp:trapezoid_profile',
Brian Silverman598800f2013-05-09 17:08:42 -070026 '<(AOS)/build/aos.gyp:logging',
Daniel Petti3b1e48f2015-02-15 15:57:53 -080027 '<(DEPTH)/frc971/actors/actors.gyp:drivetrain_action_lib',
Brian Silverman6f621542014-04-06 16:00:41 -070028 '<(AOS)/common/logging/logging.gyp:queue_logging',
Ben Fredrickson0a6ad252015-03-15 18:51:42 -070029 '<(DEPTH)/frc971/control_loops/claw/claw.gyp:claw_queue',
Brian Silverman5bfda6c2015-03-21 23:40:13 -070030 '<(DEPTH)/frc971/control_loops/fridge/fridge.gyp:fridge_queue',
Ben Fredrickson0a6ad252015-03-15 18:51:42 -070031 '<(DEPTH)/frc971/actors/actors.gyp:stack_action_lib',
32 '<(DEPTH)/frc971/actors/actors.gyp:pickup_action_lib',
Austin Schuh47017412013-03-10 11:50:46 -070033 ],
34 'export_dependent_settings': [
Brian Silverman7ff05bf2014-04-10 12:48:25 -070035 '<(AOS)/common/controls/controls.gyp:control_loop',
Austin Schuh47017412013-03-10 11:50:46 -070036 ],
37 },
38 {
39 'target_name': 'auto',
40 'type': 'executable',
41 'sources': [
42 'auto_main.cc',
43 ],
44 'dependencies': [
Brian Silverman14fd0fb2014-01-14 21:42:01 -080045 '<(AOS)/linux_code/linux_code.gyp:init',
Austin Schuh47017412013-03-10 11:50:46 -070046 'auto_queue',
47 'auto_lib',
48 ],
49 },
50 ],
51}