| OLD | NEW |
| (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 'variables': { | |
| 6 'chromium_code': 1, | |
| 7 }, | |
| 8 'targets': [ | |
| 9 { | |
| 10 'target_name': 'cast_common_logging', | |
| 11 'type': 'static_library', | |
| 12 'include_dirs': [ | |
| 13 '<(DEPTH)/', | |
| 14 ], | |
| 15 'dependencies': [ | |
| 16 'cast_logging_proto_lib', | |
| 17 '<(DEPTH)/base/base.gyp:base', | |
| 18 ], | |
| 19 'export_dependent_settings': [ | |
| 20 'cast_logging_proto_lib', | |
| 21 ], | |
| 22 'sources': [ | |
| 23 'logging_defines.cc', | |
| 24 'logging_defines.h', | |
| 25 'logging_impl.cc', | |
| 26 'logging_impl.h', | |
| 27 'logging_raw.cc', | |
| 28 'logging_raw.h', | |
| 29 'raw_event_subscriber.h', | |
| 30 'simple_event_subscriber.cc', | |
| 31 'simple_event_subscriber.h', | |
| 32 'stats_event_subscriber.cc', | |
| 33 'stats_event_subscriber.h', | |
| 34 'stats_util.cc', | |
| 35 'stats_util.h', | |
| 36 ], # source | |
| 37 }, | |
| 38 { | |
| 39 'target_name': 'sender_logging', | |
| 40 'type': 'static_library', | |
| 41 'include_dirs': [ | |
| 42 '<(DEPTH)/', | |
| 43 ], | |
| 44 'dependencies': [ | |
| 45 'cast_common_logging', | |
| 46 'cast_logging_proto_lib', | |
| 47 '<(DEPTH)/base/base.gyp:base', | |
| 48 ], | |
| 49 'export_dependent_settings': [ | |
| 50 'cast_logging_proto_lib', | |
| 51 ], | |
| 52 'sources': [ | |
| 53 'encoding_event_subscriber.cc', | |
| 54 'encoding_event_subscriber.h', | |
| 55 'log_serializer.cc', | |
| 56 'log_serializer.h', | |
| 57 ], # source | |
| 58 }, | |
| 59 { | |
| 60 'target_name': 'cast_logging_proto_lib', | |
| 61 'type': 'static_library', | |
| 62 'sources': [ | |
| 63 'proto/proto_utils.cc', | |
| 64 'proto/raw_events.proto', | |
| 65 ], | |
| 66 'variables': { | |
| 67 'proto_in_dir': 'proto', | |
| 68 'proto_out_dir': 'media/cast/logging/proto', | |
| 69 }, | |
| 70 'includes': ['../../../build/protoc.gypi'], | |
| 71 }, | |
| 72 { | |
| 73 'target_name': 'cast_log_analysis', | |
| 74 'type': 'static_library', | |
| 75 'include_dirs': [ | |
| 76 '<(DEPTH)/', | |
| 77 ], | |
| 78 'dependencies': [ | |
| 79 'cast_logging_proto_lib', | |
| 80 'sender_logging', | |
| 81 '<(DEPTH)/base/base.gyp:base', | |
| 82 ], | |
| 83 'export_dependent_settings': [ | |
| 84 'cast_logging_proto_lib', | |
| 85 ], | |
| 86 'sources': [ | |
| 87 'log_deserializer.cc', | |
| 88 'log_deserializer.h', | |
| 89 ], # source | |
| 90 }, | |
| 91 ], | |
| 92 } | |
| OLD | NEW |