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/usb_private/usb_private_api.cc", | 216 "api/usb_private/usb_private_api.cc", |
217 "api/usb_private/usb_private_api.h", | 217 "api/usb_private/usb_private_api.h", |
218 "api/web_request/web_request_api_constants.cc", | 218 "api/web_request/web_request_api_constants.cc", |
219 "api/web_request/web_request_api_constants.h", | 219 "api/web_request/web_request_api_constants.h", |
220 "api/web_request/web_request_api_helpers.cc", | 220 "api/web_request/web_request_api_helpers.cc", |
221 "api/web_request/web_request_api_helpers.h", | 221 "api/web_request/web_request_api_helpers.h", |
222 "api/web_request/web_request_api_utils.cc", | 222 "api/web_request/web_request_api_utils.cc", |
223 "api/web_request/web_request_api_utils.h", | 223 "api/web_request/web_request_api_utils.h", |
224 "api/web_request/web_request_permissions.cc", | 224 "api/web_request/web_request_permissions.cc", |
225 "api/web_request/web_request_permissions.h", | 225 "api/web_request/web_request_permissions.h", |
| 226 "api/web_request/web_request_event_router_delegate.cc", |
| 227 "api/web_request/web_request_event_router_delegate.h", |
226 "api/web_view/web_view_internal_api.cc", | 228 "api/web_view/web_view_internal_api.cc", |
227 "api/web_view/web_view_internal_api.h", | 229 "api/web_view/web_view_internal_api.h", |
228 "api_activity_monitor.h", | 230 "api_activity_monitor.h", |
229 "app_sorting.h", | 231 "app_sorting.h", |
230 "app_window/app_delegate.h", | 232 "app_window/app_delegate.h", |
231 "app_window/app_web_contents_helper.cc", | 233 "app_window/app_web_contents_helper.cc", |
232 "app_window/app_web_contents_helper.h", | 234 "app_window/app_web_contents_helper.h", |
233 "app_window/app_window.cc", | 235 "app_window/app_window.cc", |
234 "app_window/app_window.h", | 236 "app_window/app_window.h", |
235 "app_window/app_window_client.cc", | 237 "app_window/app_window_client.cc", |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 ] | 451 ] |
450 } | 452 } |
451 } | 453 } |
452 | 454 |
453 if (is_win) { | 455 if (is_win) { |
454 cflags = [ | 456 cflags = [ |
455 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 457 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
456 ] | 458 ] |
457 } | 459 } |
458 } | 460 } |
OLD | NEW |