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

Side by Side Diff: extensions/browser/BUILD.gn

Issue 555283002: Create new class "CastTransport", which encapsulates the message read and write event loops. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added unit tests to CL Created 6 years, 3 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 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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 7
8 # GYP version: extensions/extensions.gyp:extensions_browser 8 # GYP version: extensions/extensions.gyp:extensions_browser
9 source_set("browser") { 9 source_set("browser") {
10 sources = [ 10 sources = [
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 "api/bluetooth_socket/bluetooth_api_socket.cc", 70 "api/bluetooth_socket/bluetooth_api_socket.cc",
71 "api/bluetooth_socket/bluetooth_api_socket.h", 71 "api/bluetooth_socket/bluetooth_api_socket.h",
72 "api/bluetooth_socket/bluetooth_socket_api.cc", 72 "api/bluetooth_socket/bluetooth_socket_api.cc",
73 "api/bluetooth_socket/bluetooth_socket_api.h", 73 "api/bluetooth_socket/bluetooth_socket_api.h",
74 "api/bluetooth_socket/bluetooth_socket_event_dispatcher.cc", 74 "api/bluetooth_socket/bluetooth_socket_event_dispatcher.cc",
75 "api/bluetooth_socket/bluetooth_socket_event_dispatcher.h", 75 "api/bluetooth_socket/bluetooth_socket_event_dispatcher.h",
76 "api/cast_channel/cast_auth_util.cc", 76 "api/cast_channel/cast_auth_util.cc",
77 "api/cast_channel/cast_auth_util.h", 77 "api/cast_channel/cast_auth_util.h",
78 "api/cast_channel/cast_channel_api.cc", 78 "api/cast_channel/cast_channel_api.cc",
79 "api/cast_channel/cast_channel_api.h", 79 "api/cast_channel/cast_channel_api.h",
80 "api/cast_channel/cast_framer.cc",
81 "api/cast_channel/cast_framer.h",
80 "api/cast_channel/cast_message_util.cc", 82 "api/cast_channel/cast_message_util.cc",
81 "api/cast_channel/cast_message_util.h", 83 "api/cast_channel/cast_message_util.h",
82 "api/cast_channel/cast_socket.cc", 84 "api/cast_channel/cast_socket.cc",
83 "api/cast_channel/cast_socket.h", 85 "api/cast_channel/cast_socket.h",
86 "api/cast_channel/cast_transport.cc",
87 "api/cast_channel/cast_transport.h",
84 "api/cast_channel/logger.cc", 88 "api/cast_channel/logger.cc",
85 "api/cast_channel/logger.h", 89 "api/cast_channel/logger.h",
86 "api/cast_channel/logger_util.cc", 90 "api/cast_channel/logger_util.cc",
87 "api/cast_channel/logger_util.h", 91 "api/cast_channel/logger_util.h",
88 "api/dns/dns_api.cc", 92 "api/dns/dns_api.cc",
89 "api/dns/dns_api.h", 93 "api/dns/dns_api.h",
90 "api/dns/host_resolver_wrapper.cc", 94 "api/dns/host_resolver_wrapper.cc",
91 "api/dns/host_resolver_wrapper.h", 95 "api/dns/host_resolver_wrapper.h",
92 "api/extensions_api_client.cc", 96 "api/extensions_api_client.cc",
93 "api/extensions_api_client.h", 97 "api/extensions_api_client.h",
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 ] 371 ]
368 } 372 }
369 } 373 }
370 374
371 if (is_win) { 375 if (is_win) {
372 cflags = [ 376 cflags = [
373 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 377 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
374 ] 378 ]
375 } 379 }
376 } 380 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698