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

Side by Side Diff: media/cast/BUILD.gn

Issue 1515433002: Replace uses of raw uint32's with a type-checked RtpTimeTicks data type. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fixes for cast_messages.h for chromeos cross-compiles. Created 5 years 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 unified diff | Download patch
OLDNEW
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
11 proto_library("logging_proto") { 11 proto_library("logging_proto") {
12 sources = [ 12 sources = [
13 "logging/proto/raw_events.proto", 13 "logging/proto/raw_events.proto",
14 ] 14 ]
15 } 15 }
16 16
17 # Common code shared by all cast components. 17 # Common code shared by all cast components.
18 source_set("common") { 18 source_set("common") {
19 sources = [ 19 sources = [
20 "cast_config.cc", 20 "cast_config.cc",
21 "cast_config.h", 21 "cast_config.h",
22 "cast_defines.h", 22 "cast_defines.h",
23 "cast_environment.cc", 23 "cast_environment.cc",
24 "cast_environment.h", 24 "cast_environment.h",
25 "common/clock_drift_smoother.cc", 25 "common/clock_drift_smoother.cc",
26 "common/clock_drift_smoother.h", 26 "common/clock_drift_smoother.h",
27 "common/expanded_value_base.h",
28 "common/rtp_time.cc",
29 "common/rtp_time.h",
27 "common/transport_encryption_handler.cc", 30 "common/transport_encryption_handler.cc",
28 "common/transport_encryption_handler.h", 31 "common/transport_encryption_handler.h",
29 "constants.h", 32 "constants.h",
30 "logging/encoding_event_subscriber.cc", 33 "logging/encoding_event_subscriber.cc",
31 "logging/encoding_event_subscriber.h", 34 "logging/encoding_event_subscriber.h",
32 "logging/log_deserializer.cc", 35 "logging/log_deserializer.cc",
33 "logging/log_deserializer.h", 36 "logging/log_deserializer.h",
34 "logging/log_event_dispatcher.cc", 37 "logging/log_event_dispatcher.cc",
35 "logging/log_event_dispatcher.h", 38 "logging/log_event_dispatcher.h",
36 "logging/log_serializer.cc", 39 "logging/log_serializer.cc",
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 # The _run targets exist only for compatibility w/ GYP. 297 # The _run targets exist only for compatibility w/ GYP.
295 group("cast_unittests_run") { 298 group("cast_unittests_run") {
296 testonly = true 299 testonly = true
297 deps = [ 300 deps = [
298 ":cast_unittests", 301 ":cast_unittests",
299 ] 302 ]
300 } 303 }
301 304
302 test("cast_unittests") { 305 test("cast_unittests") {
303 sources = [ 306 sources = [
307 "common/expanded_value_base_unittest.cc",
308 "common/rtp_time_unittest.cc",
304 "logging/encoding_event_subscriber_unittest.cc", 309 "logging/encoding_event_subscriber_unittest.cc",
305 "logging/receiver_time_offset_estimator_impl_unittest.cc", 310 "logging/receiver_time_offset_estimator_impl_unittest.cc",
306 "logging/serialize_deserialize_test.cc", 311 "logging/serialize_deserialize_test.cc",
307 "logging/simple_event_subscriber_unittest.cc", 312 "logging/simple_event_subscriber_unittest.cc",
308 "logging/stats_event_subscriber_unittest.cc", 313 "logging/stats_event_subscriber_unittest.cc",
309 "net/cast_transport_sender_impl_unittest.cc", 314 "net/cast_transport_sender_impl_unittest.cc",
310 "net/frame_id_wrap_helper_test.cc", 315 "net/frame_id_wrap_helper_test.cc",
311 "net/mock_cast_transport_sender.cc", 316 "net/mock_cast_transport_sender.cc",
312 "net/mock_cast_transport_sender.h", 317 "net/mock_cast_transport_sender.h",
313 "net/pacing/mock_paced_packet_sender.cc", 318 "net/pacing/mock_paced_packet_sender.cc",
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
539 deps = [ 544 deps = [
540 ":sender", 545 ":sender",
541 ] 546 ]
542 } 547 }
543 548
544 static_library("cast_receiver") { 549 static_library("cast_receiver") {
545 deps = [ 550 deps = [
546 ":receiver", 551 ":receiver",
547 ] 552 ]
548 } 553 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698