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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 "api/web_request/form_data_parser.cc", | 224 "api/web_request/form_data_parser.cc", |
225 "api/web_request/form_data_parser.h", | 225 "api/web_request/form_data_parser.h", |
226 "api/web_request/upload_data_presenter.cc", | 226 "api/web_request/upload_data_presenter.cc", |
227 "api/web_request/upload_data_presenter.h", | 227 "api/web_request/upload_data_presenter.h", |
228 "api/web_request/web_request_api.cc", | 228 "api/web_request/web_request_api.cc", |
229 "api/web_request/web_request_api.h", | 229 "api/web_request/web_request_api.h", |
230 "api/web_request/web_request_api_constants.cc", | 230 "api/web_request/web_request_api_constants.cc", |
231 "api/web_request/web_request_api_constants.h", | 231 "api/web_request/web_request_api_constants.h", |
232 "api/web_request/web_request_api_helpers.cc", | 232 "api/web_request/web_request_api_helpers.cc", |
233 "api/web_request/web_request_api_helpers.h", | 233 "api/web_request/web_request_api_helpers.h", |
234 "api/web_request/web_request_api_utils.cc", | |
235 "api/web_request/web_request_api_utils.h", | |
236 "api/web_request/web_request_permissions.cc", | 234 "api/web_request/web_request_permissions.cc", |
237 "api/web_request/web_request_permissions.h", | 235 "api/web_request/web_request_permissions.h", |
238 "api/web_request/web_request_event_router_delegate.cc", | 236 "api/web_request/web_request_event_router_delegate.cc", |
239 "api/web_request/web_request_event_router_delegate.h", | 237 "api/web_request/web_request_event_router_delegate.h", |
240 "api/web_request/web_request_time_tracker.cc", | 238 "api/web_request/web_request_time_tracker.cc", |
241 "api/web_request/web_request_time_tracker.h", | 239 "api/web_request/web_request_time_tracker.h", |
242 "api/web_view/web_view_internal_api.cc", | 240 "api/web_view/web_view_internal_api.cc", |
243 "api/web_view/web_view_internal_api.h", | 241 "api/web_view/web_view_internal_api.h", |
244 "api_activity_monitor.h", | 242 "api_activity_monitor.h", |
245 "app_sorting.h", | 243 "app_sorting.h", |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
465 ] | 463 ] |
466 } | 464 } |
467 } | 465 } |
468 | 466 |
469 if (is_win) { | 467 if (is_win) { |
470 cflags = [ | 468 cflags = [ |
471 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 469 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
472 ] | 470 ] |
473 } | 471 } |
474 } | 472 } |
OLD | NEW |