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

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

Issue 161593002: Cast: an app to generate log data and do (de)serailization and (de)compression. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@encoding-event-subscriber
Patch Set: Rewrote the encode/decode logic without using internal protobuf APIs, so don't need to add protobuf… Created 6 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 | « media/cast/DEPS ('k') | media/cast/test/fake_single_thread_task_runner.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 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 'transport/rtp_sender/rtp_packetizer/test/rtp_header_parser.h', 109 'transport/rtp_sender/rtp_packetizer/test/rtp_header_parser.h',
110 'transport/transport/udp_transport_unittest.cc', 110 'transport/transport/udp_transport_unittest.cc',
111 'video_receiver/video_decoder_unittest.cc', 111 'video_receiver/video_decoder_unittest.cc',
112 'video_receiver/video_receiver_unittest.cc', 112 'video_receiver/video_receiver_unittest.cc',
113 'video_sender/external_video_encoder_unittest.cc', 113 'video_sender/external_video_encoder_unittest.cc',
114 'video_sender/video_encoder_impl_unittest.cc', 114 'video_sender/video_encoder_impl_unittest.cc',
115 'video_sender/video_sender_unittest.cc', 115 'video_sender/video_sender_unittest.cc',
116 ], # source 116 ], # source
117 }, 117 },
118 { 118 {
119 'target_name': 'log_encoding_app',
120 'type': 'executable',
121 'include_dirs': [
122 '<(DEPTH)/',
123 ],
124 'dependencies': [
125 '<(DEPTH)/base/base.gyp:base',
126 '<(DEPTH)/base/base.gyp:test_support_base',
127 '<(DEPTH)/net/net.gyp:net',
128 'cast_config',
129 'cast_logging_proto_lib',
130 ],
131 'sources': [
132 '<(DEPTH)/media/cast/test/log_encoder.cc',
133 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib',
134 # TODO(imcheng): Don't do this
135 'test/fake_single_thread_task_runner.cc',
136 'test/fake_single_thread_task_runner.h',
137 ],
138 },
139 {
119 'target_name': 'cast_sender_app', 140 'target_name': 'cast_sender_app',
120 'type': 'executable', 141 'type': 'executable',
121 'include_dirs': [ 142 'include_dirs': [
122 '<(DEPTH)/', 143 '<(DEPTH)/',
123 ], 144 ],
124 'dependencies': [ 145 'dependencies': [
125 'cast_config', 146 'cast_config',
126 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 147 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
127 '<(DEPTH)/net/net.gyp:net_test_support', 148 '<(DEPTH)/net/net.gyp:net_test_support',
128 '<(DEPTH)/media/cast/cast_sender.gyp:*', 149 '<(DEPTH)/media/cast/cast_sender.gyp:*',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 'variables': { 200 'variables': {
180 'proto_in_dir': 'logging/proto', 201 'proto_in_dir': 'logging/proto',
181 'proto_out_dir': 'media/cast/logging/proto', 202 'proto_out_dir': 'media/cast/logging/proto',
182 }, 203 },
183 'includes': ['../../build/protoc.gypi'], 204 'includes': ['../../build/protoc.gypi'],
184 }, 205 },
185 ], # targets 206 ], # targets
186 }], # include_tests 207 }], # include_tests
187 ], 208 ],
188 } 209 }
OLDNEW
« no previous file with comments | « media/cast/DEPS ('k') | media/cast/test/fake_single_thread_task_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698