| 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/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 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1152 source_set("unit_tests") { | 1152 source_set("unit_tests") { |
| 1153 testonly = true | 1153 testonly = true |
| 1154 sources = [ | 1154 sources = [ |
| 1155 "animation/AnimationClockTest.cpp", | 1155 "animation/AnimationClockTest.cpp", |
| 1156 "animation/AnimationEffectReadOnlyTest.cpp", | 1156 "animation/AnimationEffectReadOnlyTest.cpp", |
| 1157 "animation/AnimationInputHelpersTest.cpp", | 1157 "animation/AnimationInputHelpersTest.cpp", |
| 1158 "animation/AnimationSimTest.cpp", | 1158 "animation/AnimationSimTest.cpp", |
| 1159 "animation/AnimationTest.cpp", | 1159 "animation/AnimationTest.cpp", |
| 1160 "animation/AnimationTestHelper.cpp", | 1160 "animation/AnimationTestHelper.cpp", |
| 1161 "animation/AnimationTestHelper.h", | 1161 "animation/AnimationTestHelper.h", |
| 1162 "animation/AnimationTimelineTest.cpp", | |
| 1163 "animation/CompositorAnimationsTest.cpp", | 1162 "animation/CompositorAnimationsTest.cpp", |
| 1164 "animation/DocumentTimelineTest.cpp", | 1163 "animation/DocumentTimelineTest.cpp", |
| 1165 "animation/EffectInputTest.cpp", | 1164 "animation/EffectInputTest.cpp", |
| 1166 "animation/EffectStackTest.cpp", | 1165 "animation/EffectStackTest.cpp", |
| 1167 "animation/InterpolableValueTest.cpp", | 1166 "animation/InterpolableValueTest.cpp", |
| 1168 "animation/InterpolationEffectTest.cpp", | 1167 "animation/InterpolationEffectTest.cpp", |
| 1169 "animation/KeyframeEffectModelTest.cpp", | 1168 "animation/KeyframeEffectModelTest.cpp", |
| 1170 "animation/KeyframeEffectTest.cpp", | 1169 "animation/KeyframeEffectTest.cpp", |
| 1171 "animation/PropertyHandleTest.cpp", | 1170 "animation/PropertyHandleTest.cpp", |
| 1172 "animation/TimingCalculationsTest.cpp", | 1171 "animation/TimingCalculationsTest.cpp", |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1575 sources = [ | 1574 sources = [ |
| 1576 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1575 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1577 ] | 1576 ] |
| 1578 deps = [ | 1577 deps = [ |
| 1579 ":core", | 1578 ":core", |
| 1580 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1579 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1581 ] | 1580 ] |
| 1582 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1581 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1583 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1582 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1584 } | 1583 } |
| OLD | NEW |