| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |