| 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/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 if (is_clang && !is_nacl) { | 379 if (is_clang && !is_nacl) { |
| 380 # Suppress warnings from the Chromium Clang plugin. | 380 # Suppress warnings from the Chromium Clang plugin. |
| 381 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 381 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 382 configs -= [ "//build/config/clang:find_bad_constructs" ] | 382 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 383 } | 383 } |
| 384 | 384 |
| 385 deps = [ | 385 deps = [ |
| 386 ":rtp_test_utils", | 386 ":rtp_test_utils", |
| 387 ":test_support", | 387 ":test_support", |
| 388 ":video_test_common", | 388 ":video_test_common", |
| 389 "..:webrtc", | |
| 390 "..:webrtc_common", | 389 "..:webrtc_common", |
| 390 "../audio", |
| 391 "../base:rtc_base_approved", | 391 "../base:rtc_base_approved", |
| 392 "../call", |
| 392 "../modules/media_file", | 393 "../modules/media_file", |
| 394 "../video", |
| 393 "//testing/gmock", | 395 "//testing/gmock", |
| 394 "//testing/gtest", | 396 "//testing/gtest", |
| 395 "//third_party/gflags", | 397 "//third_party/gflags", |
| 396 ] | 398 ] |
| 397 } | 399 } |
| 398 | 400 |
| 399 config("test_renderer_exported_config") { | 401 config("test_renderer_exported_config") { |
| 400 if (is_win && is_clang) { | 402 if (is_win && is_clang) { |
| 401 # GN orders flags on a target before flags from configs. The default config | 403 # GN orders flags on a target before flags from configs. The default config |
| 402 # adds -Wall, and this flag have to be after -Wall -- so they need to | 404 # adds -Wall, and this flag have to be after -Wall -- so they need to |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 configs -= [ "//build/config/clang:find_bad_constructs" ] | 468 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 467 } | 469 } |
| 468 | 470 |
| 469 deps = [ | 471 deps = [ |
| 470 ":test_support", | 472 ":test_support", |
| 471 ":video_test_common", | 473 ":video_test_common", |
| 472 "../modules/media_file", | 474 "../modules/media_file", |
| 473 "//testing/gtest", | 475 "//testing/gtest", |
| 474 ] | 476 ] |
| 475 } | 477 } |
| OLD | NEW |