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/toolchain/toolchain.gni") | 6 import("//build/toolchain/toolchain.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//build/split_static_library.gni") | 8 import("//build/split_static_library.gni") |
9 import("//testing/libfuzzer/fuzzer_test.gni") | 9 import("//testing/libfuzzer/fuzzer_test.gni") |
10 import("//third_party/WebKit/Source/bindings/bindings.gni") | 10 import("//third_party/WebKit/Source/bindings/bindings.gni") |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 | 207 |
208 deps = [ | 208 deps = [ |
209 ":core", | 209 ":core", |
210 ":generated_testing_idls", | 210 ":generated_testing_idls", |
211 "//third_party/WebKit/Source/bindings/core/v8:testing", | 211 "//third_party/WebKit/Source/bindings/core/v8:testing", |
212 ] | 212 ] |
213 | 213 |
214 sources = [ | 214 sources = [ |
215 "$blink_core_output_dir/testing/InternalSettingsGenerated.cpp", | 215 "$blink_core_output_dir/testing/InternalSettingsGenerated.cpp", |
216 "$blink_core_output_dir/testing/InternalSettingsGenerated.h", | 216 "$blink_core_output_dir/testing/InternalSettingsGenerated.h", |
| 217 "testing/CacheAwareFontDisplayTest.cpp", |
| 218 "testing/CacheAwareFontDisplayTest.h", |
217 "testing/CallbackFunctionTest.cpp", | 219 "testing/CallbackFunctionTest.cpp", |
218 "testing/CallbackFunctionTest.h", | 220 "testing/CallbackFunctionTest.h", |
219 "testing/DeathAwareScriptWrappable.cpp", | 221 "testing/DeathAwareScriptWrappable.cpp", |
220 "testing/DeathAwareScriptWrappable.h", | 222 "testing/DeathAwareScriptWrappable.h", |
221 "testing/DictionaryTest.cpp", | 223 "testing/DictionaryTest.cpp", |
222 "testing/DictionaryTest.h", | 224 "testing/DictionaryTest.h", |
223 "testing/DummyPageHolder.cpp", | 225 "testing/DummyPageHolder.cpp", |
224 "testing/DummyPageHolder.h", | 226 "testing/DummyPageHolder.h", |
225 "testing/GCObservation.cpp", | 227 "testing/GCObservation.cpp", |
226 "testing/GCObservation.h", | 228 "testing/GCObservation.h", |
(...skipping 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1354 sources = [ | 1356 sources = [ |
1355 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1357 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
1356 ] | 1358 ] |
1357 deps = [ | 1359 deps = [ |
1358 ":core", | 1360 ":core", |
1359 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1361 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
1360 ] | 1362 ] |
1361 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1363 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
1362 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1364 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
1363 } | 1365 } |
OLD | NEW |