| 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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 "logging/encoding_event_subscriber.h", | 35 "logging/encoding_event_subscriber.h", |
| 36 "logging/log_deserializer.cc", | 36 "logging/log_deserializer.cc", |
| 37 "logging/log_deserializer.h", | 37 "logging/log_deserializer.h", |
| 38 "logging/log_event_dispatcher.cc", | 38 "logging/log_event_dispatcher.cc", |
| 39 "logging/log_event_dispatcher.h", | 39 "logging/log_event_dispatcher.h", |
| 40 "logging/log_serializer.cc", | 40 "logging/log_serializer.cc", |
| 41 "logging/log_serializer.h", | 41 "logging/log_serializer.h", |
| 42 "logging/logging_defines.cc", | 42 "logging/logging_defines.cc", |
| 43 "logging/logging_defines.h", | 43 "logging/logging_defines.h", |
| 44 "logging/proto/proto_utils.cc", | 44 "logging/proto/proto_utils.cc", |
| 45 "logging/proto/proto_utils.h", |
| 45 "logging/raw_event_subscriber.h", | 46 "logging/raw_event_subscriber.h", |
| 46 "logging/raw_event_subscriber_bundle.cc", | 47 "logging/raw_event_subscriber_bundle.cc", |
| 47 "logging/raw_event_subscriber_bundle.h", | 48 "logging/raw_event_subscriber_bundle.h", |
| 48 "logging/receiver_time_offset_estimator.h", | 49 "logging/receiver_time_offset_estimator.h", |
| 49 "logging/receiver_time_offset_estimator_impl.cc", | 50 "logging/receiver_time_offset_estimator_impl.cc", |
| 50 "logging/receiver_time_offset_estimator_impl.h", | 51 "logging/receiver_time_offset_estimator_impl.h", |
| 51 "logging/simple_event_subscriber.cc", | 52 "logging/simple_event_subscriber.cc", |
| 52 "logging/simple_event_subscriber.h", | 53 "logging/simple_event_subscriber.h", |
| 53 "logging/stats_event_subscriber.cc", | 54 "logging/stats_event_subscriber.cc", |
| 54 "logging/stats_event_subscriber.h", | 55 "logging/stats_event_subscriber.h", |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 ":sender", | 543 ":sender", |
| 543 ] | 544 ] |
| 544 } | 545 } |
| 545 | 546 |
| 546 static_library("cast_receiver") { | 547 static_library("cast_receiver") { |
| 547 complete_static_lib = true | 548 complete_static_lib = true |
| 548 deps = [ | 549 deps = [ |
| 549 ":receiver", | 550 ":receiver", |
| 550 ] | 551 ] |
| 551 } | 552 } |
| OLD | NEW |