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

Side by Side Diff: webrtc/modules/video_coding/codecs/vp8/vp8.gyp

Issue 1598803005: Remove vp8_factory.{cc,h}. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 11 months 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 'includes': [ 10 'includes': [
(...skipping 22 matching lines...) Expand all
33 'include/vp8.h', 33 'include/vp8.h',
34 'include/vp8_common_types.h', 34 'include/vp8_common_types.h',
35 'realtime_temporal_layers.cc', 35 'realtime_temporal_layers.cc',
36 'reference_picture_selection.cc', 36 'reference_picture_selection.cc',
37 'reference_picture_selection.h', 37 'reference_picture_selection.h',
38 'screenshare_layers.cc', 38 'screenshare_layers.cc',
39 'screenshare_layers.h', 39 'screenshare_layers.h',
40 'simulcast_encoder_adapter.cc', 40 'simulcast_encoder_adapter.cc',
41 'simulcast_encoder_adapter.h', 41 'simulcast_encoder_adapter.h',
42 'temporal_layers.h', 42 'temporal_layers.h',
43 'vp8_factory.cc',
44 'vp8_factory.h',
45 'vp8_impl.cc', 43 'vp8_impl.cc',
46 'vp8_impl.h', 44 'vp8_impl.h',
47 ], 45 ],
48 # Disable warnings to enable Win64 build, issue 1323. 46 # Disable warnings to enable Win64 build, issue 1323.
49 'msvs_disabled_warnings': [ 47 'msvs_disabled_warnings': [
50 4267, # size_t to int truncation. 48 4267, # size_t to int truncation.
51 ], 49 ],
52 }, 50 },
53 ], # targets 51 ], # targets
54 'conditions': [ 52 'conditions': [
(...skipping 12 matching lines...) Expand all
67 '<(webrtc_root)/tools/internal_tools.gyp:command_line_parser', 65 '<(webrtc_root)/tools/internal_tools.gyp:command_line_parser',
68 ], 66 ],
69 'sources': [ 67 'sources': [
70 'vp8_sequence_coder.cc', 68 'vp8_sequence_coder.cc',
71 ], 69 ],
72 }, 70 },
73 ], # targets 71 ], # targets
74 }], # include_tests 72 }], # include_tests
75 ], 73 ],
76 } 74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698