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

Side by Side Diff: components/cast_channel/BUILD.gn

Issue 2974523002: [cast_channel] Make CastSocketService a global leaky singleton (Closed)
Patch Set: merge with master Created 3 years, 5 months 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 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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 static_library("cast_channel") { 5 static_library("cast_channel") {
6 sources = [ 6 sources = [
7 "cast_auth_util.cc", 7 "cast_auth_util.cc",
8 "cast_auth_util.h", 8 "cast_auth_util.h",
9 "cast_channel_enum.cc", 9 "cast_channel_enum.cc",
10 "cast_channel_enum.h", 10 "cast_channel_enum.h",
11 "cast_framer.cc", 11 "cast_framer.cc",
12 "cast_framer.h", 12 "cast_framer.h",
13 "cast_message_util.cc", 13 "cast_message_util.cc",
14 "cast_message_util.h", 14 "cast_message_util.h",
15 "cast_socket.cc", 15 "cast_socket.cc",
16 "cast_socket.h", 16 "cast_socket.h",
17 "cast_socket_service.cc", 17 "cast_socket_service.cc",
18 "cast_socket_service.h", 18 "cast_socket_service.h",
19 "cast_socket_service_factory.cc",
20 "cast_socket_service_factory.h",
21 "cast_transport.cc", 19 "cast_transport.cc",
22 "cast_transport.h", 20 "cast_transport.h",
23 "keep_alive_delegate.cc", 21 "keep_alive_delegate.cc",
24 "keep_alive_delegate.h", 22 "keep_alive_delegate.h",
25 "logger.cc", 23 "logger.cc",
26 "logger.h", 24 "logger.h",
27 ] 25 ]
28 deps = [ 26 deps = [
29 "//base", 27 "//base",
30 "//components/cast_certificate", 28 "//components/cast_certificate",
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 "//components/cast_certificate", 69 "//components/cast_certificate",
72 "//components/cast_certificate:test_support", 70 "//components/cast_certificate:test_support",
73 "//components/cast_certificate/proto:unittest_proto", 71 "//components/cast_certificate/proto:unittest_proto",
74 "//components/cast_channel/proto:cast_channel_proto", 72 "//components/cast_channel/proto:cast_channel_proto",
75 "//content/test:test_support", 73 "//content/test:test_support",
76 "//net:test_support", 74 "//net:test_support",
77 "//testing/gmock", 75 "//testing/gmock",
78 "//testing/gtest", 76 "//testing/gtest",
79 ] 77 ]
80 } 78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698