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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/logging/logging.gyp
diff --git a/media/cast/logging/logging.gyp b/media/cast/logging/logging.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..ba2c2dcdd4d27d864a42d419ef42e52fc8e131cb
--- /dev/null
+++ b/media/cast/logging/logging.gyp
@@ -0,0 +1,87 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+{
+ 'targets': [
+ {
+ 'target_name': 'cast_common_logging',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '<(DEPTH)/',
+ ],
+ 'dependencies': [
+ 'cast_logging_proto_lib',
+ '<(DEPTH)/base/base.gyp:base',
+ ],
+ 'export_dependent_settings': [
+ 'cast_logging_proto_lib',
+ ],
+ 'sources': [
+ 'logging_defines.cc',
+ 'logging_defines.h',
+ 'logging_impl.cc',
+ 'logging_impl.h',
+ 'logging_raw.cc',
+ 'logging_raw.h',
+ 'logging_stats.cc',
+ 'logging_stats.h',
+ 'raw_event_subscriber.h',
+ 'simple_event_subscriber.cc',
+ 'simple_event_subscriber.h',
+ ], # source
+ },
+ {
+ 'target_name': 'sender_logging',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '<(DEPTH)/',
+ ],
+ 'dependencies': [
+ 'cast_common_logging',
+ 'cast_logging_proto_lib',
+ '<(DEPTH)/base/base.gyp:base',
+ ],
+ 'export_dependent_settings': [
+ 'cast_logging_proto_lib',
+ ],
+ 'sources': [
+ 'encoding_event_subscriber.cc',
+ 'encoding_event_subscriber.h',
+ 'log_serializer.cc',
+ 'log_serializer.h',
+ ], # source
+ },
+ {
+ 'target_name': 'cast_logging_proto_lib',
+ 'type': 'static_library',
+ 'sources': [
+ 'proto/proto_utils.cc',
+ 'proto/raw_events.proto',
+ ],
+ 'variables': {
+ 'proto_in_dir': 'proto',
+ 'proto_out_dir': 'media/cast/logging/proto',
+ },
+ 'includes': ['../../../build/protoc.gypi'],
+ },
+ {
+ 'target_name': 'cast_log_analysis',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '<(DEPTH)/',
+ ],
+ 'dependencies': [
+ 'cast_logging_proto_lib',
+ 'sender_logging',
+ '<(DEPTH)/base/base.gyp:base',
+ ],
+ 'export_dependent_settings': [
+ 'cast_logging_proto_lib',
+ ],
+ 'sources': [
+ 'log_deserializer.cc',
+ 'log_deserializer.h',
+ ], # source
+ },
+ ],
+}
« 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