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 11 matching lines...) Expand all Loading... |
22 "frame_buffer.cc", | 22 "frame_buffer.cc", |
23 "frame_buffer.h", | 23 "frame_buffer.h", |
24 "frame_buffer2.cc", | 24 "frame_buffer2.cc", |
25 "frame_buffer2.h", | 25 "frame_buffer2.h", |
26 "frame_object.cc", | 26 "frame_object.cc", |
27 "frame_object.h", | 27 "frame_object.h", |
28 "generic_decoder.cc", | 28 "generic_decoder.cc", |
29 "generic_decoder.h", | 29 "generic_decoder.h", |
30 "generic_encoder.cc", | 30 "generic_encoder.cc", |
31 "generic_encoder.h", | 31 "generic_encoder.h", |
| 32 "h264_sprop_parameter_sets.cc", |
| 33 "h264_sprop_parameter_sets.h", |
32 "h264_sps_pps_tracker.cc", | 34 "h264_sps_pps_tracker.cc", |
33 "h264_sps_pps_tracker.h", | 35 "h264_sps_pps_tracker.h", |
34 "histogram.cc", | 36 "histogram.cc", |
35 "histogram.h", | 37 "histogram.h", |
36 "include/video_codec_initializer.h", | 38 "include/video_codec_initializer.h", |
37 "include/video_coding.h", | 39 "include/video_coding.h", |
38 "include/video_coding_defines.h", | 40 "include/video_coding_defines.h", |
39 "inter_frame_delay.cc", | 41 "inter_frame_delay.cc", |
40 "inter_frame_delay.h", | 42 "inter_frame_delay.h", |
41 "internal_defines.h", | 43 "internal_defines.h", |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 if (!build_with_chromium && is_clang) { | 269 if (!build_with_chromium && is_clang) { |
268 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 270 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
269 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 271 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
270 } | 272 } |
271 | 273 |
272 deps = [ | 274 deps = [ |
273 "../../test:test_support", | 275 "../../test:test_support", |
274 ] | 276 ] |
275 } | 277 } |
276 } | 278 } |
OLD | NEW |