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': [ |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 'bufferqueue_unittest.cc', | 57 'bufferqueue_unittest.cc', |
58 'bytebuffer_unittest.cc', | 58 'bytebuffer_unittest.cc', |
59 'byteorder_unittest.cc', | 59 'byteorder_unittest.cc', |
60 'callback_unittest.cc', | 60 'callback_unittest.cc', |
61 'copyonwritebuffer_unittest.cc', | 61 'copyonwritebuffer_unittest.cc', |
62 'crc32_unittest.cc', | 62 'crc32_unittest.cc', |
63 'criticalsection_unittest.cc', | 63 'criticalsection_unittest.cc', |
64 'event_tracer_unittest.cc', | 64 'event_tracer_unittest.cc', |
65 'event_unittest.cc', | 65 'event_unittest.cc', |
66 'exp_filter_unittest.cc', | 66 'exp_filter_unittest.cc', |
| 67 'fakeclock.cc', |
| 68 'fakeclock.h', |
67 'filerotatingstream_unittest.cc', | 69 'filerotatingstream_unittest.cc', |
68 'fileutils_unittest.cc', | 70 'fileutils_unittest.cc', |
69 'helpers_unittest.cc', | 71 'helpers_unittest.cc', |
70 'httpbase_unittest.cc', | 72 'httpbase_unittest.cc', |
71 'httpcommon_unittest.cc', | 73 'httpcommon_unittest.cc', |
72 'httpserver_unittest.cc', | 74 'httpserver_unittest.cc', |
73 'ipaddress_unittest.cc', | 75 'ipaddress_unittest.cc', |
74 'logging_unittest.cc', | 76 'logging_unittest.cc', |
75 'md5digest_unittest.cc', | 77 'md5digest_unittest.cc', |
76 'messagedigest_unittest.cc', | 78 'messagedigest_unittest.cc', |
(...skipping 29 matching lines...) Expand all Loading... |
106 'stringencode_unittest.cc', | 108 'stringencode_unittest.cc', |
107 'stringutils_unittest.cc', | 109 'stringutils_unittest.cc', |
108 'swap_queue_unittest.cc', | 110 'swap_queue_unittest.cc', |
109 # TODO(ronghuawu): Reenable this test. | 111 # TODO(ronghuawu): Reenable this test. |
110 # 'systeminfo_unittest.cc', | 112 # 'systeminfo_unittest.cc', |
111 'task_queue_unittest.cc', | 113 'task_queue_unittest.cc', |
112 'task_unittest.cc', | 114 'task_unittest.cc', |
113 'testclient_unittest.cc', | 115 'testclient_unittest.cc', |
114 'thread_checker_unittest.cc', | 116 'thread_checker_unittest.cc', |
115 'thread_unittest.cc', | 117 'thread_unittest.cc', |
| 118 'timedelta.h', |
116 'timeutils_unittest.cc', | 119 'timeutils_unittest.cc', |
117 'urlencode_unittest.cc', | 120 'urlencode_unittest.cc', |
118 'versionparsing_unittest.cc', | 121 'versionparsing_unittest.cc', |
119 # TODO(ronghuawu): Reenable this test. | 122 # TODO(ronghuawu): Reenable this test. |
120 # 'windowpicker_unittest.cc', | 123 # 'windowpicker_unittest.cc', |
121 ], | 124 ], |
122 'conditions': [ | 125 'conditions': [ |
123 ['OS=="linux"', { | 126 ['OS=="linux"', { |
124 'sources': [ | 127 'sources': [ |
125 'latebindingsymboltable_unittest.cc', | 128 'latebindingsymboltable_unittest.cc', |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { | 172 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { |
170 'defines': [ | 173 'defines': [ |
171 'CARBON_DEPRECATED=YES', | 174 'CARBON_DEPRECATED=YES', |
172 ], | 175 ], |
173 }], | 176 }], |
174 ], # conditions | 177 ], # conditions |
175 }, | 178 }, |
176 }, | 179 }, |
177 ], | 180 ], |
178 } | 181 } |
OLD | NEW |