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