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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 "api/system_storage/system_storage_api.cc", | 203 "api/system_storage/system_storage_api.cc", |
204 "api/system_storage/system_storage_api.h", | 204 "api/system_storage/system_storage_api.h", |
205 "api/test/test_api.cc", | 205 "api/test/test_api.cc", |
206 "api/test/test_api.h", | 206 "api/test/test_api.h", |
207 "api/usb/usb_api.cc", | 207 "api/usb/usb_api.cc", |
208 "api/usb/usb_api.h", | 208 "api/usb/usb_api.h", |
209 "api/usb/usb_device_resource.cc", | 209 "api/usb/usb_device_resource.cc", |
210 "api/usb/usb_device_resource.h", | 210 "api/usb/usb_device_resource.h", |
211 "api/usb_private/usb_private_api.cc", | 211 "api/usb_private/usb_private_api.cc", |
212 "api/usb_private/usb_private_api.h", | 212 "api/usb_private/usb_private_api.h", |
| 213 "api/web_request/web_request_api_constants.cc", |
| 214 "api/web_request/web_request_api_constants.h", |
213 "api/web_request/web_request_api_utils.cc", | 215 "api/web_request/web_request_api_utils.cc", |
214 "api/web_request/web_request_api_utils.h", | 216 "api/web_request/web_request_api_utils.h", |
215 "api/web_view/web_view_internal_api.cc", | 217 "api/web_view/web_view_internal_api.cc", |
216 "api/web_view/web_view_internal_api.h", | 218 "api/web_view/web_view_internal_api.h", |
217 "api_activity_monitor.h", | 219 "api_activity_monitor.h", |
218 "app_sorting.h", | 220 "app_sorting.h", |
219 "app_window/app_delegate.h", | 221 "app_window/app_delegate.h", |
220 "app_window/app_web_contents_helper.cc", | 222 "app_window/app_web_contents_helper.cc", |
221 "app_window/app_web_contents_helper.h", | 223 "app_window/app_web_contents_helper.h", |
222 "app_window/app_window.cc", | 224 "app_window/app_window.cc", |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 ] | 439 ] |
438 } | 440 } |
439 } | 441 } |
440 | 442 |
441 if (is_win) { | 443 if (is_win) { |
442 cflags = [ | 444 cflags = [ |
443 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 445 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
444 ] | 446 ] |
445 } | 447 } |
446 } | 448 } |
OLD | NEW |