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

Side by Side Diff: webrtc/common_video/common_video.gyp

Issue 1645543003: H264: Improve FFmpeg decoder performance by using I420BufferPool. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: common_video not unnecessarily depending on webrtc_h264, fixed circular dependency Created 4 years, 10 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
« no previous file with comments | « webrtc/common_video/BUILD.gn ('k') | webrtc/common_video/i420_buffer_pool.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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': ['../build/common.gypi'], 10 'includes': ['../build/common.gypi'],
11 'targets': [ 11 'targets': [
12 { 12 {
13 'target_name': 'common_video', 13 'target_name': 'common_video',
14 'type': 'static_library', 14 'type': 'static_library',
15 'include_dirs': [ 15 'include_dirs': [
16 '<(webrtc_root)/modules/interface/', 16 '<(webrtc_root)/modules/interface/',
17 'include', 17 'include',
18 'libyuv/include', 18 'libyuv/include',
19 ], 19 ],
20 'dependencies': [ 20 'dependencies': [
21 '<(webrtc_root)/common.gyp:webrtc_common', 21 '<(webrtc_root)/common.gyp:webrtc_common',
22 '<(webrtc_root)/modules/modules.gyp:webrtc_h264',
23 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', 22 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
24 ], 23 ],
25 'direct_dependent_settings': { 24 'direct_dependent_settings': {
26 'include_dirs': [ 25 'include_dirs': [
27 'include', 26 'include',
28 'libyuv/include', 27 'libyuv/include',
29 ], 28 ],
30 }, 29 },
31 'conditions': [ 30 'conditions': [
32 ['build_libyuv==1', { 31 ['build_libyuv==1', {
(...skipping 17 matching lines...) Expand all
50 'libyuv/include/webrtc_libyuv.h', 49 'libyuv/include/webrtc_libyuv.h',
51 'libyuv/scaler.cc', 50 'libyuv/scaler.cc',
52 'libyuv/webrtc_libyuv.cc', 51 'libyuv/webrtc_libyuv.cc',
53 'video_frame_buffer.cc', 52 'video_frame_buffer.cc',
54 'video_render_frames.cc', 53 'video_render_frames.cc',
55 'video_render_frames.h', 54 'video_render_frames.h',
56 ], 55 ],
57 }, 56 },
58 ], # targets 57 ], # targets
59 } 58 }
OLDNEW
« no previous file with comments | « webrtc/common_video/BUILD.gn ('k') | webrtc/common_video/i420_buffer_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698