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

Side by Side Diff: media/cast/cast.gyp

Issue 116623002: Cast: Adding support for GPU accelerated encode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup 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 'variables': { 6 'variables': {
7 'include_tests%': 1, 7 'include_tests%': 1,
8 'chromium_code': 1, 8 'chromium_code': 1,
9 }, 9 },
10 'targets': [ 10 'targets': [
(...skipping 30 matching lines...) Expand all
41 'target_name': 'cast_unittests', 41 'target_name': 'cast_unittests',
42 'type': '<(gtest_target_type)', 42 'type': '<(gtest_target_type)',
43 'dependencies': [ 43 'dependencies': [
44 'cast_config', 44 'cast_config',
45 'cast_receiver.gyp:cast_receiver', 45 'cast_receiver.gyp:cast_receiver',
46 'cast_sender.gyp:cast_sender', 46 'cast_sender.gyp:cast_sender',
47 'test/utility/utility.gyp:cast_test_utility', 47 'test/utility/utility.gyp:cast_test_utility',
48 '<(DEPTH)/base/base.gyp:run_all_unittests', 48 '<(DEPTH)/base/base.gyp:run_all_unittests',
49 '<(DEPTH)/base/base.gyp:test_support_base', 49 '<(DEPTH)/base/base.gyp:test_support_base',
50 '<(DEPTH)/crypto/crypto.gyp:crypto', 50 '<(DEPTH)/crypto/crypto.gyp:crypto',
51 '<(DEPTH)/media/media.gyp:media_test_support',
51 '<(DEPTH)/net/net.gyp:net', 52 '<(DEPTH)/net/net.gyp:net',
52 '<(DEPTH)/testing/gmock.gyp:gmock', 53 '<(DEPTH)/testing/gmock.gyp:gmock',
53 '<(DEPTH)/testing/gtest.gyp:gtest', 54 '<(DEPTH)/testing/gtest.gyp:gtest',
54 ], 55 ],
55 'include_dirs': [ 56 'include_dirs': [
56 '<(DEPTH)/', 57 '<(DEPTH)/',
57 '<(DEPTH)/third_party/', 58 '<(DEPTH)/third_party/',
58 '<(DEPTH)/third_party/webrtc/', 59 '<(DEPTH)/third_party/webrtc/',
59 ], 60 ],
60 'sources': [ 61 'sources': [
(...skipping 21 matching lines...) Expand all
82 'rtp_receiver/rtp_parser/test/rtp_packet_builder.cc', 83 'rtp_receiver/rtp_parser/test/rtp_packet_builder.cc',
83 'rtp_receiver/rtp_parser/rtp_parser_unittest.cc', 84 'rtp_receiver/rtp_parser/rtp_parser_unittest.cc',
84 'rtp_sender/packet_storage/packet_storage_unittest.cc', 85 'rtp_sender/packet_storage/packet_storage_unittest.cc',
85 'rtp_sender/rtp_packetizer/rtp_packetizer_unittest.cc', 86 'rtp_sender/rtp_packetizer/rtp_packetizer_unittest.cc',
86 'rtp_sender/rtp_packetizer/test/rtp_header_parser.cc', 87 'rtp_sender/rtp_packetizer/test/rtp_header_parser.cc',
87 'rtp_sender/rtp_packetizer/test/rtp_header_parser.h', 88 'rtp_sender/rtp_packetizer/test/rtp_header_parser.h',
88 'test/crypto_utility.cc', 89 'test/crypto_utility.cc',
89 'test/crypto_utility.h', 90 'test/crypto_utility.h',
90 'test/encode_decode_test.cc', 91 'test/encode_decode_test.cc',
91 'test/end2end_unittest.cc', 92 'test/end2end_unittest.cc',
93 'test/fake_gpu_video_accelerator_factories.cc',
94 'test/fake_gpu_video_accelerator_factories.h',
95 'test/fake_video_encode_accelerator.cc',
96 'test/fake_video_encode_accelerator.h',
92 'test/frame_id_wrap_helper_test.cc', 97 'test/frame_id_wrap_helper_test.cc',
93 'video_receiver/video_decoder_unittest.cc', 98 'video_receiver/video_decoder_unittest.cc',
94 'video_receiver/video_receiver_unittest.cc', 99 'video_receiver/video_receiver_unittest.cc',
95 'video_sender/mock_video_encoder_controller.cc', 100 'video_sender/external_video_encoder_unittest.cc',
96 'video_sender/mock_video_encoder_controller.h', 101 'video_sender/video_encoder_impl_unittest.cc',
97 'video_sender/video_encoder_unittest.cc',
98 'video_sender/video_sender_unittest.cc', 102 'video_sender/video_sender_unittest.cc',
99 ], # source 103 ], # source
100 }, 104 },
101 { 105 {
102 'target_name': 'cast_sender_app', 106 'target_name': 'cast_sender_app',
103 'type': 'executable', 107 'type': 'executable',
104 'include_dirs': [ 108 'include_dirs': [
105 '<(DEPTH)/', 109 '<(DEPTH)/',
106 ], 110 ],
107 'dependencies': [ 111 'dependencies': [
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 '-lXext', 153 '-lXext',
150 '-lX11', 154 '-lX11',
151 ], 155 ],
152 }], 156 }],
153 ], 157 ],
154 }, 158 },
155 ], # targets 159 ], # targets
156 }], # include_tests 160 }], # include_tests
157 ], 161 ],
158 } 162 }
OLDNEW
« media/cast/DEPS ('K') | « media/cast/DEPS ('k') | media/cast/cast_config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698