| 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 | 10 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 ] | 86 ] |
| 87 deps = [ | 87 deps = [ |
| 88 "../base:rtc_base_tests_utils", | 88 "../base:rtc_base_tests_utils", |
| 89 "../base:rtc_task_queue", | 89 "../base:rtc_task_queue", |
| 90 "../media:rtc_media_base", | 90 "../media:rtc_media_base", |
| 91 "../system_wrappers", | 91 "../system_wrappers", |
| 92 "//testing/gtest", | 92 "//testing/gtest", |
| 93 "//webrtc/test:test_renderer", | 93 "//webrtc/test:test_renderer", |
| 94 "//webrtc/test:video_test_common", | 94 "//webrtc/test:video_test_common", |
| 95 ] | 95 ] |
| 96 if (!is_android) { | |
| 97 deps += [ "../modules/video_capture:video_capture_internal_impl" ] | |
| 98 } | |
| 99 if (!build_with_chromium && is_clang) { | 96 if (!build_with_chromium && is_clang) { |
| 100 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 97 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 101 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 98 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 102 } | 99 } |
| 103 } | 100 } |
| 104 | 101 |
| 105 rtc_source_set("video_full_stack_tests") { | 102 rtc_source_set("video_full_stack_tests") { |
| 106 testonly = true | 103 testonly = true |
| 107 sources = [ | 104 sources = [ |
| 108 "full_stack_tests.cc", | 105 "full_stack_tests.cc", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 "replay.cc", | 168 "replay.cc", |
| 172 ] | 169 ] |
| 173 deps = [ | 170 deps = [ |
| 174 "../system_wrappers:metrics_default", | 171 "../system_wrappers:metrics_default", |
| 175 "../test:field_trial", | 172 "../test:field_trial", |
| 176 "../test:run_test", | 173 "../test:run_test", |
| 177 "../test:test_common", | 174 "../test:test_common", |
| 178 "../test:test_renderer", | 175 "../test:test_renderer", |
| 179 "//third_party/gflags", | 176 "//third_party/gflags", |
| 180 ] | 177 ] |
| 181 if (!is_android) { | |
| 182 deps += [ "../modules/video_capture:video_capture_internal_impl" ] | |
| 183 } | |
| 184 if (!build_with_chromium && is_clang) { | 178 if (!build_with_chromium && is_clang) { |
| 185 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 179 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 186 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 180 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 187 } | 181 } |
| 188 } | 182 } |
| 189 | 183 |
| 190 # TODO(pbos): Rename test suite. | 184 # TODO(pbos): Rename test suite. |
| 191 rtc_source_set("video_tests") { | 185 rtc_source_set("video_tests") { |
| 192 testonly = true | 186 testonly = true |
| 193 defines = [] | 187 defines = [] |
| (...skipping 24 matching lines...) Expand all Loading... |
| 218 ] | 212 ] |
| 219 if (!build_with_chromium && is_clang) { | 213 if (!build_with_chromium && is_clang) { |
| 220 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 214 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 221 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 215 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 222 } | 216 } |
| 223 if (rtc_use_h264) { | 217 if (rtc_use_h264) { |
| 224 defines += [ "WEBRTC_USE_H264" ] | 218 defines += [ "WEBRTC_USE_H264" ] |
| 225 } | 219 } |
| 226 } | 220 } |
| 227 } | 221 } |
| OLD | NEW |