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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 'source/event_timer_posix.cc', | 75 'source/event_timer_posix.cc', |
76 'source/event_timer_posix.h', | 76 'source/event_timer_posix.h', |
77 'source/event_timer_win.cc', | 77 'source/event_timer_win.cc', |
78 'source/event_timer_win.h', | 78 'source/event_timer_win.h', |
79 'source/file_impl.cc', | 79 'source/file_impl.cc', |
80 'source/file_impl.h', | 80 'source/file_impl.h', |
81 'source/logcat_trace_context.cc', | 81 'source/logcat_trace_context.cc', |
82 'source/logging.cc', | 82 'source/logging.cc', |
83 'source/rtp_to_ntp.cc', | 83 'source/rtp_to_ntp.cc', |
84 'source/rw_lock.cc', | 84 'source/rw_lock.cc', |
85 'source/rw_lock_generic.cc', | |
86 'source/rw_lock_generic.h', | |
87 'source/rw_lock_posix.cc', | 85 'source/rw_lock_posix.cc', |
88 'source/rw_lock_posix.h', | 86 'source/rw_lock_posix.h', |
89 'source/rw_lock_win.cc', | 87 'source/rw_lock_win.cc', |
90 'source/rw_lock_win.h', | 88 'source/rw_lock_win.h', |
| 89 'source/rw_lock_winxp_win.cc', |
| 90 'source/rw_lock_winxp_win.h', |
91 'source/sleep.cc', | 91 'source/sleep.cc', |
92 'source/sort.cc', | 92 'source/sort.cc', |
93 'source/tick_util.cc', | 93 'source/tick_util.cc', |
94 'source/timestamp_extrapolator.cc', | 94 'source/timestamp_extrapolator.cc', |
95 'source/trace_impl.cc', | 95 'source/trace_impl.cc', |
96 'source/trace_impl.h', | 96 'source/trace_impl.h', |
97 'source/trace_posix.cc', | 97 'source/trace_posix.cc', |
98 'source/trace_posix.h', | 98 'source/trace_posix.h', |
99 'source/trace_win.cc', | 99 'source/trace_win.cc', |
100 'source/trace_win.h', | 100 'source/trace_win.h', |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 'type': 'static_library', | 204 'type': 'static_library', |
205 'dependencies': [ | 205 'dependencies': [ |
206 'system_wrappers', | 206 'system_wrappers', |
207 'field_trial_default', | 207 'field_trial_default', |
208 'metrics_default', | 208 'metrics_default', |
209 ] | 209 ] |
210 }, | 210 }, |
211 ], # targets | 211 ], # targets |
212 } | 212 } |
213 | 213 |
OLD | NEW |