| 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 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 ":test_support", | 388 ":test_support", |
| 389 ":video_test_common", | 389 ":video_test_common", |
| 390 "..:webrtc_common", | 390 "..:webrtc_common", |
| 391 "../audio", | 391 "../audio", |
| 392 "../base:rtc_base_approved", | 392 "../base:rtc_base_approved", |
| 393 "../call", | 393 "../call", |
| 394 "../modules/media_file", | 394 "../modules/media_file", |
| 395 "../video", | 395 "../video", |
| 396 "//testing/gmock", | 396 "//testing/gmock", |
| 397 "//testing/gtest", | 397 "//testing/gtest", |
| 398 "//third_party/gflags", | |
| 399 ] | 398 ] |
| 400 } | 399 } |
| 401 | 400 |
| 402 config("test_renderer_exported_config") { | 401 config("test_renderer_exported_config") { |
| 403 if (is_win && is_clang) { | 402 if (is_win && is_clang) { |
| 404 # 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 |
| 405 # 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 |
| 406 # come from a config and cannot be on the target directly. | 405 # come from a config and cannot be on the target directly. |
| 407 cflags = [ | 406 cflags = [ |
| 408 "-Wno-bool-conversion", | 407 "-Wno-bool-conversion", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 464 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 466 } | 465 } |
| 467 | 466 |
| 468 deps = [ | 467 deps = [ |
| 469 ":test_support", | 468 ":test_support", |
| 470 ":video_test_common", | 469 ":video_test_common", |
| 471 "../modules/media_file", | 470 "../modules/media_file", |
| 472 "//testing/gtest", | 471 "//testing/gtest", |
| 473 ] | 472 ] |
| 474 } | 473 } |
| OLD | NEW |