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