| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 defines += [ "WEBRTC_INITIALIZE_FFMPEG" ] | 151 defines += [ "WEBRTC_INITIALIZE_FFMPEG" ] |
| 152 } | 152 } |
| 153 sources += [ | 153 sources += [ |
| 154 "codecs/h264/h264_decoder_impl.cc", | 154 "codecs/h264/h264_decoder_impl.cc", |
| 155 "codecs/h264/h264_decoder_impl.h", | 155 "codecs/h264/h264_decoder_impl.h", |
| 156 "codecs/h264/h264_encoder_impl.cc", | 156 "codecs/h264/h264_encoder_impl.cc", |
| 157 "codecs/h264/h264_encoder_impl.h", | 157 "codecs/h264/h264_encoder_impl.h", |
| 158 ] | 158 ] |
| 159 deps += [ | 159 deps += [ |
| 160 "../../common_video", | 160 "../../common_video", |
| 161 "../../media:rtc_media_base", | |
| 162 "//third_party/ffmpeg:ffmpeg", | 161 "//third_party/ffmpeg:ffmpeg", |
| 163 "//third_party/openh264:encoder", | 162 "//third_party/openh264:encoder", |
| 164 ] | 163 ] |
| 165 } | 164 } |
| 166 } | 165 } |
| 167 | 166 |
| 168 rtc_static_library("webrtc_i420") { | 167 rtc_static_library("webrtc_i420") { |
| 169 sources = [ | 168 sources = [ |
| 170 "codecs/i420/i420.cc", | 169 "codecs/i420/i420.cc", |
| 171 "codecs/i420/include/i420.h", | 170 "codecs/i420/include/i420.h", |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 if (!build_with_chromium && is_clang) { | 267 if (!build_with_chromium && is_clang) { |
| 269 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 268 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 270 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 269 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 271 } | 270 } |
| 272 | 271 |
| 273 deps = [ | 272 deps = [ |
| 274 "../../test:test_support", | 273 "../../test:test_support", |
| 275 ] | 274 ] |
| 276 } | 275 } |
| 277 } | 276 } |
| OLD | NEW |