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

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

Issue 1469013002: Move ThreadWrapper to ProcessThread in base. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: removed comment Created 5 years 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
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")
(...skipping 19 matching lines...) Expand all
30 "include/metrics.h", 30 "include/metrics.h",
31 "include/ref_count.h", 31 "include/ref_count.h",
32 "include/rtp_to_ntp.h", 32 "include/rtp_to_ntp.h",
33 "include/rw_lock_wrapper.h", 33 "include/rw_lock_wrapper.h",
34 "include/scoped_vector.h", 34 "include/scoped_vector.h",
35 "include/sleep.h", 35 "include/sleep.h",
36 "include/sort.h", 36 "include/sort.h",
37 "include/static_instance.h", 37 "include/static_instance.h",
38 "include/stl_util.h", 38 "include/stl_util.h",
39 "include/stringize_macros.h", 39 "include/stringize_macros.h",
40 "include/thread_wrapper.h",
41 "include/tick_util.h", 40 "include/tick_util.h",
42 "include/timestamp_extrapolator.h", 41 "include/timestamp_extrapolator.h",
43 "include/trace.h", 42 "include/trace.h",
44 "include/utf_util_win.h", 43 "include/utf_util_win.h",
45 "source/aligned_malloc.cc", 44 "source/aligned_malloc.cc",
46 "source/atomic32_mac.cc", 45 "source/atomic32_mac.cc",
47 "source/atomic32_win.cc", 46 "source/atomic32_win.cc",
48 "source/clock.cc", 47 "source/clock.cc",
49 "source/condition_variable.cc", 48 "source/condition_variable.cc",
50 "source/condition_variable_event_win.cc", 49 "source/condition_variable_event_win.cc",
(...skipping 21 matching lines...) Expand all
72 "source/rtp_to_ntp.cc", 71 "source/rtp_to_ntp.cc",
73 "source/rw_lock.cc", 72 "source/rw_lock.cc",
74 "source/rw_lock_generic.cc", 73 "source/rw_lock_generic.cc",
75 "source/rw_lock_generic.h", 74 "source/rw_lock_generic.h",
76 "source/rw_lock_posix.cc", 75 "source/rw_lock_posix.cc",
77 "source/rw_lock_posix.h", 76 "source/rw_lock_posix.h",
78 "source/rw_lock_win.cc", 77 "source/rw_lock_win.cc",
79 "source/rw_lock_win.h", 78 "source/rw_lock_win.h",
80 "source/sleep.cc", 79 "source/sleep.cc",
81 "source/sort.cc", 80 "source/sort.cc",
82 "source/thread.cc",
83 "source/thread_posix.cc",
84 "source/thread_posix.h",
85 "source/thread_win.cc",
86 "source/thread_win.h",
87 "source/tick_util.cc", 81 "source/tick_util.cc",
88 "source/timestamp_extrapolator.cc", 82 "source/timestamp_extrapolator.cc",
89 "source/trace_impl.cc", 83 "source/trace_impl.cc",
90 "source/trace_impl.h", 84 "source/trace_impl.h",
91 "source/trace_posix.cc", 85 "source/trace_posix.cc",
92 "source/trace_posix.h", 86 "source/trace_posix.h",
93 "source/trace_win.cc", 87 "source/trace_win.cc",
94 "source/trace_win.h", 88 "source/trace_win.h",
95 ] 89 ]
96 90
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 180
187 configs += [ "..:common_config" ] 181 configs += [ "..:common_config" ]
188 public_configs = [ "..:common_inherited_config" ] 182 public_configs = [ "..:common_inherited_config" ]
189 } 183 }
190 184
191 source_set("system_wrappers_default") { 185 source_set("system_wrappers_default") {
192 configs += [ "..:common_config" ] 186 configs += [ "..:common_config" ]
193 public_configs = [ "..:common_inherited_config" ] 187 public_configs = [ "..:common_inherited_config" ]
194 188
195 deps = [ 189 deps = [
196 ":system_wrappers",
197 ":field_trial_default", 190 ":field_trial_default",
198 ":metrics_default", 191 ":metrics_default",
192 ":system_wrappers",
199 ] 193 ]
200 } 194 }
201 195
202 if (is_android) { 196 if (is_android) {
203 source_set("cpu_features_android") { 197 source_set("cpu_features_android") {
204 sources = [ 198 sources = [
205 "source/cpu_features_android.c", 199 "source/cpu_features_android.c",
206 ] 200 ]
207 201
208 configs += [ "..:common_config" ] 202 configs += [ "..:common_config" ]
209 public_configs = [ "..:common_inherited_config" ] 203 public_configs = [ "..:common_inherited_config" ]
210 deps = [ 204 deps = [
211 "//third_party/android_tools:cpu_features", 205 "//third_party/android_tools:cpu_features",
212 ] 206 ]
213 } 207 }
214 } 208 }
OLDNEW
« no previous file with comments | « webrtc/modules/video_render/windows/video_render_direct3d9.cc ('k') | webrtc/system_wrappers/include/data_log_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698