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

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

Issue 162103002: Cast: Added a EncodingEventSubscriber to cast sender app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@encoding-event-subscriber
Patch Set: minor fixes 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 | « no previous file | media/cast/test/receiver.cc » ('j') | media/cast/test/sender.cc » ('J')
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 'target_name': 'sender_logging', 53 'target_name': 'sender_logging',
54 'type': 'static_library', 54 'type': 'static_library',
55 'include_dirs': [ 55 'include_dirs': [
56 '<(DEPTH)/', 56 '<(DEPTH)/',
57 ], 57 ],
58 'dependencies': [ 58 'dependencies': [
59 'cast_config', 59 'cast_config',
60 'cast_logging_proto_lib', 60 'cast_logging_proto_lib',
61 '<(DEPTH)/base/base.gyp:base', 61 '<(DEPTH)/base/base.gyp:base',
62 ], 62 ],
63 'export_dependent_settings': [
64 'cast_logging_proto_lib',
65 ],
63 'sources': [ 66 'sources': [
64 'logging/encoding_event_subscriber.cc', 67 'logging/encoding_event_subscriber.cc',
65 'logging/encoding_event_subscriber.h', 68 'logging/encoding_event_subscriber.h',
66 ], # source 69 ], # source
67 }, 70 },
68 ], # targets, 71 ], # targets,
69 'conditions': [ 72 'conditions': [
70 ['include_tests==1', { 73 ['include_tests==1', {
71 'targets': [ 74 'targets': [
72 { 75 {
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 ], # source 146 ], # source
144 }, 147 },
145 { 148 {
146 'target_name': 'cast_sender_app', 149 'target_name': 'cast_sender_app',
147 'type': 'executable', 150 'type': 'executable',
148 'include_dirs': [ 151 'include_dirs': [
149 '<(DEPTH)/', 152 '<(DEPTH)/',
150 ], 153 ],
151 'dependencies': [ 154 'dependencies': [
152 'cast_config', 155 'cast_config',
156 'sender_logging',
153 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 157 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
154 '<(DEPTH)/net/net.gyp:net_test_support', 158 '<(DEPTH)/net/net.gyp:net_test_support',
155 '<(DEPTH)/media/cast/cast_sender.gyp:*', 159 '<(DEPTH)/media/cast/cast_sender.gyp:*',
156 '<(DEPTH)/media/media.gyp:media', 160 '<(DEPTH)/media/media.gyp:media',
157 '<(DEPTH)/testing/gtest.gyp:gtest', 161 '<(DEPTH)/testing/gtest.gyp:gtest',
158 '<(DEPTH)/third_party/opus/opus.gyp:opus', 162 '<(DEPTH)/third_party/opus/opus.gyp:opus',
159 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport', 163 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport',
160 '<(DEPTH)/media/cast/test/utility/utility.gyp:cast_test_utility', 164 '<(DEPTH)/media/cast/test/utility/utility.gyp:cast_test_utility',
161 ], 165 ],
162 'sources': [ 166 'sources': [
(...skipping 30 matching lines...) Expand all
193 '<(DEPTH)/media/cast/test/linux_output_window.cc', 197 '<(DEPTH)/media/cast/test/linux_output_window.cc',
194 '<(DEPTH)/media/cast/test/linux_output_window.h', 198 '<(DEPTH)/media/cast/test/linux_output_window.h',
195 ], 199 ],
196 }], 200 }],
197 ], 201 ],
198 }, 202 },
199 ], # targets 203 ], # targets
200 }], # include_tests 204 }], # include_tests
201 ], 205 ],
202 } 206 }
OLDNEW
« no previous file with comments | « no previous file | media/cast/test/receiver.cc » ('j') | media/cast/test/sender.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698