| 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("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 | 311 |
| 312 if (!build_with_chromium && is_clang) { | 312 if (!build_with_chromium && is_clang) { |
| 313 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 313 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 314 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 314 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 315 } | 315 } |
| 316 | 316 |
| 317 deps = [ | 317 deps = [ |
| 318 ":rtp_test_utils", | 318 ":rtp_test_utils", |
| 319 ":test_support", | 319 ":test_support", |
| 320 "..:webrtc_common", | 320 "..:webrtc_common", |
| 321 "../api:transport_api", |
| 321 "../audio", | 322 "../audio", |
| 322 "../base:rtc_base_approved", | 323 "../base:rtc_base_approved", |
| 323 "../call", | 324 "../call", |
| 324 "../modules/media_file", | 325 "../modules/media_file", |
| 325 "../video", | 326 "../video", |
| 326 "//testing/gmock", | 327 "//testing/gmock", |
| 327 "//testing/gtest", | 328 "//testing/gtest", |
| 328 ] | 329 ] |
| 329 } | 330 } |
| 330 | 331 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 394 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 394 } | 395 } |
| 395 | 396 |
| 396 deps = [ | 397 deps = [ |
| 397 ":test_support", | 398 ":test_support", |
| 398 ":video_test_common", | 399 ":video_test_common", |
| 399 "../modules/media_file", | 400 "../modules/media_file", |
| 400 "//testing/gtest", | 401 "//testing/gtest", |
| 401 ] | 402 ] |
| 402 } | 403 } |
| OLD | NEW |