aboutsummaryrefslogtreecommitdiff
path: root/webrtc/system_wrappers/system_wrappers_tests.gyp
blob: da2fe7432f25b225a2dcb96cb8136cf3d436825e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
#
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file in the root of the source
# tree. An additional intellectual property rights grant can be found
# in the file PATENTS.  All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.

{
  'includes': ['../build/common.gypi',],
  'targets': [
    {
      'target_name': 'system_wrappers_unittests',
      'type': '<(gtest_target_type)',
      'dependencies': [
        '<(DEPTH)/testing/gtest.gyp:gtest',
        '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
        '<(webrtc_root)/test/test.gyp:test_support_main',
      ],
      'sources': [
        'source/aligned_array_unittest.cc',
        'source/aligned_malloc_unittest.cc',
        'source/clock_unittest.cc',
        'source/condition_variable_unittest.cc',
        'source/critical_section_unittest.cc',
        'source/event_tracer_unittest.cc',
        'source/logging_unittest.cc',
        'source/data_log_unittest.cc',
        'source/data_log_unittest_disabled.cc',
        'source/data_log_helpers_unittest.cc',
        'source/data_log_c_helpers_unittest.c',
        'source/data_log_c_helpers_unittest.h',
        'source/rtp_to_ntp_unittest.cc',
        'source/scoped_vector_unittest.cc',
        'source/stringize_macros_unittest.cc',
        'source/stl_util_unittest.cc',
        'source/thread_unittest.cc',
        'source/thread_posix_unittest.cc',
      ],
      'conditions': [
        ['enable_data_logging==1', {
          'sources!': [ 'source/data_log_unittest_disabled.cc', ],
        }, {
          'sources!': [ 'source/data_log_unittest.cc', ],
        }],
        ['os_posix==0', {
          'sources!': [ 'source/thread_posix_unittest.cc', ],
        }],
        ['OS=="android"', {
          'dependencies': [
            '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
          ],
        }],
      ],
      # Disable warnings to enable Win64 build, issue 1323.
      'msvs_disabled_warnings': [
        4267,  # size_t to int truncation.
      ],
    },
  ],
  'conditions': [
    ['include_tests==1 and OS=="android"', {
      'targets': [
        {
          'target_name': 'system_wrappers_unittests_apk_target',
          'type': 'none',
          'dependencies': [
            '<(apk_tests_path):system_wrappers_unittests_apk',
          ],
        },
      ],
    }],
    ['test_isolation_mode != "noop"', {
      'targets': [
        {
          'target_name': 'system_wrappers_unittests_run',
          'type': 'none',
          'dependencies': [
            'system_wrappers_unittests',
          ],
          'includes': [
            '../build/isolate.gypi',
          ],
          'sources': [
            'system_wrappers_unittests.isolate',
          ],
        },
      ],
    }],
  ],
}