| OLD | NEW |
| 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 'raw_event_subscriber_bundle.cc', |
| 31 'raw_event_subscriber_bundle.h', |
| 32 'receiver_time_offset_estimator.h', |
| 33 'receiver_time_offset_estimator_impl.cc', |
| 34 'receiver_time_offset_estimator_impl.h', |
| 30 'simple_event_subscriber.cc', | 35 'simple_event_subscriber.cc', |
| 31 'simple_event_subscriber.h', | 36 'simple_event_subscriber.h', |
| 32 'stats_event_subscriber.cc', | 37 'stats_event_subscriber.cc', |
| 33 'stats_event_subscriber.h', | 38 'stats_event_subscriber.h', |
| 34 'stats_util.cc', | |
| 35 'stats_util.h', | |
| 36 ], # source | 39 ], # source |
| 37 }, | 40 }, |
| 38 { | 41 { |
| 39 'target_name': 'sender_logging', | 42 'target_name': 'sender_logging', |
| 40 'type': 'static_library', | 43 'type': 'static_library', |
| 41 'include_dirs': [ | 44 'include_dirs': [ |
| 42 '<(DEPTH)/', | 45 '<(DEPTH)/', |
| 43 ], | 46 ], |
| 44 'dependencies': [ | 47 'dependencies': [ |
| 45 'cast_common_logging', | 48 'cast_common_logging', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 'export_dependent_settings': [ | 86 'export_dependent_settings': [ |
| 84 'cast_logging_proto_lib', | 87 'cast_logging_proto_lib', |
| 85 ], | 88 ], |
| 86 'sources': [ | 89 'sources': [ |
| 87 'log_deserializer.cc', | 90 'log_deserializer.cc', |
| 88 'log_deserializer.h', | 91 'log_deserializer.h', |
| 89 ], # source | 92 ], # source |
| 90 }, | 93 }, |
| 91 ], | 94 ], |
| 92 } | 95 } |
| OLD | NEW |