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

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

Issue 2717083002: Enable GN check for webrtc/base (Closed)
Patch Set: Rebased Created 3 years, 8 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 | « webrtc/modules/audio_coding/BUILD.gn ('k') | webrtc/system_wrappers/include/stringize_macros.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 12 matching lines...) Expand all
23 "include/event_wrapper.h", 23 "include/event_wrapper.h",
24 "include/field_trial.h", 24 "include/field_trial.h",
25 "include/file_wrapper.h", 25 "include/file_wrapper.h",
26 "include/fix_interlocked_exchange_pointer_win.h", 26 "include/fix_interlocked_exchange_pointer_win.h",
27 "include/metrics.h", 27 "include/metrics.h",
28 "include/ntp_time.h", 28 "include/ntp_time.h",
29 "include/rtp_to_ntp_estimator.h", 29 "include/rtp_to_ntp_estimator.h",
30 "include/rw_lock_wrapper.h", 30 "include/rw_lock_wrapper.h",
31 "include/sleep.h", 31 "include/sleep.h",
32 "include/static_instance.h", 32 "include/static_instance.h",
33 "include/stringize_macros.h",
34 "include/timestamp_extrapolator.h", 33 "include/timestamp_extrapolator.h",
35 "include/trace.h", 34 "include/trace.h",
36 "source/aligned_malloc.cc", 35 "source/aligned_malloc.cc",
37 "source/atomic32_win.cc", 36 "source/atomic32_win.cc",
38 "source/clock.cc", 37 "source/clock.cc",
39 "source/cpu_features.cc", 38 "source/cpu_features.cc",
40 "source/cpu_info.cc", 39 "source/cpu_info.cc",
41 "source/event.cc", 40 "source/event.cc",
42 "source/event_timer_posix.cc", 41 "source/event_timer_posix.cc",
43 "source/event_timer_posix.h", 42 "source/event_timer_posix.h",
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 testonly = true 161 testonly = true
163 sources = [ 162 sources = [
164 "source/aligned_array_unittest.cc", 163 "source/aligned_array_unittest.cc",
165 "source/aligned_malloc_unittest.cc", 164 "source/aligned_malloc_unittest.cc",
166 "source/clock_unittest.cc", 165 "source/clock_unittest.cc",
167 "source/event_timer_posix_unittest.cc", 166 "source/event_timer_posix_unittest.cc",
168 "source/metrics_default_unittest.cc", 167 "source/metrics_default_unittest.cc",
169 "source/metrics_unittest.cc", 168 "source/metrics_unittest.cc",
170 "source/ntp_time_unittest.cc", 169 "source/ntp_time_unittest.cc",
171 "source/rtp_to_ntp_estimator_unittest.cc", 170 "source/rtp_to_ntp_estimator_unittest.cc",
172 "source/stringize_macros_unittest.cc",
173 ] 171 ]
174 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 172 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
175 173
176 if (!build_with_chromium && is_clang) { 174 if (!build_with_chromium && is_clang) {
177 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 175 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
178 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 176 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
179 } 177 }
180 178
181 deps = [ 179 deps = [
182 ":metrics_default", 180 ":metrics_default",
183 ":system_wrappers", 181 ":system_wrappers",
184 "../test:test_main", 182 "../test:test_main",
185 "//testing/gtest", 183 "//testing/gtest",
186 ] 184 ]
187 185
188 if (is_android) { 186 if (is_android) {
189 deps += [ "//testing/android/native_test:native_test_support" ] 187 deps += [ "//testing/android/native_test:native_test_support" ]
190 188
191 shard_timeout = 900 189 shard_timeout = 900
192 } 190 }
193 } 191 }
194 } 192 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/BUILD.gn ('k') | webrtc/system_wrappers/include/stringize_macros.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698