Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Side by Side Diff: webrtc/test/BUILD.gn

Issue 2716643002: Add framerate to VideoSinkWants and ability to signal on overuse (Closed)
Patch Set: windows warning Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 "video_capturer.h", 46 "video_capturer.h",
47 ] 47 ]
48 48
49 if (!build_with_chromium && is_clang) { 49 if (!build_with_chromium && is_clang) {
50 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 50 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
51 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 51 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
52 } 52 }
53 53
54 deps = [ 54 deps = [
55 "../common_video", 55 "../common_video",
56 "../media:rtc_media_base",
56 "../modules/video_capture:video_capture_module", 57 "../modules/video_capture:video_capture_module",
57 ] 58 ]
58 } 59 }
59 60
60 rtc_source_set("rtp_test_utils") { 61 rtc_source_set("rtp_test_utils") {
61 testonly = true 62 testonly = true
62 sources = [ 63 sources = [
63 "rtcp_packet_parser.cc", 64 "rtcp_packet_parser.cc",
64 "rtcp_packet_parser.h", 65 "rtcp_packet_parser.h",
65 "rtp_file_reader.cc", 66 "rtp_file_reader.cc",
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 475 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
475 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 476 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
476 } 477 }
477 478
478 deps = [ 479 deps = [
479 ":test_support", 480 ":test_support",
480 "../modules/media_file", 481 "../modules/media_file",
481 "//testing/gtest", 482 "//testing/gtest",
482 ] 483 ]
483 } 484 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698