| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 # gets additional generated targets which would require many lines here to | 126 # gets additional generated targets which would require many lines here to |
| 127 # cover (which would be confusing to read and hard to maintain). | 127 # cover (which would be confusing to read and hard to maintain). |
| 128 if (!is_android && !is_ios) { | 128 if (!is_android && !is_ios) { |
| 129 visibility = [ "//webrtc:webrtc_perf_tests" ] | 129 visibility = [ "//webrtc:webrtc_perf_tests" ] |
| 130 } | 130 } |
| 131 sources = [ | 131 sources = [ |
| 132 "full_stack_tests.cc", | 132 "full_stack_tests.cc", |
| 133 ] | 133 ] |
| 134 deps = [ | 134 deps = [ |
| 135 ":video_quality_test", | 135 ":video_quality_test", |
| 136 "../modules/pacing:pacing", |
| 136 "../test:field_trial", | 137 "../test:field_trial", |
| 137 "../test:test_support", | 138 "../test:test_support", |
| 138 "//testing/gtest", | 139 "//testing/gtest", |
| 139 "//webrtc/test:test_common", | 140 "//webrtc/test:test_common", |
| 140 ] | 141 ] |
| 141 if (!build_with_chromium && is_clang) { | 142 if (!build_with_chromium && is_clang) { |
| 142 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 143 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 143 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 144 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 144 } | 145 } |
| 145 if (rtc_use_h264) { | 146 if (rtc_use_h264) { |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 ] | 294 ] |
| 294 if (!build_with_chromium && is_clang) { | 295 if (!build_with_chromium && is_clang) { |
| 295 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 296 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 296 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 297 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 297 } | 298 } |
| 298 if (rtc_use_h264) { | 299 if (rtc_use_h264) { |
| 299 defines += [ "WEBRTC_USE_H264" ] | 300 defines += [ "WEBRTC_USE_H264" ] |
| 300 } | 301 } |
| 301 } | 302 } |
| 302 } | 303 } |
| OLD | NEW |