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

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

Issue 178073004: Cast: IPC from browser to renderer to send packet events from transport to cast library. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 9 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
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4 {
5 'targets': [
6 {
7 'target_name': 'cast_common_logging',
8 'type': 'static_library',
9 'include_dirs': [
10 '<(DEPTH)/',
11 ],
12 'dependencies': [
13 'cast_logging_proto_lib',
14 '<(DEPTH)/base/base.gyp:base',
15 ],
16 'export_dependent_settings': [
17 'cast_logging_proto_lib',
18 ],
19 'sources': [
20 'logging_defines.cc',
21 'logging_defines.h',
22 'logging_impl.cc',
23 'logging_impl.h',
24 'logging_raw.cc',
25 'logging_raw.h',
26 'logging_stats.cc',
27 'logging_stats.h',
28 'raw_event_subscriber.h',
29 'simple_event_subscriber.cc',
30 'simple_event_subscriber.h',
31 ], # source
32 },
33 {
34 'target_name': 'sender_logging',
35 'type': 'static_library',
36 'include_dirs': [
37 '<(DEPTH)/',
38 ],
39 'dependencies': [
40 'cast_common_logging',
41 'cast_logging_proto_lib',
42 '<(DEPTH)/base/base.gyp:base',
43 ],
44 'export_dependent_settings': [
45 'cast_logging_proto_lib',
46 ],
47 'sources': [
48 'encoding_event_subscriber.cc',
49 'encoding_event_subscriber.h',
50 'log_serializer.cc',
51 'log_serializer.h',
52 ], # source
53 },
54 {
55 'target_name': 'cast_logging_proto_lib',
56 'type': 'static_library',
57 'sources': [
58 'proto/proto_utils.cc',
59 'proto/raw_events.proto',
60 ],
61 'variables': {
62 'proto_in_dir': 'proto',
63 'proto_out_dir': 'media/cast/logging/proto',
64 },
65 'includes': ['../../../build/protoc.gypi'],
66 },
67 {
68 'target_name': 'cast_log_analysis',
69 'type': 'static_library',
70 'include_dirs': [
71 '<(DEPTH)/',
72 ],
73 'dependencies': [
74 'cast_logging_proto_lib',
75 'sender_logging',
76 '<(DEPTH)/base/base.gyp:base',
77 ],
78 'export_dependent_settings': [
79 'cast_logging_proto_lib',
80 ],
81 'sources': [
82 'log_deserializer.cc',
83 'log_deserializer.h',
84 ], # source
85 },
86 ],
87 }
OLDNEW
« no previous file with comments | « media/cast/logging/encoding_event_subscriber_unittest.cc ('k') | media/cast/logging/logging_defines.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698