| 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 172       "//testing/gmock", | 172       "//testing/gmock", | 
| 173       "//testing/gtest", | 173       "//testing/gtest", | 
| 174       "//third_party/gflags", | 174       "//third_party/gflags", | 
| 175     ] | 175     ] | 
| 176     if (!build_with_chromium && is_clang) { | 176     if (!build_with_chromium && is_clang) { | 
| 177       # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 177       # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 
| 178       suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 178       suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 
| 179     } | 179     } | 
| 180   } | 180   } | 
| 181 | 181 | 
|  | 182   rtc_executable("vs_loopback") { | 
|  | 183     testonly = true | 
|  | 184     sources = [ | 
|  | 185       "vs_loopback.cc", | 
|  | 186     ] | 
|  | 187     deps = [ | 
|  | 188       ":video_quality_test", | 
|  | 189       "../rtc_base:rtc_base_approved", | 
|  | 190       "../system_wrappers:metrics_default", | 
|  | 191       "../test:field_trial", | 
|  | 192       "../test:run_test", | 
|  | 193       "../test:test_common", | 
|  | 194       "../test:test_renderer", | 
|  | 195       "../test:test_support", | 
|  | 196       "//testing/gmock", | 
|  | 197       "//testing/gtest", | 
|  | 198       "//third_party/gflags", | 
|  | 199     ] | 
|  | 200     if (!build_with_chromium && is_clang) { | 
|  | 201       # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 
|  | 202       suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 
|  | 203     } | 
|  | 204   } | 
|  | 205 | 
| 182   rtc_executable("screenshare_loopback") { | 206   rtc_executable("screenshare_loopback") { | 
| 183     testonly = true | 207     testonly = true | 
| 184     sources = [ | 208     sources = [ | 
| 185       "screenshare_loopback.cc", | 209       "screenshare_loopback.cc", | 
| 186     ] | 210     ] | 
| 187 | 211 | 
| 188     deps = [ | 212     deps = [ | 
| 189       ":video_quality_test", | 213       ":video_quality_test", | 
| 190       "../rtc_base:rtc_base_approved", | 214       "../rtc_base:rtc_base_approved", | 
| 191       "../system_wrappers:metrics_default", | 215       "../system_wrappers:metrics_default", | 
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 305     ] | 329     ] | 
| 306     if (!build_with_chromium && is_clang) { | 330     if (!build_with_chromium && is_clang) { | 
| 307       # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 331       # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 
| 308       suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 332       suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 
| 309     } | 333     } | 
| 310     if (rtc_use_h264) { | 334     if (rtc_use_h264) { | 
| 311       defines += [ "WEBRTC_USE_H264" ] | 335       defines += [ "WEBRTC_USE_H264" ] | 
| 312     } | 336     } | 
| 313   } | 337   } | 
| 314 } | 338 } | 
| OLD | NEW | 
|---|