Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: webrtc/system_wrappers/BUILD.gn

Issue 1601523009: Remove ConditionVariableWrapper. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Move include inside guard Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/system_wrappers/include/condition_variable_wrapper.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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")
11 11
12 static_library("system_wrappers") { 12 static_library("system_wrappers") {
13 sources = [ 13 sources = [
14 "include/aligned_array.h", 14 "include/aligned_array.h",
15 "include/aligned_malloc.h", 15 "include/aligned_malloc.h",
16 "include/atomic32.h", 16 "include/atomic32.h",
17 "include/clock.h", 17 "include/clock.h",
18 "include/condition_variable_wrapper.h",
19 "include/cpu_features_wrapper.h", 18 "include/cpu_features_wrapper.h",
20 "include/cpu_info.h", 19 "include/cpu_info.h",
21 "include/critical_section_wrapper.h", 20 "include/critical_section_wrapper.h",
22 "include/data_log.h", 21 "include/data_log.h",
23 "include/data_log_c.h", 22 "include/data_log_c.h",
24 "include/data_log_impl.h", 23 "include/data_log_impl.h",
25 "include/event_wrapper.h", 24 "include/event_wrapper.h",
26 "include/field_trial.h", 25 "include/field_trial.h",
27 "include/file_wrapper.h", 26 "include/file_wrapper.h",
28 "include/fix_interlocked_exchange_pointer_win.h", 27 "include/fix_interlocked_exchange_pointer_win.h",
29 "include/logging.h", 28 "include/logging.h",
30 "include/metrics.h", 29 "include/metrics.h",
31 "include/ref_count.h", 30 "include/ref_count.h",
32 "include/rtp_to_ntp.h", 31 "include/rtp_to_ntp.h",
33 "include/rw_lock_wrapper.h", 32 "include/rw_lock_wrapper.h",
34 "include/scoped_vector.h", 33 "include/scoped_vector.h",
35 "include/sleep.h", 34 "include/sleep.h",
36 "include/sort.h", 35 "include/sort.h",
37 "include/static_instance.h", 36 "include/static_instance.h",
38 "include/stl_util.h", 37 "include/stl_util.h",
39 "include/stringize_macros.h", 38 "include/stringize_macros.h",
40 "include/tick_util.h", 39 "include/tick_util.h",
41 "include/timestamp_extrapolator.h", 40 "include/timestamp_extrapolator.h",
42 "include/trace.h", 41 "include/trace.h",
43 "include/utf_util_win.h", 42 "include/utf_util_win.h",
44 "source/aligned_malloc.cc", 43 "source/aligned_malloc.cc",
45 "source/atomic32_mac.cc", 44 "source/atomic32_mac.cc",
46 "source/atomic32_win.cc", 45 "source/atomic32_win.cc",
47 "source/clock.cc", 46 "source/clock.cc",
48 "source/condition_variable.cc",
49 "source/condition_variable_event_win.cc", 47 "source/condition_variable_event_win.cc",
50 "source/condition_variable_event_win.h", 48 "source/condition_variable_event_win.h",
51 "source/condition_variable_native_win.cc",
52 "source/condition_variable_native_win.h",
53 "source/cpu_features.cc", 49 "source/cpu_features.cc",
54 "source/cpu_info.cc", 50 "source/cpu_info.cc",
55 "source/critical_section.cc", 51 "source/critical_section.cc",
56 "source/data_log_c.cc", 52 "source/data_log_c.cc",
57 "source/event.cc", 53 "source/event.cc",
58 "source/event_timer_posix.cc", 54 "source/event_timer_posix.cc",
59 "source/event_timer_posix.h", 55 "source/event_timer_posix.h",
60 "source/event_timer_win.cc", 56 "source/event_timer_win.cc",
61 "source/event_timer_win.h", 57 "source/event_timer_win.h",
62 "source/file_impl.cc", 58 "source/file_impl.cc",
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 "source/cpu_features_android.c", 189 "source/cpu_features_android.c",
194 ] 190 ]
195 191
196 configs += [ "..:common_config" ] 192 configs += [ "..:common_config" ]
197 public_configs = [ "..:common_inherited_config" ] 193 public_configs = [ "..:common_inherited_config" ]
198 deps = [ 194 deps = [
199 "//third_party/android_tools:cpu_features", 195 "//third_party/android_tools:cpu_features",
200 ] 196 ]
201 } 197 }
202 } 198 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/system_wrappers/include/condition_variable_wrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698