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 '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 } |
OLD | NEW |