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

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

Issue 610633002: Prototype for copresenceSockets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: format specifiers build fix Created 6 years, 2 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 = [
11 ] 11 ]
12 12
13 deps = [ 13 deps = [
14 "//components/copresence_sockets",
14 "//components/keyed_service/content", 15 "//components/keyed_service/content",
15 "//components/keyed_service/core", 16 "//components/keyed_service/core",
16 "//components/pref_registry", 17 "//components/pref_registry",
17 "//components/sessions", 18 "//components/sessions",
18 "//components/web_cache/browser", 19 "//components/web_cache/browser",
19 "//components/web_modal", 20 "//components/web_modal",
20 "//content/public/browser", 21 "//content/public/browser",
21 "//extensions/common", 22 "//extensions/common",
22 "//extensions/common/api", 23 "//extensions/common/api",
23 "//extensions/common/api:api_registration", 24 "//extensions/common/api:api_registration",
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 "api/cast_channel/cast_message_util.cc", 91 "api/cast_channel/cast_message_util.cc",
91 "api/cast_channel/cast_message_util.h", 92 "api/cast_channel/cast_message_util.h",
92 "api/cast_channel/cast_socket.cc", 93 "api/cast_channel/cast_socket.cc",
93 "api/cast_channel/cast_socket.h", 94 "api/cast_channel/cast_socket.h",
94 "api/cast_channel/cast_transport.cc", 95 "api/cast_channel/cast_transport.cc",
95 "api/cast_channel/cast_transport.h", 96 "api/cast_channel/cast_transport.h",
96 "api/cast_channel/logger.cc", 97 "api/cast_channel/logger.cc",
97 "api/cast_channel/logger.h", 98 "api/cast_channel/logger.h",
98 "api/cast_channel/logger_util.cc", 99 "api/cast_channel/logger_util.cc",
99 "api/cast_channel/logger_util.h", 100 "api/cast_channel/logger_util.h",
101 "api/copresence_socket/copresence_socket_api.cc",
102 "api/copresence_socket/copresence_socket_api.h",
100 "api/declarative/declarative_api.cc", 103 "api/declarative/declarative_api.cc",
101 "api/declarative/declarative_api.h", 104 "api/declarative/declarative_api.h",
102 "api/declarative/declarative_rule.h", 105 "api/declarative/declarative_rule.h",
103 "api/declarative/deduping_factory.h", 106 "api/declarative/deduping_factory.h",
104 "api/declarative/rules_cache_delegate.cc", 107 "api/declarative/rules_cache_delegate.cc",
105 "api/declarative/rules_cache_delegate.h", 108 "api/declarative/rules_cache_delegate.h",
106 "api/declarative/rules_registry.cc", 109 "api/declarative/rules_registry.cc",
107 "api/declarative/rules_registry.h", 110 "api/declarative/rules_registry.h",
108 "api/declarative/rules_registry_service.cc", 111 "api/declarative/rules_registry_service.cc",
109 "api/declarative/rules_registry_service.h", 112 "api/declarative/rules_registry_service.h",
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 ] 478 ]
476 } 479 }
477 } 480 }
478 481
479 if (is_win) { 482 if (is_win) {
480 cflags = [ 483 cflags = [
481 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 484 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
482 ] 485 ]
483 } 486 }
484 } 487 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698