andrew@webrtc.org | c1ffd33 | 2013-03-22 17:13:23 +0000 | [diff] [blame] | 1 | # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
| 2 | # |
| 3 | # Use of this source code is governed by a BSD-style license |
| 4 | # that can be found in the LICENSE file in the root of the source |
| 5 | # tree. An additional intellectual property rights grant can be found |
| 6 | # in the file PATENTS. All contributing project authors may |
| 7 | # be found in the AUTHORS file in the root of the source tree. |
| 8 | |
| 9 | { |
| 10 | 'includes': ['../../build/common.gypi',], |
| 11 | 'targets': [ |
| 12 | { |
| 13 | 'target_name': 'system_wrappers_unittests', |
| 14 | 'type': 'executable', |
| 15 | 'dependencies': [ |
| 16 | '<(DEPTH)/testing/gtest.gyp:gtest', |
| 17 | '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', |
| 18 | '<(webrtc_root)/test/test.gyp:test_support_main', |
| 19 | ], |
| 20 | 'sources': [ |
kjellander@webrtc.org | 63e9888 | 2013-06-14 20:09:44 +0000 | [diff] [blame^] | 21 | '../../common_unittest.cc', |
andrew@webrtc.org | c1ffd33 | 2013-03-22 17:13:23 +0000 | [diff] [blame] | 22 | 'aligned_malloc_unittest.cc', |
stefan@webrtc.org | b8e7f4c | 2013-04-12 11:56:23 +0000 | [diff] [blame] | 23 | 'clock_unittest.cc', |
andrew@webrtc.org | c1ffd33 | 2013-03-22 17:13:23 +0000 | [diff] [blame] | 24 | 'condition_variable_unittest.cc', |
andrew@webrtc.org | c1ffd33 | 2013-03-22 17:13:23 +0000 | [diff] [blame] | 25 | 'critical_section_unittest.cc', |
| 26 | 'event_tracer_unittest.cc', |
| 27 | 'list_unittest.cc', |
| 28 | 'logging_unittest.cc', |
| 29 | 'map_unittest.cc', |
| 30 | 'data_log_unittest.cc', |
| 31 | 'data_log_unittest_disabled.cc', |
| 32 | 'data_log_helpers_unittest.cc', |
| 33 | 'data_log_c_helpers_unittest.c', |
| 34 | 'data_log_c_helpers_unittest.h', |
| 35 | 'stringize_macros_unittest.cc', |
| 36 | 'thread_unittest.cc', |
| 37 | 'thread_posix_unittest.cc', |
andrew@webrtc.org | c1ffd33 | 2013-03-22 17:13:23 +0000 | [diff] [blame] | 38 | 'unittest_utilities_unittest.cc', |
| 39 | ], |
| 40 | 'conditions': [ |
| 41 | ['enable_data_logging==1', { |
| 42 | 'sources!': [ 'data_log_unittest_disabled.cc', ], |
| 43 | }, { |
| 44 | 'sources!': [ 'data_log_unittest.cc', ], |
| 45 | }], |
| 46 | ['os_posix==0', { |
| 47 | 'sources!': [ 'thread_posix_unittest.cc', ], |
| 48 | }], |
| 49 | ], |
| 50 | # Disable warnings to enable Win64 build, issue 1323. |
| 51 | 'msvs_disabled_warnings': [ |
| 52 | 4267, # size_t to int truncation. |
| 53 | ], |
| 54 | }, |
| 55 | ], |
| 56 | } |
| 57 | |