OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
10 import("../build/webrtc.gni") | 10 import("../build/webrtc.gni") |
(...skipping 16 matching lines...) Expand all Loading... |
27 "include/fix_interlocked_exchange_pointer_win.h", | 27 "include/fix_interlocked_exchange_pointer_win.h", |
28 "include/logging.h", | 28 "include/logging.h", |
29 "include/metrics.h", | 29 "include/metrics.h", |
30 "include/rtp_to_ntp.h", | 30 "include/rtp_to_ntp.h", |
31 "include/rw_lock_wrapper.h", | 31 "include/rw_lock_wrapper.h", |
32 "include/sleep.h", | 32 "include/sleep.h", |
33 "include/sort.h", | 33 "include/sort.h", |
34 "include/static_instance.h", | 34 "include/static_instance.h", |
35 "include/stl_util.h", | 35 "include/stl_util.h", |
36 "include/stringize_macros.h", | 36 "include/stringize_macros.h", |
37 "include/tick_util.h", | |
38 "include/timestamp_extrapolator.h", | 37 "include/timestamp_extrapolator.h", |
39 "include/trace.h", | 38 "include/trace.h", |
40 "include/utf_util_win.h", | 39 "include/utf_util_win.h", |
41 "source/aligned_malloc.cc", | 40 "source/aligned_malloc.cc", |
42 "source/atomic32_mac.cc", | 41 "source/atomic32_mac.cc", |
43 "source/atomic32_win.cc", | 42 "source/atomic32_win.cc", |
44 "source/clock.cc", | 43 "source/clock.cc", |
45 "source/condition_variable_event_win.cc", | 44 "source/condition_variable_event_win.cc", |
46 "source/condition_variable_event_win.h", | 45 "source/condition_variable_event_win.h", |
47 "source/cpu_features.cc", | 46 "source/cpu_features.cc", |
(...skipping 10 matching lines...) Expand all Loading... |
58 "source/rtp_to_ntp.cc", | 57 "source/rtp_to_ntp.cc", |
59 "source/rw_lock.cc", | 58 "source/rw_lock.cc", |
60 "source/rw_lock_posix.cc", | 59 "source/rw_lock_posix.cc", |
61 "source/rw_lock_posix.h", | 60 "source/rw_lock_posix.h", |
62 "source/rw_lock_win.cc", | 61 "source/rw_lock_win.cc", |
63 "source/rw_lock_win.h", | 62 "source/rw_lock_win.h", |
64 "source/rw_lock_winxp_win.cc", | 63 "source/rw_lock_winxp_win.cc", |
65 "source/rw_lock_winxp_win.h", | 64 "source/rw_lock_winxp_win.h", |
66 "source/sleep.cc", | 65 "source/sleep.cc", |
67 "source/sort.cc", | 66 "source/sort.cc", |
68 "source/tick_util.cc", | |
69 "source/timestamp_extrapolator.cc", | 67 "source/timestamp_extrapolator.cc", |
70 "source/trace_impl.cc", | 68 "source/trace_impl.cc", |
71 "source/trace_impl.h", | 69 "source/trace_impl.h", |
72 "source/trace_posix.cc", | 70 "source/trace_posix.cc", |
73 "source/trace_posix.h", | 71 "source/trace_posix.h", |
74 "source/trace_win.cc", | 72 "source/trace_win.cc", |
75 "source/trace_win.h", | 73 "source/trace_win.h", |
76 ] | 74 ] |
77 | 75 |
78 configs += [ "..:common_config" ] | 76 configs += [ "..:common_config" ] |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 if (is_linux) { | 183 if (is_linux) { |
186 source_set("cpu_features_linux") { | 184 source_set("cpu_features_linux") { |
187 sources = [ | 185 sources = [ |
188 "source/cpu_features_linux.c", | 186 "source/cpu_features_linux.c", |
189 ] | 187 ] |
190 | 188 |
191 configs += [ "..:common_config" ] | 189 configs += [ "..:common_config" ] |
192 public_configs = [ "..:common_inherited_config" ] | 190 public_configs = [ "..:common_inherited_config" ] |
193 } | 191 } |
194 } | 192 } |
OLD | NEW |