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

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

Issue 2724673002: [WIP] Introduce ScriptResourceData
Patch Set: Compile fix Created 3 years, 4 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 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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/toolchain/toolchain.gni") 7 import("//build/toolchain/toolchain.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//testing/libfuzzer/fuzzer_test.gni") 10 import("//testing/libfuzzer/fuzzer_test.gni")
(...skipping 1304 matching lines...) Expand 10 before | Expand all | Expand 10 after
1315 "css/resolver/MatchResultTest.cpp", 1315 "css/resolver/MatchResultTest.cpp",
1316 "css/resolver/ScopedStyleResolverTest.cpp", 1316 "css/resolver/ScopedStyleResolverTest.cpp",
1317 "css/resolver/StyleAdjusterTest.cpp", 1317 "css/resolver/StyleAdjusterTest.cpp",
1318 "css/threaded/CSSParserThreadedTest.cpp", 1318 "css/threaded/CSSParserThreadedTest.cpp",
1319 "css/threaded/CSSToLengthConversionDataThreadedTest.cpp", 1319 "css/threaded/CSSToLengthConversionDataThreadedTest.cpp",
1320 "css/threaded/FilterOperationResolverThreadedTest.cpp", 1320 "css/threaded/FilterOperationResolverThreadedTest.cpp",
1321 "css/threaded/FontObjectThreadedTest.cpp", 1321 "css/threaded/FontObjectThreadedTest.cpp",
1322 "css/threaded/TextRendererThreadedTest.cpp", 1322 "css/threaded/TextRendererThreadedTest.cpp",
1323 "dom/AttrTest.cpp", 1323 "dom/AttrTest.cpp",
1324 "dom/CSSSelectorWatchTest.cpp", 1324 "dom/CSSSelectorWatchTest.cpp",
1325 "dom/ClassicPendingScriptTest.cpp",
1325 "dom/DOMImplementationTest.cpp", 1326 "dom/DOMImplementationTest.cpp",
1326 "dom/DocumentStatisticsCollectorTest.cpp", 1327 "dom/DocumentStatisticsCollectorTest.cpp",
1327 "dom/DocumentTest.cpp", 1328 "dom/DocumentTest.cpp",
1328 "dom/ElementTest.cpp", 1329 "dom/ElementTest.cpp",
1329 "dom/ElementVisibilityObserverTest.cpp", 1330 "dom/ElementVisibilityObserverTest.cpp",
1330 "dom/FlatTreeTraversalTest.cpp", 1331 "dom/FlatTreeTraversalTest.cpp",
1331 "dom/IdleDeadlineTest.cpp", 1332 "dom/IdleDeadlineTest.cpp",
1332 "dom/LayoutTreeBuilderTraversalTest.cpp", 1333 "dom/LayoutTreeBuilderTraversalTest.cpp",
1333 "dom/MockScriptElementBase.h", 1334 "dom/MockScriptElementBase.h",
1334 "dom/ModulatorTest.cpp", 1335 "dom/ModulatorTest.cpp",
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
1704 sources = [ 1705 sources = [
1705 "frame/csp/ContentSecurityPolicyFuzzer.cpp", 1706 "frame/csp/ContentSecurityPolicyFuzzer.cpp",
1706 ] 1707 ]
1707 deps = [ 1708 deps = [
1708 ":core", 1709 ":core",
1709 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", 1710 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support",
1710 ] 1711 ]
1711 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" 1712 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict"
1712 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" 1713 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus"
1713 } 1714 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698