OLD | NEW |
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 24 matching lines...) Expand all Loading... |
35 'include/logging.h', | 35 'include/logging.h', |
36 'include/metrics.h', | 36 'include/metrics.h', |
37 'include/ntp_time.h', | 37 'include/ntp_time.h', |
38 'include/rtp_to_ntp.h', | 38 'include/rtp_to_ntp.h', |
39 'include/rw_lock_wrapper.h', | 39 'include/rw_lock_wrapper.h', |
40 'include/sleep.h', | 40 'include/sleep.h', |
41 'include/sort.h', | 41 'include/sort.h', |
42 'include/static_instance.h', | 42 'include/static_instance.h', |
43 'include/stl_util.h', | 43 'include/stl_util.h', |
44 'include/stringize_macros.h', | 44 'include/stringize_macros.h', |
45 'include/tick_util.h', | |
46 'include/timestamp_extrapolator.h', | 45 'include/timestamp_extrapolator.h', |
47 'include/trace.h', | 46 'include/trace.h', |
48 'include/utf_util_win.h', | 47 'include/utf_util_win.h', |
49 'source/aligned_malloc.cc', | 48 'source/aligned_malloc.cc', |
50 'source/atomic32_mac.cc', | 49 'source/atomic32_mac.cc', |
51 'source/atomic32_posix.cc', | 50 'source/atomic32_posix.cc', |
52 'source/atomic32_win.cc', | 51 'source/atomic32_win.cc', |
53 'source/clock.cc', | 52 'source/clock.cc', |
54 'source/condition_variable_event_win.cc', | 53 'source/condition_variable_event_win.cc', |
55 'source/condition_variable_event_win.h', | 54 'source/condition_variable_event_win.h', |
(...skipping 14 matching lines...) Expand all Loading... |
70 'source/rtp_to_ntp.cc', | 69 'source/rtp_to_ntp.cc', |
71 'source/rw_lock.cc', | 70 'source/rw_lock.cc', |
72 'source/rw_lock_posix.cc', | 71 'source/rw_lock_posix.cc', |
73 'source/rw_lock_posix.h', | 72 'source/rw_lock_posix.h', |
74 'source/rw_lock_win.cc', | 73 'source/rw_lock_win.cc', |
75 'source/rw_lock_win.h', | 74 'source/rw_lock_win.h', |
76 'source/rw_lock_winxp_win.cc', | 75 'source/rw_lock_winxp_win.cc', |
77 'source/rw_lock_winxp_win.h', | 76 'source/rw_lock_winxp_win.h', |
78 'source/sleep.cc', | 77 'source/sleep.cc', |
79 'source/sort.cc', | 78 'source/sort.cc', |
80 'source/tick_util.cc', | |
81 'source/timestamp_extrapolator.cc', | 79 'source/timestamp_extrapolator.cc', |
82 'source/trace_impl.cc', | 80 'source/trace_impl.cc', |
83 'source/trace_impl.h', | 81 'source/trace_impl.h', |
84 'source/trace_posix.cc', | 82 'source/trace_posix.cc', |
85 'source/trace_posix.h', | 83 'source/trace_posix.h', |
86 'source/trace_win.cc', | 84 'source/trace_win.cc', |
87 'source/trace_win.h', | 85 'source/trace_win.h', |
88 ], | 86 ], |
89 'conditions': [ | 87 'conditions': [ |
90 ['enable_data_logging==1', { | 88 ['enable_data_logging==1', { |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 'type': 'static_library', | 187 'type': 'static_library', |
190 'dependencies': [ | 188 'dependencies': [ |
191 'system_wrappers', | 189 'system_wrappers', |
192 'field_trial_default', | 190 'field_trial_default', |
193 'metrics_default', | 191 'metrics_default', |
194 ] | 192 ] |
195 }, | 193 }, |
196 ], # targets | 194 ], # targets |
197 } | 195 } |
198 | 196 |
OLD | NEW |