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

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

Issue 2301213003: Add tests for trace wrappers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix StringView problem Created 4 years, 3 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 "//third_party/WebKit/Source:config", 317 "//third_party/WebKit/Source:config",
318 ] 318 ]
319 319
320 deps = [ 320 deps = [
321 ":core", 321 ":core",
322 ":generated_testing_idls", 322 ":generated_testing_idls",
323 ] 323 ]
324 324
325 sources = generated_core_testing_dictionary_files + webcore_testing_files 325 sources = generated_core_testing_dictionary_files + webcore_testing_files
326 sources += [ 326 sources += [
327 "$bindings_core_v8_output_dir/V8DeathAwareScriptWrappable.cpp",
328 "$bindings_core_v8_output_dir/V8DeathAwareScriptWrappable.h",
327 "$bindings_core_v8_output_dir/V8DictionaryTest.cpp", 329 "$bindings_core_v8_output_dir/V8DictionaryTest.cpp",
328 "$bindings_core_v8_output_dir/V8DictionaryTest.h", 330 "$bindings_core_v8_output_dir/V8DictionaryTest.h",
329 "$bindings_core_v8_output_dir/V8GCObservation.cpp", 331 "$bindings_core_v8_output_dir/V8GCObservation.cpp",
330 "$bindings_core_v8_output_dir/V8GCObservation.h", 332 "$bindings_core_v8_output_dir/V8GCObservation.h",
331 "$bindings_core_v8_output_dir/V8GarbageCollectedScriptWrappable.cpp", 333 "$bindings_core_v8_output_dir/V8GarbageCollectedScriptWrappable.cpp",
332 "$bindings_core_v8_output_dir/V8GarbageCollectedScriptWrappable.h", 334 "$bindings_core_v8_output_dir/V8GarbageCollectedScriptWrappable.h",
333 "$bindings_core_v8_output_dir/V8InternalDictionary.cpp", 335 "$bindings_core_v8_output_dir/V8InternalDictionary.cpp",
334 "$bindings_core_v8_output_dir/V8InternalDictionary.h", 336 "$bindings_core_v8_output_dir/V8InternalDictionary.h",
335 "$bindings_core_v8_output_dir/V8InternalDictionaryDerived.cpp", 337 "$bindings_core_v8_output_dir/V8InternalDictionaryDerived.cpp",
336 "$bindings_core_v8_output_dir/V8InternalDictionaryDerived.h", 338 "$bindings_core_v8_output_dir/V8InternalDictionaryDerived.h",
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
1119 # Fuzzer for blink::TextResourceDecoder. 1121 # Fuzzer for blink::TextResourceDecoder.
1120 fuzzer_test("text_resource_decoder_fuzzer") { 1122 fuzzer_test("text_resource_decoder_fuzzer") {
1121 sources = [ 1123 sources = [
1122 "html/parser/TextResourceDecoderFuzzer.cpp", 1124 "html/parser/TextResourceDecoderFuzzer.cpp",
1123 ] 1125 ]
1124 deps = [ 1126 deps = [
1125 ":core", 1127 ":core",
1126 "../platform:test_support", 1128 "../platform:test_support",
1127 ] 1129 ]
1128 } 1130 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698