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

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

Issue 671163002: Add new extension API for VPN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added an optional callback to methods in the idl Created 6 years, 1 month 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
« no previous file with comments | « no previous file | extensions/browser/api/vpn_provider/OWNERS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 "api/system_storage/system_storage_api.h", 231 "api/system_storage/system_storage_api.h",
232 "api/test/test_api.cc", 232 "api/test/test_api.cc",
233 "api/test/test_api.h", 233 "api/test/test_api.h",
234 "api/usb/usb_api.cc", 234 "api/usb/usb_api.cc",
235 "api/usb/usb_api.h", 235 "api/usb/usb_api.h",
236 "api/usb/usb_device_resource.cc", 236 "api/usb/usb_device_resource.cc",
237 "api/usb/usb_device_resource.h", 237 "api/usb/usb_device_resource.h",
238 "api/virtual_keyboard_private/virtual_keyboard_private_api.cc", 238 "api/virtual_keyboard_private/virtual_keyboard_private_api.cc",
239 "api/virtual_keyboard_private/virtual_keyboard_private_api.h", 239 "api/virtual_keyboard_private/virtual_keyboard_private_api.h",
240 "api/virtual_keyboard_private/virtual_keyboard_delegate.h", 240 "api/virtual_keyboard_private/virtual_keyboard_delegate.h",
241 "api/vpn_provider/vpn_provider_api.cc",
242 "api/vpn_provider/vpn_provider_api.h",
241 "api/web_request/form_data_parser.cc", 243 "api/web_request/form_data_parser.cc",
242 "api/web_request/form_data_parser.h", 244 "api/web_request/form_data_parser.h",
243 "api/web_request/upload_data_presenter.cc", 245 "api/web_request/upload_data_presenter.cc",
244 "api/web_request/upload_data_presenter.h", 246 "api/web_request/upload_data_presenter.h",
245 "api/web_request/web_request_api.cc", 247 "api/web_request/web_request_api.cc",
246 "api/web_request/web_request_api.h", 248 "api/web_request/web_request_api.h",
247 "api/web_request/web_request_api_constants.cc", 249 "api/web_request/web_request_api_constants.cc",
248 "api/web_request/web_request_api_constants.h", 250 "api/web_request/web_request_api_constants.h",
249 "api/web_request/web_request_api_helpers.cc", 251 "api/web_request/web_request_api_helpers.cc",
250 "api/web_request/web_request_api_helpers.h", 252 "api/web_request/web_request_api_helpers.h",
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 ] 509 ]
508 } 510 }
509 } 511 }
510 512
511 if (is_win) { 513 if (is_win) {
512 cflags = [ 514 cflags = [
513 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 515 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
514 ] 516 ]
515 } 517 }
516 } 518 }
OLDNEW
« no previous file with comments | « no previous file | extensions/browser/api/vpn_provider/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698