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', ], |
11 'targets': [ | 11 'targets': [ |
12 { | 12 { |
13 'target_name': 'system_wrappers', | 13 'target_name': 'system_wrappers', |
14 'type': 'static_library', | 14 'type': 'static_library', |
15 'dependencies': [ | 15 'dependencies': [ |
16 '<(webrtc_root)/common.gyp:webrtc_common', | 16 '<(webrtc_root)/common.gyp:webrtc_common', |
17 '../base/base.gyp:rtc_base_approved', | 17 '../base/base.gyp:rtc_base_approved', |
18 ], | 18 ], |
19 'sources': [ | 19 'sources': [ |
20 'include/aligned_array.h', | 20 'include/aligned_array.h', |
21 'include/aligned_malloc.h', | 21 'include/aligned_malloc.h', |
22 'include/atomic32.h', | 22 'include/atomic32.h', |
23 'include/clock.h', | 23 'include/clock.h', |
24 'include/condition_variable_wrapper.h', | |
25 'include/cpu_info.h', | 24 'include/cpu_info.h', |
26 'include/cpu_features_wrapper.h', | 25 'include/cpu_features_wrapper.h', |
27 'include/critical_section_wrapper.h', | 26 'include/critical_section_wrapper.h', |
28 'include/data_log.h', | 27 'include/data_log.h', |
29 'include/data_log_c.h', | 28 'include/data_log_c.h', |
30 'include/data_log_impl.h', | 29 'include/data_log_impl.h', |
31 'include/event_wrapper.h', | 30 'include/event_wrapper.h', |
32 'include/field_trial.h', | 31 'include/field_trial.h', |
33 'include/file_wrapper.h', | 32 'include/file_wrapper.h', |
34 'include/fix_interlocked_exchange_pointer_win.h', | 33 'include/fix_interlocked_exchange_pointer_win.h', |
(...skipping 12 matching lines...) Expand all Loading... |
47 'include/stringize_macros.h', | 46 'include/stringize_macros.h', |
48 'include/tick_util.h', | 47 'include/tick_util.h', |
49 'include/timestamp_extrapolator.h', | 48 'include/timestamp_extrapolator.h', |
50 'include/trace.h', | 49 'include/trace.h', |
51 'include/utf_util_win.h', | 50 'include/utf_util_win.h', |
52 'source/aligned_malloc.cc', | 51 'source/aligned_malloc.cc', |
53 'source/atomic32_mac.cc', | 52 'source/atomic32_mac.cc', |
54 'source/atomic32_posix.cc', | 53 'source/atomic32_posix.cc', |
55 'source/atomic32_win.cc', | 54 'source/atomic32_win.cc', |
56 'source/clock.cc', | 55 'source/clock.cc', |
57 'source/condition_variable.cc', | |
58 'source/condition_variable_event_win.cc', | 56 'source/condition_variable_event_win.cc', |
59 'source/condition_variable_event_win.h', | 57 'source/condition_variable_event_win.h', |
60 'source/condition_variable_native_win.cc', | |
61 'source/condition_variable_native_win.h', | |
62 'source/cpu_info.cc', | 58 'source/cpu_info.cc', |
63 'source/cpu_features.cc', | 59 'source/cpu_features.cc', |
64 'source/critical_section.cc', | 60 'source/critical_section.cc', |
65 'source/data_log.cc', | 61 'source/data_log.cc', |
66 'source/data_log_c.cc', | 62 'source/data_log_c.cc', |
67 'source/data_log_no_op.cc', | 63 'source/data_log_no_op.cc', |
68 'source/event.cc', | 64 'source/event.cc', |
69 'source/event_timer_posix.cc', | 65 'source/event_timer_posix.cc', |
70 'source/event_timer_posix.h', | 66 'source/event_timer_posix.h', |
71 'source/event_timer_win.cc', | 67 'source/event_timer_win.cc', |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 'type': 'static_library', | 194 'type': 'static_library', |
199 'dependencies': [ | 195 'dependencies': [ |
200 'system_wrappers', | 196 'system_wrappers', |
201 'field_trial_default', | 197 'field_trial_default', |
202 'metrics_default', | 198 'metrics_default', |
203 ] | 199 ] |
204 }, | 200 }, |
205 ], # targets | 201 ], # targets |
206 } | 202 } |
207 | 203 |
OLD | NEW |