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

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

Issue 1999723002: Fix iOS GN build and cleanup system_wrappers (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Renamed to atomic32_non_darwin_unix.cc due to _android suffix filtering Created 4 years, 6 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/modules/audio_device/ios/audio_device_ios.h » ('j') | webrtc/sdk/BUILD.gn » ('J')
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/arm.gni") 9 import("//build/config/arm.gni")
10 import("../build/webrtc.gni") 10 import("../build/webrtc.gni")
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 # TODO(fdegans): Enable this. See crbug.com/408997. 232 # TODO(fdegans): Enable this. See crbug.com/408997.
233 if (rtc_use_lto) { 233 if (rtc_use_lto) {
234 cflags -= [ 234 cflags -= [
235 "-flto", 235 "-flto",
236 "-ffat-lto-objects", 236 "-ffat-lto-objects",
237 ] 237 ]
238 } 238 }
239 239
240 configs += [ "..:common_config" ] 240 configs += [ "..:common_config" ]
241 public_configs = [ "..:common_inherited_config" ] 241 public_configs = [ "..:common_inherited_config" ]
242
243 if (is_clang) {
244 # Suppress warnings from Chrome's Clang plugins.
245 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
246 configs -= [ "//build/config/clang:find_bad_constructs" ]
247 }
242 } 248 }
243 } 249 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_device/ios/audio_device_ios.h » ('j') | webrtc/sdk/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698