Brian | a040785 | 2014-04-06 17:10:33 -0700 | [diff] [blame] | 1 | { |
| 2 | 'targets': [ |
| 3 | { |
Brian Silverman | d057569 | 2015-02-21 16:24:02 -0500 | [diff] [blame] | 4 | 'target_name': 'replay_control_loop', |
| 5 | 'type': 'static_library', |
| 6 | 'sources': [ |
| 7 | #'replay_control_loop.h', |
| 8 | ], |
| 9 | 'dependencies': [ |
| 10 | '<(AOS)/common/common.gyp:queues', |
| 11 | 'control_loop', |
| 12 | '<(AOS)/linux_code/logging/logging.gyp:log_replay', |
| 13 | '<(AOS)/common/logging/logging.gyp:queue_logging', |
| 14 | '<(AOS)/common/common.gyp:time', |
| 15 | ], |
| 16 | 'export_dependent_settings': [ |
| 17 | '<(AOS)/common/common.gyp:queues', |
| 18 | 'control_loop', |
| 19 | '<(AOS)/linux_code/logging/logging.gyp:log_replay', |
| 20 | '<(AOS)/common/logging/logging.gyp:queue_logging', |
| 21 | '<(AOS)/common/common.gyp:time', |
| 22 | ], |
| 23 | }, |
| 24 | { |
Brian Silverman | 65e4970 | 2014-04-30 17:36:40 -0700 | [diff] [blame] | 25 | 'target_name': 'control_loop_test', |
| 26 | 'type': 'static_library', |
| 27 | 'sources': [ |
| 28 | 'control_loop_test.cc', |
| 29 | ], |
| 30 | 'dependencies': [ |
| 31 | '<(AOS)/common/common.gyp:time', |
| 32 | '<(AOS)/common/messages/messages.gyp:robot_state', |
Brian Silverman | 65e4970 | 2014-04-30 17:36:40 -0700 | [diff] [blame] | 33 | '<(EXTERNALS):gtest', |
| 34 | '<(AOS)/common/common.gyp:queue_testutils', |
| 35 | ], |
| 36 | 'export_dependent_settings': [ |
| 37 | '<(EXTERNALS):gtest', |
Brian Silverman | bbc8678 | 2014-08-19 12:13:05 -0400 | [diff] [blame] | 38 | '<(AOS)/common/common.gyp:time', |
Brian Silverman | 65e4970 | 2014-04-30 17:36:40 -0700 | [diff] [blame] | 39 | '<(AOS)/common/common.gyp:queue_testutils', |
| 40 | ], |
| 41 | }, |
| 42 | { |
Brian | a040785 | 2014-04-06 17:10:33 -0700 | [diff] [blame] | 43 | 'target_name': 'polytope', |
| 44 | 'type': 'static_library', |
| 45 | 'sources': [ |
| 46 | #'polytope.h', |
| 47 | ], |
| 48 | 'dependencies': [ |
| 49 | '<(EXTERNALS):eigen', |
| 50 | '<(EXTERNALS):libcdd', |
| 51 | ], |
| 52 | 'export_dependent_settings': [ |
| 53 | '<(EXTERNALS):eigen', |
| 54 | '<(EXTERNALS):libcdd', |
| 55 | ], |
| 56 | }, |
Brian Silverman | 3811150 | 2014-04-10 12:36:26 -0700 | [diff] [blame] | 57 | { |
Brian Silverman | 7ff05bf | 2014-04-10 12:48:25 -0700 | [diff] [blame] | 58 | 'target_name': 'control_loop_queues', |
| 59 | 'type': 'static_library', |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame^] | 60 | 'sources': [ 'control_loops.q' ], |
Brian Silverman | 7ff05bf | 2014-04-10 12:48:25 -0700 | [diff] [blame] | 61 | 'variables': { |
| 62 | 'header_path': 'aos/common/controls', |
| 63 | }, |
Brian Silverman | 7ff05bf | 2014-04-10 12:48:25 -0700 | [diff] [blame] | 64 | 'includes': ['../../../aos/build/queues.gypi'], |
| 65 | }, |
| 66 | { |
| 67 | 'target_name': 'control_loop', |
| 68 | 'type': 'static_library', |
| 69 | 'sources': [ |
| 70 | 'control_loop.cc', |
| 71 | ], |
| 72 | 'dependencies': [ |
| 73 | '<(AOS)/common/messages/messages.gyp:robot_state', |
| 74 | '<(AOS)/build/aos.gyp:logging', |
| 75 | '<(AOS)/common/util/util.gyp:phased_loop', |
| 76 | '<(AOS)/common/common.gyp:time', |
| 77 | 'control_loop_queues', |
| 78 | '<(AOS)/common/logging/logging.gyp:queue_logging', |
| 79 | '<(AOS)/common/util/util.gyp:log_interval', |
Brian Silverman | 01421c8 | 2014-04-11 14:50:56 -0700 | [diff] [blame] | 80 | '<(AOS)/common/common.gyp:queues', |
Brian Silverman | 7ff05bf | 2014-04-10 12:48:25 -0700 | [diff] [blame] | 81 | ], |
| 82 | 'export_dependent_settings': [ |
| 83 | '<(AOS)/common/messages/messages.gyp:robot_state', |
| 84 | '<(AOS)/build/aos.gyp:logging', |
| 85 | '<(AOS)/common/util/util.gyp:phased_loop', |
| 86 | '<(AOS)/common/common.gyp:time', |
| 87 | 'control_loop_queues', |
| 88 | '<(AOS)/common/logging/logging.gyp:queue_logging', |
| 89 | '<(AOS)/common/util/util.gyp:log_interval', |
Brian Silverman | 01421c8 | 2014-04-11 14:50:56 -0700 | [diff] [blame] | 90 | '<(AOS)/common/common.gyp:queues', |
Brian Silverman | 7ff05bf | 2014-04-10 12:48:25 -0700 | [diff] [blame] | 91 | ], |
| 92 | }, |
Brian | a040785 | 2014-04-06 17:10:33 -0700 | [diff] [blame] | 93 | ], |
| 94 | } |