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

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

Issue 173713004: Cast: Plumb raw event logs to cast extension, install EncodingEventSubscriber on CastSessionDelegat… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 '<(DEPTH)/media/cast/test/linux_output_window.cc', 196 '<(DEPTH)/media/cast/test/linux_output_window.cc',
194 '<(DEPTH)/media/cast/test/linux_output_window.h', 197 '<(DEPTH)/media/cast/test/linux_output_window.h',
195 ], 198 ],
196 }], 199 }],
197 ], 200 ],
198 }, 201 },
199 ], # targets 202 ], # targets
200 }], # include_tests 203 }], # include_tests
201 ], 204 ],
202 } 205 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698