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

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

Issue 1601743004: Make CriticalSectionWrapper non-virtual (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Improve comment 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
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 "source/condition_variable.cc", 48 "source/condition_variable.cc",
49 "source/condition_variable_event_win.cc", 49 "source/condition_variable_event_win.cc",
50 "source/condition_variable_event_win.h", 50 "source/condition_variable_event_win.h",
51 "source/condition_variable_native_win.cc", 51 "source/condition_variable_native_win.cc",
52 "source/condition_variable_native_win.h", 52 "source/condition_variable_native_win.h",
53 "source/condition_variable_posix.cc", 53 "source/condition_variable_posix.cc",
54 "source/condition_variable_posix.h", 54 "source/condition_variable_posix.h",
55 "source/cpu_features.cc", 55 "source/cpu_features.cc",
56 "source/cpu_info.cc", 56 "source/cpu_info.cc",
57 "source/critical_section.cc", 57 "source/critical_section.cc",
58 "source/critical_section_posix.cc",
59 "source/critical_section_posix.h",
60 "source/critical_section_win.cc",
61 "source/critical_section_win.h",
62 "source/data_log_c.cc", 58 "source/data_log_c.cc",
63 "source/event.cc", 59 "source/event.cc",
64 "source/event_timer_posix.cc", 60 "source/event_timer_posix.cc",
65 "source/event_timer_posix.h", 61 "source/event_timer_posix.h",
66 "source/event_timer_win.cc", 62 "source/event_timer_win.cc",
67 "source/event_timer_win.h", 63 "source/event_timer_win.h",
68 "source/file_impl.cc", 64 "source/file_impl.cc",
69 "source/file_impl.h", 65 "source/file_impl.h",
70 "source/logging.cc", 66 "source/logging.cc",
71 "source/rtp_to_ntp.cc", 67 "source/rtp_to_ntp.cc",
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 "source/cpu_features_android.c", 195 "source/cpu_features_android.c",
200 ] 196 ]
201 197
202 configs += [ "..:common_config" ] 198 configs += [ "..:common_config" ]
203 public_configs = [ "..:common_inherited_config" ] 199 public_configs = [ "..:common_inherited_config" ]
204 deps = [ 200 deps = [
205 "//third_party/android_tools:cpu_features", 201 "//third_party/android_tools:cpu_features",
206 ] 202 ]
207 } 203 }
208 } 204 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698