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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 "//third_party/openh264:encoder", | 172 "//third_party/openh264:encoder", |
173 ] | 173 ] |
174 } | 174 } |
175 } | 175 } |
176 | 176 |
177 if (is_ios) { | 177 if (is_ios) { |
178 source_set("webrtc_h264_video_toolbox") { | 178 source_set("webrtc_h264_video_toolbox") { |
179 sources = [ | 179 sources = [ |
180 "codecs/h264/h264_video_toolbox_decoder.cc", | 180 "codecs/h264/h264_video_toolbox_decoder.cc", |
181 "codecs/h264/h264_video_toolbox_decoder.h", | 181 "codecs/h264/h264_video_toolbox_decoder.h", |
182 "codecs/h264/h264_video_toolbox_encoder.cc", | |
183 "codecs/h264/h264_video_toolbox_encoder.h", | 182 "codecs/h264/h264_video_toolbox_encoder.h", |
| 183 "codecs/h264/h264_video_toolbox_encoder.mm", |
184 "codecs/h264/h264_video_toolbox_nalu.cc", | 184 "codecs/h264/h264_video_toolbox_nalu.cc", |
185 "codecs/h264/h264_video_toolbox_nalu.h", | 185 "codecs/h264/h264_video_toolbox_nalu.h", |
186 ] | 186 ] |
187 | 187 |
188 configs += [ | 188 configs += [ |
189 "../..:common_objc", | 189 "../..:common_objc", |
190 "//build/config/compiler:enable_arc", | 190 "//build/config/compiler:enable_arc", |
191 ] | 191 ] |
192 | 192 |
193 deps = [ | 193 deps = [ |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 # Suppress warnings from Chrome's Clang plugins. | 332 # Suppress warnings from Chrome's Clang plugins. |
333 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 333 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
334 configs -= [ "//build/config/clang:find_bad_constructs" ] | 334 configs -= [ "//build/config/clang:find_bad_constructs" ] |
335 } | 335 } |
336 | 336 |
337 deps = [ | 337 deps = [ |
338 "../../test:test_support", | 338 "../../test:test_support", |
339 ] | 339 ] |
340 } | 340 } |
341 } | 341 } |
OLD | NEW |