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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 'source/condition_variable.cc', | 57 'source/condition_variable.cc', |
58 'source/condition_variable_posix.cc', | 58 'source/condition_variable_posix.cc', |
59 'source/condition_variable_posix.h', | 59 'source/condition_variable_posix.h', |
60 'source/condition_variable_event_win.cc', | 60 'source/condition_variable_event_win.cc', |
61 'source/condition_variable_event_win.h', | 61 'source/condition_variable_event_win.h', |
62 'source/condition_variable_native_win.cc', | 62 'source/condition_variable_native_win.cc', |
63 'source/condition_variable_native_win.h', | 63 'source/condition_variable_native_win.h', |
64 'source/cpu_info.cc', | 64 'source/cpu_info.cc', |
65 'source/cpu_features.cc', | 65 'source/cpu_features.cc', |
66 'source/critical_section.cc', | 66 'source/critical_section.cc', |
67 'source/critical_section_posix.cc', | |
68 'source/critical_section_posix.h', | |
69 'source/critical_section_win.cc', | |
70 'source/critical_section_win.h', | |
71 'source/data_log.cc', | 67 'source/data_log.cc', |
72 'source/data_log_c.cc', | 68 'source/data_log_c.cc', |
73 'source/data_log_no_op.cc', | 69 'source/data_log_no_op.cc', |
74 'source/event.cc', | 70 'source/event.cc', |
75 'source/event_timer_posix.cc', | 71 'source/event_timer_posix.cc', |
76 'source/event_timer_posix.h', | 72 'source/event_timer_posix.h', |
77 'source/event_timer_win.cc', | 73 'source/event_timer_win.cc', |
78 'source/event_timer_win.h', | 74 'source/event_timer_win.h', |
79 'source/file_impl.cc', | 75 'source/file_impl.cc', |
80 'source/file_impl.h', | 76 'source/file_impl.h', |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 'type': 'static_library', | 200 'type': 'static_library', |
205 'dependencies': [ | 201 'dependencies': [ |
206 'system_wrappers', | 202 'system_wrappers', |
207 'field_trial_default', | 203 'field_trial_default', |
208 'metrics_default', | 204 'metrics_default', |
209 ] | 205 ] |
210 }, | 206 }, |
211 ], # targets | 207 ], # targets |
212 } | 208 } |
213 | 209 |
OLD | NEW |