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

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

Issue 2352063002: Fix modules_unittests on iOS. (Closed)
Patch Set: fix the fixed sizes Created 4 years, 2 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_processing/audio_processing_unittest.cc » ('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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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/webrtc.gni") 9 import("../build/webrtc.gni")
10 import("audio_coding/audio_coding.gni") 10 import("audio_coding/audio_coding.gni")
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after
660 shard_timeout = 900 660 shard_timeout = 900
661 } 661 }
662 if (is_ios) { 662 if (is_ios) {
663 deps += [ ":modules_unittests_bundle_data" ] 663 deps += [ ":modules_unittests_bundle_data" ]
664 configs += [ 664 configs += [
665 "..:common_objc", 665 "..:common_objc",
666 "//build/config/compiler:enable_arc", 666 "//build/config/compiler:enable_arc",
667 ] 667 ]
668 668
669 sources += [ 669 sources += [
670 "audio_device/ios/audio_device_unittest_ios.cc",
671 "audio_device/ios/objc/RTCAudioSessionTest.mm", 670 "audio_device/ios/objc/RTCAudioSessionTest.mm",
672 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", 671 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc",
673 ] 672 ]
674 673
674 if (target_cpu != "x64") {
675 sources += [ "audio_device/ios/audio_device_unittest_ios.cc" ]
676 }
677
675 ldflags = [ "-ObjC" ] 678 ldflags = [ "-ObjC" ]
676 } 679 }
677 } 680 }
678 } 681 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/audio_processing_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698