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

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

Issue 596003002: Allow declarative webrequest and webrequest in extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/features.gni") 5 import("//build/config/features.gni")
6 6
7 # GYP version: extensions/extensions.gyp:extensions_common 7 # GYP version: extensions/extensions.gyp:extensions_common
8 source_set("common") { 8 source_set("common") {
9 sources = [ 9 sources = [
10 "api/messaging/message.h", 10 "api/messaging/message.h",
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 214
215 if (enable_extensions) { 215 if (enable_extensions) {
216 sources -= [ 216 sources -= [
217 "extension_api_stub.cc", 217 "extension_api_stub.cc",
218 ] 218 ]
219 219
220 deps += [ 220 deps += [
221 "//device/bluetooth", 221 "//device/bluetooth",
222 "//device/usb", 222 "//device/usb",
223 "//extensions/common/api", 223 "//extensions/common/api",
224 "//extensions:extensions_resources",
224 ] 225 ]
225 } else { 226 } else {
226 sources -= [ 227 sources -= [
227 "api/bluetooth/bluetooth_manifest_data.cc", 228 "api/bluetooth/bluetooth_manifest_data.cc",
228 "api/bluetooth/bluetooth_manifest_data.h", 229 "api/bluetooth/bluetooth_manifest_data.h",
229 "api/bluetooth/bluetooth_manifest_handler.cc", 230 "api/bluetooth/bluetooth_manifest_handler.cc",
230 "api/bluetooth/bluetooth_manifest_handler.h", 231 "api/bluetooth/bluetooth_manifest_handler.h",
231 "api/bluetooth/bluetooth_manifest_permission.cc", 232 "api/bluetooth/bluetooth_manifest_permission.cc",
232 "api/bluetooth/bluetooth_manifest_permission.h", 233 "api/bluetooth/bluetooth_manifest_permission.h",
233 "api/messaging/message.h", 234 "api/messaging/message.h",
(...skipping 17 matching lines...) Expand all
251 "manifest_handlers/nacl_modules_handler.h", 252 "manifest_handlers/nacl_modules_handler.h",
252 ] 253 ]
253 } 254 }
254 255
255 if (is_win) { 256 if (is_win) {
256 cflags = [ 257 cflags = [
257 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 258 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
258 ] 259 ]
259 } 260 }
260 } 261 }
OLDNEW
« no previous file with comments | « extensions/browser/guest_view/web_view/web_view_guest_delegate.h ('k') | extensions/common/api/_api_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698