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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 "api/system_storage/storage_info_provider.cc", | 216 "api/system_storage/storage_info_provider.cc", |
217 "api/system_storage/storage_info_provider.h", | 217 "api/system_storage/storage_info_provider.h", |
218 "api/system_storage/system_storage_api.cc", | 218 "api/system_storage/system_storage_api.cc", |
219 "api/system_storage/system_storage_api.h", | 219 "api/system_storage/system_storage_api.h", |
220 "api/test/test_api.cc", | 220 "api/test/test_api.cc", |
221 "api/test/test_api.h", | 221 "api/test/test_api.h", |
222 "api/usb/usb_api.cc", | 222 "api/usb/usb_api.cc", |
223 "api/usb/usb_api.h", | 223 "api/usb/usb_api.h", |
224 "api/usb/usb_device_resource.cc", | 224 "api/usb/usb_device_resource.cc", |
225 "api/usb/usb_device_resource.h", | 225 "api/usb/usb_device_resource.h", |
226 "api/usb_private/usb_private_api.cc", | |
227 "api/usb_private/usb_private_api.h", | |
228 "api/web_request/form_data_parser.cc", | 226 "api/web_request/form_data_parser.cc", |
229 "api/web_request/form_data_parser.h", | 227 "api/web_request/form_data_parser.h", |
230 "api/web_request/upload_data_presenter.cc", | 228 "api/web_request/upload_data_presenter.cc", |
231 "api/web_request/upload_data_presenter.h", | 229 "api/web_request/upload_data_presenter.h", |
232 "api/web_request/web_request_api.cc", | 230 "api/web_request/web_request_api.cc", |
233 "api/web_request/web_request_api.h", | 231 "api/web_request/web_request_api.h", |
234 "api/web_request/web_request_api_constants.cc", | 232 "api/web_request/web_request_api_constants.cc", |
235 "api/web_request/web_request_api_constants.h", | 233 "api/web_request/web_request_api_constants.h", |
236 "api/web_request/web_request_api_helpers.cc", | 234 "api/web_request/web_request_api_helpers.cc", |
237 "api/web_request/web_request_api_helpers.h", | 235 "api/web_request/web_request_api_helpers.h", |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
469 ] | 467 ] |
470 } | 468 } |
471 } | 469 } |
472 | 470 |
473 if (is_win) { | 471 if (is_win) { |
474 cflags = [ | 472 cflags = [ |
475 "/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. |
476 ] | 474 ] |
477 } | 475 } |
478 } | 476 } |
OLD | NEW |