Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Side by Side Diff: extensions/browser/api/web_request/BUILD.gn

Issue 2700553002: Introduce WebRequestResourceType. (Closed)
Patch Set: Make compiler happy; make type<->string mapping self-checking. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 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 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 source_set("web_request") { 5 source_set("web_request") {
6 sources = [ 6 sources = [
7 "form_data_parser.cc", 7 "form_data_parser.cc",
8 "form_data_parser.h", 8 "form_data_parser.h",
9 "upload_data_presenter.cc", 9 "upload_data_presenter.cc",
10 "upload_data_presenter.h", 10 "upload_data_presenter.h",
11 "web_request_api.cc", 11 "web_request_api.cc",
12 "web_request_api.h", 12 "web_request_api.h",
13 "web_request_api_constants.cc", 13 "web_request_api_constants.cc",
14 "web_request_api_constants.h", 14 "web_request_api_constants.h",
15 "web_request_api_helpers.cc", 15 "web_request_api_helpers.cc",
16 "web_request_api_helpers.h", 16 "web_request_api_helpers.h",
17 "web_request_event_details.cc", 17 "web_request_event_details.cc",
18 "web_request_event_details.h", 18 "web_request_event_details.h",
19 "web_request_event_router_delegate.h", 19 "web_request_event_router_delegate.h",
20 "web_request_permissions.cc", 20 "web_request_permissions.cc",
21 "web_request_permissions.h", 21 "web_request_permissions.h",
22 "web_request_resource_type.cc",
23 "web_request_resource_type.h",
22 "web_request_time_tracker.cc", 24 "web_request_time_tracker.cc",
23 "web_request_time_tracker.h", 25 "web_request_time_tracker.h",
24 ] 26 ]
25 27
26 configs += [ 28 configs += [
27 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 29 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
28 "//build/config/compiler:no_size_t_to_int_warning", 30 "//build/config/compiler:no_size_t_to_int_warning",
29 ] 31 ]
30 32
31 deps = [ 33 deps = [
32 "//components/web_cache/browser", 34 "//components/web_cache/browser",
33 "//content/public/browser", 35 "//content/public/browser",
34 "//content/public/common", 36 "//content/public/common",
35 "//extensions/common/api", 37 "//extensions/common/api",
36 "//extensions/strings", 38 "//extensions/strings",
37 "//third_party/re2", 39 "//third_party/re2",
38 ] 40 ]
39 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698