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

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

Issue 2781713004: GN: Enable ARC for Mac and iOS in rtc_* templates (Closed)
Patch Set: Rebase 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/sdk/objc/Framework/UnitTests/avformatmappertests.mm ('k') | webrtc/test/mac/run_test.mm » ('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 import("../webrtc.gni") 9 import("../webrtc.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 } 113 }
114 114
115 rtc_source_set("fileutils") { 115 rtc_source_set("fileutils") {
116 testonly = true 116 testonly = true
117 sources = [ 117 sources = [
118 "testsupport/fileutils.cc", 118 "testsupport/fileutils.cc",
119 "testsupport/fileutils.h", 119 "testsupport/fileutils.h",
120 ] 120 ]
121 if (is_ios) { 121 if (is_ios) {
122 sources += [ "testsupport/iosfileutils.mm" ] 122 sources += [ "testsupport/iosfileutils.mm" ]
123 configs += [ "//build/config/compiler:enable_arc" ]
124 } 123 }
125 visibility = [ ":*" ] 124 visibility = [ ":*" ]
126 } 125 }
127 126
128 rtc_source_set("video_test_support") { 127 rtc_source_set("video_test_support") {
129 testonly = true 128 testonly = true
130 129
131 sources = [ 130 sources = [
132 "testsupport/frame_reader.h", 131 "testsupport/frame_reader.h",
133 "testsupport/frame_writer.h", 132 "testsupport/frame_writer.h",
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 478 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
480 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 479 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
481 } 480 }
482 481
483 deps = [ 482 deps = [
484 ":test_support", 483 ":test_support",
485 "../modules/media_file", 484 "../modules/media_file",
486 "//testing/gtest", 485 "//testing/gtest",
487 ] 486 ]
488 } 487 }
OLDNEW
« no previous file with comments | « webrtc/sdk/objc/Framework/UnitTests/avformatmappertests.mm ('k') | webrtc/test/mac/run_test.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698