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

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

Issue 606503002: Rewrite apps::SavedDevicesService as extensions::DevicePermissionsManager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use C++11 for each loops and auto. 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 = [
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 "api/declarative_webrequest/webrequest_action.cc", 113 "api/declarative_webrequest/webrequest_action.cc",
114 "api/declarative_webrequest/webrequest_action.h", 114 "api/declarative_webrequest/webrequest_action.h",
115 "api/declarative_webrequest/webrequest_condition_attribute.cc", 115 "api/declarative_webrequest/webrequest_condition_attribute.cc",
116 "api/declarative_webrequest/webrequest_condition_attribute.h", 116 "api/declarative_webrequest/webrequest_condition_attribute.h",
117 "api/declarative_webrequest/webrequest_condition.cc", 117 "api/declarative_webrequest/webrequest_condition.cc",
118 "api/declarative_webrequest/webrequest_condition.h", 118 "api/declarative_webrequest/webrequest_condition.h",
119 "api/declarative_webrequest/webrequest_constants.cc", 119 "api/declarative_webrequest/webrequest_constants.cc",
120 "api/declarative_webrequest/webrequest_constants.h", 120 "api/declarative_webrequest/webrequest_constants.h",
121 "api/declarative_webrequest/webrequest_rules_registry.cc", 121 "api/declarative_webrequest/webrequest_rules_registry.cc",
122 "api/declarative_webrequest/webrequest_rules_registry.h", 122 "api/declarative_webrequest/webrequest_rules_registry.h",
123 "api/device_permissions_manager.cc",
124 "api/device_permissions_manager.h",
123 "api/dns/dns_api.cc", 125 "api/dns/dns_api.cc",
124 "api/dns/dns_api.h", 126 "api/dns/dns_api.h",
125 "api/dns/host_resolver_wrapper.cc", 127 "api/dns/host_resolver_wrapper.cc",
126 "api/dns/host_resolver_wrapper.h", 128 "api/dns/host_resolver_wrapper.h",
127 "api/execute_code_function.cc", 129 "api/execute_code_function.cc",
128 "api/execute_code_function.h", 130 "api/execute_code_function.h",
129 "api/extensions_api_client.cc", 131 "api/extensions_api_client.cc",
130 "api/extensions_api_client.h", 132 "api/extensions_api_client.h",
131 "api/hid/hid_api.cc", 133 "api/hid/hid_api.cc",
132 "api/hid/hid_api.h", 134 "api/hid/hid_api.h",
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 ] 467 ]
466 } 468 }
467 } 469 }
468 470
469 if (is_win) { 471 if (is_win) {
470 cflags = [ 472 cflags = [
471 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 473 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
472 ] 474 ]
473 } 475 }
474 } 476 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698