brians | f0165ca | 2013-03-02 06:17:47 +0000 | [diff] [blame] | 1 | { |
| 2 | 'targets': [ |
| 3 | { |
Brian Silverman | 798c778 | 2013-03-28 16:48:02 -0700 | [diff] [blame] | 4 | 'target_name': 'thread', |
| 5 | 'type': 'static_library', |
| 6 | 'sources': [ |
| 7 | 'thread.cc', |
| 8 | ], |
| 9 | 'dependencies': [ |
| 10 | '<(AOS)/common/common.gyp:mutex', |
| 11 | ], |
| 12 | 'export_dependent_settings': [ |
| 13 | '<(AOS)/common/common.gyp:mutex', |
| 14 | ], |
| 15 | }, |
| 16 | { |
brians | f0165ca | 2013-03-02 06:17:47 +0000 | [diff] [blame] | 17 | 'target_name': 'trapezoid_profile', |
| 18 | 'type': 'static_library', |
| 19 | 'sources': [ |
| 20 | 'trapezoid_profile.cc', |
| 21 | ], |
| 22 | 'dependencies': [ |
| 23 | '<(EXTERNALS):eigen', |
| 24 | '<(AOS)/common/common.gyp:time', |
| 25 | ], |
| 26 | 'export_dependent_settings': [ |
| 27 | '<(EXTERNALS):eigen', |
| 28 | '<(AOS)/common/common.gyp:time', |
| 29 | ], |
| 30 | }, |
| 31 | { |
| 32 | 'target_name': 'trapezoid_profile_test', |
| 33 | 'type': 'executable', |
| 34 | 'sources': [ |
| 35 | 'trapezoid_profile_test.cc', |
| 36 | ], |
| 37 | 'dependencies': [ |
| 38 | ':trapezoid_profile', |
| 39 | '<(EXTERNALS):gtest', |
| 40 | # TODO(brians): remove this when time no longer requires it |
| 41 | '<(AOS)/build/aos.gyp:logging', |
brians | f0165ca | 2013-03-02 06:17:47 +0000 | [diff] [blame] | 42 | ], |
| 43 | }, |
| 44 | ], |
| 45 | } |