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

Side by Side Diff: third_party/WebKit/Source/core/fetch/BUILD.gn

Issue 2490163002: Reland of "Tracking reference filter mutation via SVGElementProxy" (Closed)
Patch Set: Fix double observer unregistration; simplify scope selection; add tests Created 4 years, 1 month 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 import("//third_party/WebKit/Source/core/core.gni") 5 import("//third_party/WebKit/Source/core/core.gni")
6 6
7 blink_core_sources("fetch") { 7 blink_core_sources("fetch") {
8 sources = [ 8 sources = [
9 "AccessControlStatus.h", 9 "AccessControlStatus.h",
10 "CSSStyleSheetResource.cpp", 10 "CSSStyleSheetResource.cpp",
11 "CSSStyleSheetResource.h", 11 "CSSStyleSheetResource.h",
12 "CachedMetadata.cpp", 12 "CachedMetadata.cpp",
13 "CachedMetadata.h", 13 "CachedMetadata.h",
14 "CachedMetadataHandler.h", 14 "CachedMetadataHandler.h",
15 "ClientHintsPreferences.cpp", 15 "ClientHintsPreferences.cpp",
16 "ClientHintsPreferences.h", 16 "ClientHintsPreferences.h",
17 "CrossOriginAccessControl.cpp", 17 "CrossOriginAccessControl.cpp",
18 "CrossOriginAccessControl.h", 18 "CrossOriginAccessControl.h",
19 "DocumentResource.cpp", 19 "DocumentResource.cpp",
20 "DocumentResource.h", 20 "DocumentResource.h",
21 "DocumentResourceReference.h",
22 "FetchContext.cpp", 21 "FetchContext.cpp",
23 "FetchContext.h", 22 "FetchContext.h",
24 "FetchInitiatorInfo.h", 23 "FetchInitiatorInfo.h",
25 "FetchRequest.cpp", 24 "FetchRequest.cpp",
26 "FetchRequest.h", 25 "FetchRequest.h",
27 "FetchUtils.cpp", 26 "FetchUtils.cpp",
28 "FetchUtils.h", 27 "FetchUtils.h",
29 "FontResource.cpp", 28 "FontResource.cpp",
30 "FontResource.h", 29 "FontResource.h",
31 "ImageResource.cpp", 30 "ImageResource.cpp",
(...skipping 26 matching lines...) Expand all
58 "UniqueIdentifier.h", 57 "UniqueIdentifier.h",
59 "XSLStyleSheetResource.cpp", 58 "XSLStyleSheetResource.cpp",
60 "XSLStyleSheetResource.h", 59 "XSLStyleSheetResource.h",
61 ] 60 ]
62 61
63 configs += [ 62 configs += [
64 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 63 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
65 "//build/config/compiler:no_size_t_to_int_warning", 64 "//build/config/compiler:no_size_t_to_int_warning",
66 ] 65 ]
67 } 66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698