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

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

Issue 2546863003: Delete unused spreadsort implementation. (Closed)
Patch Set: Delete TestSort.cc too. Created 4 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
« no previous file with comments | « webrtc/LICENSE_THIRD_PARTY ('k') | webrtc/system_wrappers/include/sort.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 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/config.gni") 10 import("//build/config/android/config.gni")
(...skipping 13 matching lines...) Expand all
24 "include/event_wrapper.h", 24 "include/event_wrapper.h",
25 "include/field_trial.h", 25 "include/field_trial.h",
26 "include/file_wrapper.h", 26 "include/file_wrapper.h",
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/ntp_time.h", 30 "include/ntp_time.h",
31 "include/rtp_to_ntp.h", 31 "include/rtp_to_ntp.h",
32 "include/rw_lock_wrapper.h", 32 "include/rw_lock_wrapper.h",
33 "include/sleep.h", 33 "include/sleep.h",
34 "include/sort.h",
35 "include/static_instance.h", 34 "include/static_instance.h",
36 "include/stl_util.h", 35 "include/stl_util.h",
37 "include/stringize_macros.h", 36 "include/stringize_macros.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_win.cc", 41 "source/atomic32_win.cc",
43 "source/clock.cc", 42 "source/clock.cc",
44 "source/condition_variable_event_win.cc", 43 "source/condition_variable_event_win.cc",
45 "source/condition_variable_event_win.h", 44 "source/condition_variable_event_win.h",
46 "source/cpu_features.cc", 45 "source/cpu_features.cc",
47 "source/cpu_info.cc", 46 "source/cpu_info.cc",
48 "source/event.cc", 47 "source/event.cc",
49 "source/event_timer_posix.cc", 48 "source/event_timer_posix.cc",
50 "source/event_timer_posix.h", 49 "source/event_timer_posix.h",
51 "source/event_timer_win.cc", 50 "source/event_timer_win.cc",
52 "source/event_timer_win.h", 51 "source/event_timer_win.h",
53 "source/file_impl.cc", 52 "source/file_impl.cc",
54 "source/logging.cc", 53 "source/logging.cc",
55 "source/rtp_to_ntp.cc", 54 "source/rtp_to_ntp.cc",
56 "source/rw_lock.cc", 55 "source/rw_lock.cc",
57 "source/rw_lock_posix.cc", 56 "source/rw_lock_posix.cc",
58 "source/rw_lock_posix.h", 57 "source/rw_lock_posix.h",
59 "source/rw_lock_win.cc", 58 "source/rw_lock_win.cc",
60 "source/rw_lock_win.h", 59 "source/rw_lock_win.h",
61 "source/rw_lock_winxp_win.cc", 60 "source/rw_lock_winxp_win.cc",
62 "source/rw_lock_winxp_win.h", 61 "source/rw_lock_winxp_win.h",
63 "source/sleep.cc", 62 "source/sleep.cc",
64 "source/sort.cc",
65 "source/timestamp_extrapolator.cc", 63 "source/timestamp_extrapolator.cc",
66 "source/trace_impl.cc", 64 "source/trace_impl.cc",
67 "source/trace_impl.h", 65 "source/trace_impl.h",
68 "source/trace_posix.cc", 66 "source/trace_posix.cc",
69 "source/trace_posix.h", 67 "source/trace_posix.h",
70 "source/trace_win.cc", 68 "source/trace_win.cc",
71 "source/trace_win.h", 69 "source/trace_win.h",
72 ] 70 ]
73 71
74 defines = [] 72 defines = []
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 "//testing/gtest", 198 "//testing/gtest",
201 ] 199 ]
202 200
203 if (is_android) { 201 if (is_android) {
204 deps += [ "//testing/android/native_test:native_test_support" ] 202 deps += [ "//testing/android/native_test:native_test_support" ]
205 203
206 shard_timeout = 900 204 shard_timeout = 900
207 } 205 }
208 } 206 }
209 } 207 }
OLDNEW
« no previous file with comments | « webrtc/LICENSE_THIRD_PARTY ('k') | webrtc/system_wrappers/include/sort.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698