| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 } | 78 } |
| 79 | 79 |
| 80 if (rtc_include_tests) { | 80 if (rtc_include_tests) { |
| 81 rtc_source_set("video_quality_test") { | 81 rtc_source_set("video_quality_test") { |
| 82 testonly = true | 82 testonly = true |
| 83 sources = [ | 83 sources = [ |
| 84 "video_quality_test.cc", | 84 "video_quality_test.cc", |
| 85 "video_quality_test.h", | 85 "video_quality_test.h", |
| 86 ] | 86 ] |
| 87 deps = [ | 87 deps = [ |
| 88 "../base:rtc_base_tests_utils", |
| 88 "../base:rtc_task_queue", | 89 "../base:rtc_task_queue", |
| 89 "../media:rtc_media_base", | 90 "../media:rtc_media_base", |
| 90 "../system_wrappers", | 91 "../system_wrappers", |
| 91 "//testing/gtest", | 92 "//testing/gtest", |
| 92 "//webrtc/test:test_renderer", | 93 "//webrtc/test:test_renderer", |
| 93 ] | 94 ] |
| 94 if (!is_android) { | 95 if (!is_android) { |
| 95 deps += [ "../modules/video_capture:video_capture_internal_impl" ] | 96 deps += [ "../modules/video_capture:video_capture_internal_impl" ] |
| 96 } | 97 } |
| 97 if (!build_with_chromium && is_clang) { | 98 if (!build_with_chromium && is_clang) { |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 ] | 216 ] |
| 216 if (!build_with_chromium && is_clang) { | 217 if (!build_with_chromium && is_clang) { |
| 217 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 218 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 218 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 219 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 219 } | 220 } |
| 220 if (rtc_use_h264) { | 221 if (rtc_use_h264) { |
| 221 defines += [ "WEBRTC_USE_H264" ] | 222 defines += [ "WEBRTC_USE_H264" ] |
| 222 } | 223 } |
| 223 } | 224 } |
| 224 } | 225 } |
| OLD | NEW |