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

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

Issue 236123003: Cast: Provide more meaningful stats. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: minor fix Created 6 years, 8 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 2014 The Chromium Authors. All rights reserved. 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 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'cast_common_logging', 10 'target_name': 'cast_common_logging',
11 'type': 'static_library', 11 'type': 'static_library',
12 'include_dirs': [ 12 'include_dirs': [
13 '<(DEPTH)/', 13 '<(DEPTH)/',
14 ], 14 ],
15 'dependencies': [ 15 'dependencies': [
16 'cast_logging_proto_lib', 16 'cast_logging_proto_lib',
17 '<(DEPTH)/base/base.gyp:base', 17 '<(DEPTH)/base/base.gyp:base',
18 ], 18 ],
19 'export_dependent_settings': [ 19 'export_dependent_settings': [
20 'cast_logging_proto_lib', 20 'cast_logging_proto_lib',
21 ], 21 ],
22 'sources': [ 22 'sources': [
23 'logging_defines.cc', 23 'logging_defines.cc',
24 'logging_defines.h', 24 'logging_defines.h',
25 'logging_impl.cc', 25 'logging_impl.cc',
26 'logging_impl.h', 26 'logging_impl.h',
27 'logging_raw.cc', 27 'logging_raw.cc',
28 'logging_raw.h', 28 'logging_raw.h',
29 'raw_event_subscriber.h', 29 'raw_event_subscriber.h',
30 'receiver_time_offset_estimator.h',
31 'receiver_time_offset_estimator_impl.cc',
32 'receiver_time_offset_estimator_impl.h',
30 'simple_event_subscriber.cc', 33 'simple_event_subscriber.cc',
31 'simple_event_subscriber.h', 34 'simple_event_subscriber.h',
32 'stats_event_subscriber.cc', 35 'stats_event_subscriber.cc',
33 'stats_event_subscriber.h', 36 'stats_event_subscriber.h',
34 'stats_util.cc',
35 'stats_util.h',
36 ], # source 37 ], # source
37 }, 38 },
38 { 39 {
39 'target_name': 'sender_logging', 40 'target_name': 'sender_logging',
40 'type': 'static_library', 41 'type': 'static_library',
41 'include_dirs': [ 42 'include_dirs': [
42 '<(DEPTH)/', 43 '<(DEPTH)/',
43 ], 44 ],
44 'dependencies': [ 45 'dependencies': [
45 'cast_common_logging', 46 'cast_common_logging',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 'export_dependent_settings': [ 84 'export_dependent_settings': [
84 'cast_logging_proto_lib', 85 'cast_logging_proto_lib',
85 ], 86 ],
86 'sources': [ 87 'sources': [
87 'log_deserializer.cc', 88 'log_deserializer.cc',
88 'log_deserializer.h', 89 'log_deserializer.h',
89 ], # source 90 ], # source
90 }, 91 },
91 ], 92 ],
92 } 93 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698