| 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 | 10 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 86 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 87 } | 87 } |
| 88 | 88 |
| 89 deps = [ | 89 deps = [ |
| 90 ":video_coding_utility", | 90 ":video_coding_utility", |
| 91 ":webrtc_h264", | 91 ":webrtc_h264", |
| 92 ":webrtc_i420", | 92 ":webrtc_i420", |
| 93 ":webrtc_vp8", | 93 ":webrtc_vp8", |
| 94 ":webrtc_vp9", | 94 ":webrtc_vp9", |
| 95 "../..:webrtc_common", | 95 "../..:webrtc_common", |
| 96 "../../base:rtc_analytics", | |
| 97 "../../base:rtc_base", | 96 "../../base:rtc_base", |
| 98 "../../base:rtc_base_approved", | 97 "../../base:rtc_base_approved", |
| 98 "../../base:rtc_numerics", |
| 99 "../../base:rtc_task_queue", | 99 "../../base:rtc_task_queue", |
| 100 "../../common_video", | 100 "../../common_video", |
| 101 "../../system_wrappers", | 101 "../../system_wrappers", |
| 102 "../rtp_rtcp:rtp_rtcp", | 102 "../rtp_rtcp:rtp_rtcp", |
| 103 "../utility:utility", | 103 "../utility:utility", |
| 104 ] | 104 ] |
| 105 } | 105 } |
| 106 | 106 |
| 107 rtc_static_library("video_coding_utility") { | 107 rtc_static_library("video_coding_utility") { |
| 108 # TODO(ehmaldonado): Remove (bugs.webrtc.org/6828) | 108 # TODO(ehmaldonado): Remove (bugs.webrtc.org/6828) |
| (...skipping 19 matching lines...) Expand all Loading... |
| 128 "utility/vp8_header_parser.h", | 128 "utility/vp8_header_parser.h", |
| 129 ] | 129 ] |
| 130 | 130 |
| 131 if (!build_with_chromium && is_clang) { | 131 if (!build_with_chromium && is_clang) { |
| 132 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 132 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 133 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 133 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 134 } | 134 } |
| 135 | 135 |
| 136 deps = [ | 136 deps = [ |
| 137 "../..:webrtc_common", | 137 "../..:webrtc_common", |
| 138 "../../base:rtc_analytics", | |
| 139 "../../base:rtc_base_approved", | 138 "../../base:rtc_base_approved", |
| 139 "../../base:rtc_numerics", |
| 140 "../../common_video", | 140 "../../common_video", |
| 141 "../../system_wrappers", | 141 "../../system_wrappers", |
| 142 ] | 142 ] |
| 143 } | 143 } |
| 144 | 144 |
| 145 rtc_static_library("webrtc_h264") { | 145 rtc_static_library("webrtc_h264") { |
| 146 # TODO(ehmaldonado): Remove (bugs.webrtc.org/6828) | 146 # TODO(ehmaldonado): Remove (bugs.webrtc.org/6828) |
| 147 # Errors on cyclic dependency if enabled: | 147 # Errors on cyclic dependency if enabled: |
| 148 # //webrtc/call:call -> | 148 # //webrtc/call:call -> |
| 149 # //webrtc/video:video -> | 149 # //webrtc/video:video -> |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 ":video_coding", | 304 ":video_coding", |
| 305 ":video_coding_utility", | 305 ":video_coding_utility", |
| 306 "../..:webrtc_common", | 306 "../..:webrtc_common", |
| 307 "../../base:rtc_base_approved", | 307 "../../base:rtc_base_approved", |
| 308 "../../common_video:common_video", | 308 "../../common_video:common_video", |
| 309 "../../system_wrappers:system_wrappers", | 309 "../../system_wrappers:system_wrappers", |
| 310 "../../test:test_support", | 310 "../../test:test_support", |
| 311 ] | 311 ] |
| 312 } | 312 } |
| 313 } | 313 } |
| OLD | NEW |