OLD | NEW |
1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 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 | 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 | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 { | 8 { |
9 'includes': [ '../build/common.gypi', ], | 9 'includes': [ '../build/common.gypi', ], |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 'target_name': 'rtc_base_tests_utils', | 12 'target_name': 'rtc_base_tests_utils', |
13 'type': 'static_library', | 13 'type': 'static_library', |
14 'sources': [ | 14 'sources': [ |
15 'unittest_main.cc', | 15 'unittest_main.cc', |
16 # Also use this as a convenient dumping ground for misc files that are | 16 # Also use this as a convenient dumping ground for misc files that are |
17 # included by multiple targets below. | 17 # included by multiple targets below. |
| 18 'fakeclock.cc', |
| 19 'fakeclock.h', |
18 'fakenetwork.h', | 20 'fakenetwork.h', |
19 'fakesslidentity.h', | 21 'fakesslidentity.h', |
20 'faketaskrunner.h', | 22 'faketaskrunner.h', |
21 'gunit.h', | 23 'gunit.h', |
22 'testbase64.h', | 24 'testbase64.h', |
23 'testechoserver.h', | 25 'testechoserver.h', |
24 'testutils.h', | 26 'testutils.h', |
| 27 'timedelta.h', |
25 ], | 28 ], |
26 'defines': [ | 29 'defines': [ |
27 'GTEST_RELATIVE_PATH', | 30 'GTEST_RELATIVE_PATH', |
28 ], | 31 ], |
29 'dependencies': [ | 32 'dependencies': [ |
30 'base.gyp:rtc_base', | 33 'base.gyp:rtc_base', |
31 '<(DEPTH)/testing/gtest.gyp:gtest', | 34 '<(DEPTH)/testing/gtest.gyp:gtest', |
32 '<(webrtc_root)/test/test.gyp:field_trial', | 35 '<(webrtc_root)/test/test.gyp:field_trial', |
33 ], | 36 ], |
34 'direct_dependent_settings': { | 37 'direct_dependent_settings': { |
35 'defines': [ | 38 'defines': [ |
36 'GTEST_RELATIVE_PATH', | 39 'GTEST_RELATIVE_PATH', |
37 ], | 40 ], |
38 }, | 41 }, |
39 'export_dependent_settings': [ | 42 'export_dependent_settings': [ |
40 '<(DEPTH)/testing/gtest.gyp:gtest', | 43 '<(DEPTH)/testing/gtest.gyp:gtest', |
41 ], | 44 ], |
42 }, | 45 }, |
43 ], | 46 ], |
44 } | 47 } |
OLD | NEW |