OLD | NEW |
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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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" ] | 123 configs += [ "//build/config/compiler:enable_arc" ] |
124 } | 124 } |
| 125 visibility = [ ":*" ] |
125 } | 126 } |
126 | 127 |
127 rtc_source_set("video_test_support") { | 128 rtc_source_set("video_test_support") { |
128 testonly = true | 129 testonly = true |
129 | 130 |
130 sources = [ | 131 sources = [ |
131 "testsupport/frame_reader.h", | 132 "testsupport/frame_reader.h", |
132 "testsupport/frame_writer.h", | 133 "testsupport/frame_writer.h", |
133 "testsupport/metrics/video_metrics.cc", | 134 "testsupport/metrics/video_metrics.cc", |
134 "testsupport/metrics/video_metrics.h", | 135 "testsupport/metrics/video_metrics.h", |
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 475 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
475 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 476 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
476 } | 477 } |
477 | 478 |
478 deps = [ | 479 deps = [ |
479 ":test_support", | 480 ":test_support", |
480 "../modules/media_file", | 481 "../modules/media_file", |
481 "//testing/gtest", | 482 "//testing/gtest", |
482 ] | 483 ] |
483 } | 484 } |
OLD | NEW |