OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("web_request") { |
| 6 sources = [ |
| 7 "form_data_parser.cc", |
| 8 "form_data_parser.h", |
| 9 "upload_data_presenter.cc", |
| 10 "upload_data_presenter.h", |
| 11 "web_request_api.cc", |
| 12 "web_request_api.h", |
| 13 "web_request_api_constants.cc", |
| 14 "web_request_api_constants.h", |
| 15 "web_request_api_helpers.cc", |
| 16 "web_request_api_helpers.h", |
| 17 "web_request_event_details.cc", |
| 18 "web_request_event_details.h", |
| 19 "web_request_event_router_delegate.h", |
| 20 "web_request_permissions.cc", |
| 21 "web_request_permissions.h", |
| 22 "web_request_time_tracker.cc", |
| 23 "web_request_time_tracker.h", |
| 24 ] |
| 25 |
| 26 configs += [ |
| 27 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 28 "//build/config/compiler:no_size_t_to_int_warning", |
| 29 ] |
| 30 |
| 31 deps = [ |
| 32 "//content/public/browser", |
| 33 "//content/public/common", |
| 34 "//extensions/common/api", |
| 35 "//third_party/re2", |
| 36 ] |
| 37 } |
OLD | NEW |