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

Side by Side Diff: media/cast/video_sender/video_sender.gypi

Issue 116623002: Cast: Adding support for GPU accelerated encode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed dependency on content Created 7 years 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'includes': [ 6 'includes': [
7 'codecs/vp8/vp8_encoder.gypi', 7 'codecs/vp8/vp8_encoder.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'video_sender', 11 'target_name': 'video_sender',
12 'type': 'static_library', 12 'type': 'static_library',
13 'include_dirs': [ 13 'include_dirs': [
14 '<(DEPTH)/', 14 '<(DEPTH)/',
15 '<(DEPTH)/third_party/', 15 '<(DEPTH)/third_party/',
16 ], 16 ],
17 'sources': [ 17 'sources': [
18 'external_video_encoder.h',
19 'external_video_encoder.cc',
18 'video_encoder.h', 20 'video_encoder.h',
19 'video_encoder.cc', 21 'video_encoder_impl.h',
22 'video_encoder_impl.cc',
20 'video_sender.h', 23 'video_sender.h',
21 'video_sender.cc', 24 'video_sender.cc',
22 ], # source 25 ], # source
23 'dependencies': [ 26 'dependencies': [
24 '<(DEPTH)/crypto/crypto.gyp:crypto', 27 '<(DEPTH)/crypto/crypto.gyp:crypto',
25 '<(DEPTH)/media/cast/rtcp/rtcp.gyp:*', 28 '<(DEPTH)/media/cast/rtcp/rtcp.gyp:*',
26 '<(DEPTH)/media/cast/rtp_sender/rtp_sender.gyp:*', 29 '<(DEPTH)/media/cast/rtp_sender/rtp_sender.gyp:*',
27 '<(DEPTH)/media/media.gyp:media', 30 '<(DEPTH)/media/media.gyp:media',
28 '<(DEPTH)/media/media.gyp:shared_memory_support', 31 '<(DEPTH)/media/media.gyp:shared_memory_support',
29 'congestion_control', 32 'congestion_control',
30 'cast_vp8_encoder', 33 'cast_vp8_encoder',
31 ], 34 ],
32 }, 35 },
33 ], 36 ],
34 } 37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698