| 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 { | 9 { |
| 10 'includes': ['../build/common.gypi',], | 10 'includes': ['../build/common.gypi',], |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 'source/aligned_malloc_unittest.cc', | 23 'source/aligned_malloc_unittest.cc', |
| 24 'source/clock_unittest.cc', | 24 'source/clock_unittest.cc', |
| 25 'source/condition_variable_unittest.cc', | 25 'source/condition_variable_unittest.cc', |
| 26 'source/critical_section_unittest.cc', | 26 'source/critical_section_unittest.cc', |
| 27 'source/logging_unittest.cc', | 27 'source/logging_unittest.cc', |
| 28 'source/data_log_unittest.cc', | 28 'source/data_log_unittest.cc', |
| 29 'source/data_log_unittest_disabled.cc', | 29 'source/data_log_unittest_disabled.cc', |
| 30 'source/data_log_helpers_unittest.cc', | 30 'source/data_log_helpers_unittest.cc', |
| 31 'source/data_log_c_helpers_unittest.c', | 31 'source/data_log_c_helpers_unittest.c', |
| 32 'source/data_log_c_helpers_unittest.h', | 32 'source/data_log_c_helpers_unittest.h', |
| 33 'source/event_timer_posix_unittest.cc', |
| 33 'source/metrics_unittest.cc', | 34 'source/metrics_unittest.cc', |
| 34 'source/ntp_time_unittest.cc', | 35 'source/ntp_time_unittest.cc', |
| 35 'source/rtp_to_ntp_unittest.cc', | 36 'source/rtp_to_ntp_unittest.cc', |
| 36 'source/scoped_vector_unittest.cc', | 37 'source/scoped_vector_unittest.cc', |
| 37 'source/stringize_macros_unittest.cc', | 38 'source/stringize_macros_unittest.cc', |
| 38 'source/stl_util_unittest.cc', | 39 'source/stl_util_unittest.cc', |
| 39 ], | 40 ], |
| 40 'conditions': [ | 41 'conditions': [ |
| 41 ['enable_data_logging==1', { | 42 ['enable_data_logging==1', { |
| 42 'sources!': [ 'source/data_log_unittest_disabled.cc', ], | 43 'sources!': [ 'source/data_log_unittest_disabled.cc', ], |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 ], | 81 ], |
| 81 'sources': [ | 82 'sources': [ |
| 82 'system_wrappers_unittests.isolate', | 83 'system_wrappers_unittests.isolate', |
| 83 ], | 84 ], |
| 84 }, | 85 }, |
| 85 ], | 86 ], |
| 86 }], | 87 }], |
| 87 ], | 88 ], |
| 88 } | 89 } |
| 89 | 90 |
| OLD | NEW |