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', | 18 'fakeclock.cc', |
19 'fakeclock.h', | 19 'fakeclock.h', |
20 'fakenetwork.h', | 20 'fakenetwork.h', |
21 'fakesslidentity.h', | 21 'fakesslidentity.h', |
22 'faketaskrunner.h', | 22 'faketaskrunner.h', |
23 'gunit.h', | 23 'gunit.h', |
24 'test/faketiming.h', | |
25 'testbase64.h', | 24 'testbase64.h', |
26 'testechoserver.h', | 25 'testechoserver.h', |
27 'testutils.h', | 26 'testutils.h', |
28 'timedelta.h', | 27 'timedelta.h', |
29 ], | 28 ], |
30 'defines': [ | 29 'defines': [ |
31 'GTEST_RELATIVE_PATH', | 30 'GTEST_RELATIVE_PATH', |
32 ], | 31 ], |
33 'dependencies': [ | 32 'dependencies': [ |
34 'base.gyp:rtc_base', | 33 'base.gyp:rtc_base', |
35 '<(DEPTH)/testing/gtest.gyp:gtest', | 34 '<(DEPTH)/testing/gtest.gyp:gtest', |
36 '<(webrtc_root)/test/test.gyp:field_trial', | 35 '<(webrtc_root)/test/test.gyp:field_trial', |
37 '<(webrtc_root)/test/test.gyp:test_support', | 36 '<(webrtc_root)/test/test.gyp:test_support', |
38 ], | 37 ], |
39 'direct_dependent_settings': { | 38 'direct_dependent_settings': { |
40 'defines': [ | 39 'defines': [ |
41 'GTEST_RELATIVE_PATH', | 40 'GTEST_RELATIVE_PATH', |
42 ], | 41 ], |
43 }, | 42 }, |
44 'export_dependent_settings': [ | 43 'export_dependent_settings': [ |
45 '<(DEPTH)/testing/gtest.gyp:gtest', | 44 '<(DEPTH)/testing/gtest.gyp:gtest', |
46 ], | 45 ], |
47 }, | 46 }, |
48 ], | 47 ], |
49 } | 48 } |
OLD | NEW |