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

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: Addressed wez's feedback. 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 "api/cast_channel/cast_auth_util.cc", 80 "api/cast_channel/cast_auth_util.cc",
81 "api/cast_channel/cast_auth_util.h", 81 "api/cast_channel/cast_auth_util.h",
82 "api/cast_channel/cast_channel_api.cc", 82 "api/cast_channel/cast_channel_api.cc",
83 "api/cast_channel/cast_channel_api.h", 83 "api/cast_channel/cast_channel_api.h",
84 "api/cast_channel/cast_framer.cc", 84 "api/cast_channel/cast_framer.cc",
85 "api/cast_channel/cast_framer.h", 85 "api/cast_channel/cast_framer.h",
86 "api/cast_channel/cast_message_util.cc", 86 "api/cast_channel/cast_message_util.cc",
87 "api/cast_channel/cast_message_util.h", 87 "api/cast_channel/cast_message_util.h",
88 "api/cast_channel/cast_socket.cc", 88 "api/cast_channel/cast_socket.cc",
89 "api/cast_channel/cast_socket.h", 89 "api/cast_channel/cast_socket.h",
90 "api/cast_channel/cast_transport.cc",
91 "api/cast_channel/cast_transport.h",
90 "api/cast_channel/logger.cc", 92 "api/cast_channel/logger.cc",
91 "api/cast_channel/logger.h", 93 "api/cast_channel/logger.h",
92 "api/cast_channel/logger_util.cc", 94 "api/cast_channel/logger_util.cc",
93 "api/cast_channel/logger_util.h", 95 "api/cast_channel/logger_util.h",
94 "api/declarative/declarative_api.cc", 96 "api/declarative/declarative_api.cc",
95 "api/declarative/declarative_api.h", 97 "api/declarative/declarative_api.h",
96 "api/declarative/declarative_rule.h", 98 "api/declarative/declarative_rule.h",
97 "api/declarative/deduping_factory.h", 99 "api/declarative/deduping_factory.h",
98 "api/declarative/rules_cache_delegate.cc", 100 "api/declarative/rules_cache_delegate.cc",
99 "api/declarative/rules_cache_delegate.h", 101 "api/declarative/rules_cache_delegate.h",
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 ] 443 ]
442 } 444 }
443 } 445 }
444 446
445 if (is_win) { 447 if (is_win) {
446 cflags = [ 448 cflags = [
447 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 449 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
448 ] 450 ]
449 } 451 }
450 } 452 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698