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

Unified Diff: media/cast/cast.gyp

Issue 138913014: Cast: Added a new RawEventSubscriber implementation for use in cast extension. (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 side-by-side diff with in-line comments
Download patch
Index: media/cast/cast.gyp
diff --git a/media/cast/cast.gyp b/media/cast/cast.gyp
index 21e5e554f2d89bc0de922a80423ca755c89ddb9b..6e24b4b84fad4d4688e28849116e1655e2b4f523 100644
--- a/media/cast/cast.gyp
+++ b/media/cast/cast.gyp
@@ -15,6 +15,7 @@
'<(DEPTH)/',
],
'dependencies': [
+ 'cast_logging_proto_lib',
'<(DEPTH)/base/base.gyp:base',
],
'sources': [
@@ -23,6 +24,8 @@
'cast_defines.h',
'cast_environment.cc',
'cast_environment.h',
+ 'logging/encoding_event_subscriber.cc',
+ 'logging/encoding_event_subscriber.h',
'logging/logging_defines.cc',
'logging/logging_defines.h',
'logging/logging_impl.cc',
@@ -31,6 +34,7 @@
'logging/logging_raw.h',
'logging/logging_stats.cc',
'logging/logging_stats.h',
+ 'logging/proto/proto_utils.cc',
Alpha Left Google 2014/02/11 22:49:13 This should be moved to cast_logging_proto_lib.
imcheng 2014/02/12 08:44:13 Done.
'logging/raw_event_subscriber.h',
'logging/simple_event_subscriber.cc',
'logging/simple_event_subscriber.h',
@@ -45,6 +49,7 @@
'type': '<(gtest_target_type)',
'dependencies': [
'cast_config',
+ 'cast_logging_proto_lib',
'cast_receiver.gyp:cast_receiver',
'cast_sender.gyp:cast_sender',
'test/utility/utility.gyp:cast_test_utility',
@@ -69,6 +74,7 @@
'framer/cast_message_builder_unittest.cc',
'framer/frame_buffer_unittest.cc',
'framer/framer_unittest.cc',
+ 'logging/encoding_event_subscriber_unittest.cc',
'logging/logging_impl_unittest.cc',
'logging/logging_raw_unittest.cc',
'logging/simple_event_subscriber_unittest.cc',
@@ -164,6 +170,18 @@
}],
],
},
+ {
+ 'target_name': 'cast_logging_proto_lib',
+ 'type': 'static_library',
+ 'sources': [
+ 'logging/proto/raw_events.proto',
+ ],
+ 'variables': {
+ 'proto_in_dir': 'logging/proto',
+ 'proto_out_dir': 'media/cast/logging/proto',
+ },
+ 'includes': ['../../build/protoc.gypi'],
+ },
], # targets
}], # include_tests
],
« no previous file with comments | « no previous file | media/cast/logging/encoding_event_subscriber.h » ('j') | media/cast/logging/encoding_event_subscriber.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698