Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: webrtc/modules/video_coding/video_coding.gypi

Issue 1417283007: modules/video_coding refactorings (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix the other copy of the mock include header Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 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 { 9 {
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'webrtc_video_coding', 12 'target_name': 'webrtc_video_coding',
13 'type': 'static_library', 13 'type': 'static_library',
14 'dependencies': [ 14 'dependencies': [
15 'webrtc_h264', 15 'webrtc_h264',
16 'webrtc_i420', 16 'webrtc_i420',
17 '<(webrtc_root)/common_video/common_video.gyp:common_video', 17 '<(webrtc_root)/common_video/common_video.gyp:common_video',
18 '<(webrtc_root)/modules/video_coding/utility/video_coding_utility.gyp:vi deo_coding_utility', 18 '<(webrtc_root)/modules/video_coding/utility/video_coding_utility.gyp:vi deo_coding_utility',
19 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', 19 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
20 '<(webrtc_vp8_dir)/vp8.gyp:webrtc_vp8', 20 '<(webrtc_vp8_dir)/vp8.gyp:webrtc_vp8',
21 '<(webrtc_vp9_dir)/vp9.gyp:webrtc_vp9', 21 '<(webrtc_vp9_dir)/vp9.gyp:webrtc_vp9',
22 ], 22 ],
23 'sources': [ 23 'sources': [
24 # interfaces 24 # interfaces
25 'main/interface/video_coding.h', 25 'include/video_coding.h',
26 'main/interface/video_coding_defines.h', 26 'include/video_coding_defines.h',
27 27
28 # headers 28 # headers
29 'main/source/codec_database.h', 29 'codec_database.h',
30 'main/source/codec_timer.h', 30 'codec_timer.h',
31 'main/source/content_metrics_processing.h', 31 'content_metrics_processing.h',
32 'main/source/decoding_state.h', 32 'decoding_state.h',
33 'main/source/encoded_frame.h', 33 'encoded_frame.h',
34 'main/source/fec_tables_xor.h', 34 'fec_tables_xor.h',
35 'main/source/frame_buffer.h', 35 'frame_buffer.h',
36 'main/source/generic_decoder.h', 36 'generic_decoder.h',
37 'main/source/generic_encoder.h', 37 'generic_encoder.h',
38 'main/source/inter_frame_delay.h', 38 'inter_frame_delay.h',
39 'main/source/internal_defines.h', 39 'internal_defines.h',
40 'main/source/jitter_buffer.h', 40 'jitter_buffer.h',
41 'main/source/jitter_buffer_common.h', 41 'jitter_buffer_common.h',
42 'main/source/jitter_estimator.h', 42 'jitter_estimator.h',
43 'main/source/media_opt_util.h', 43 'media_opt_util.h',
44 'main/source/media_optimization.h', 44 'media_optimization.h',
45 'main/source/nack_fec_tables.h', 45 'nack_fec_tables.h',
46 'main/source/packet.h', 46 'packet.h',
47 'main/source/qm_select_data.h', 47 'qm_select_data.h',
48 'main/source/qm_select.h', 48 'qm_select.h',
49 'main/source/receiver.h', 49 'receiver.h',
50 'main/source/rtt_filter.h', 50 'rtt_filter.h',
51 'main/source/session_info.h', 51 'session_info.h',
52 'main/source/timestamp_map.h', 52 'timestamp_map.h',
53 'main/source/timing.h', 53 'timing.h',
54 'main/source/video_coding_impl.h', 54 'video_coding_impl.h',
55 55
56 # sources 56 # sources
57 'main/source/codec_database.cc', 57 'codec_database.cc',
58 'main/source/codec_timer.cc', 58 'codec_timer.cc',
59 'main/source/content_metrics_processing.cc', 59 'content_metrics_processing.cc',
60 'main/source/decoding_state.cc', 60 'decoding_state.cc',
61 'main/source/encoded_frame.cc', 61 'encoded_frame.cc',
62 'main/source/frame_buffer.cc', 62 'frame_buffer.cc',
63 'main/source/generic_decoder.cc', 63 'generic_decoder.cc',
64 'main/source/generic_encoder.cc', 64 'generic_encoder.cc',
65 'main/source/inter_frame_delay.cc', 65 'inter_frame_delay.cc',
66 'main/source/jitter_buffer.cc', 66 'jitter_buffer.cc',
67 'main/source/jitter_estimator.cc', 67 'jitter_estimator.cc',
68 'main/source/media_opt_util.cc', 68 'media_opt_util.cc',
69 'main/source/media_optimization.cc', 69 'media_optimization.cc',
70 'main/source/packet.cc', 70 'packet.cc',
71 'main/source/qm_select.cc', 71 'qm_select.cc',
72 'main/source/receiver.cc', 72 'receiver.cc',
73 'main/source/rtt_filter.cc', 73 'rtt_filter.cc',
74 'main/source/session_info.cc', 74 'session_info.cc',
75 'main/source/timestamp_map.cc', 75 'timestamp_map.cc',
76 'main/source/timing.cc', 76 'timing.cc',
77 'main/source/video_coding_impl.cc', 77 'video_coding_impl.cc',
78 'main/source/video_sender.cc', 78 'video_sender.cc',
79 'main/source/video_receiver.cc', 79 'video_receiver.cc',
80 ], # source 80 ], # source
81 # TODO(jschuh): Bug 1348: fix size_t to int truncations. 81 # TODO(jschuh): Bug 1348: fix size_t to int truncations.
82 'msvs_disabled_warnings': [ 4267, ], 82 'msvs_disabled_warnings': [ 4267, ],
83 }, 83 },
84 ], 84 ],
85 } 85 }
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/utility/include/qp_parser.h ('k') | webrtc/modules/video_coding/video_coding_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698