Chromium Code Reviews| 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/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/split_static_library.gni") | 7 import("//build/split_static_library.gni") |
| 8 import("//testing/libfuzzer/fuzzer_test.gni") | 8 import("//testing/libfuzzer/fuzzer_test.gni") |
| 9 import("//third_party/WebKit/Source/bindings/bindings.gni") | 9 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 202 configs += [ | 202 configs += [ |
| 203 "//third_party/WebKit/Source:inside_blink", | 203 "//third_party/WebKit/Source:inside_blink", |
| 204 "//third_party/WebKit/Source:config", | 204 "//third_party/WebKit/Source:config", |
| 205 ] | 205 ] |
| 206 | 206 |
| 207 deps = [ | 207 deps = [ |
| 208 ":core", | 208 ":core", |
| 209 ":generated_testing_idls", | 209 ":generated_testing_idls", |
| 210 "//third_party/WebKit/Source/bindings/core/v8:testing", | 210 "//third_party/WebKit/Source/bindings/core/v8:testing", |
| 211 ] | 211 ] |
| 212 | 212 #maybe not correct |
|
haraken
2016/09/20 07:08:22
Remove this.
lkawai
2016/09/20 08:15:06
Done.
| |
| 213 sources = [ | 213 sources = [ |
| 214 "$blink_core_output_dir/testing/InternalSettingsGenerated.cpp", | 214 "$blink_core_output_dir/testing/InternalSettingsGenerated.cpp", |
| 215 "$blink_core_output_dir/testing/InternalSettingsGenerated.h", | 215 "$blink_core_output_dir/testing/InternalSettingsGenerated.h", |
| 216 "testing/CallbackFunctionTest.cpp", | |
| 217 "testing/CallbackFunctionTest.h", | |
| 216 "testing/DictionaryTest.cpp", | 218 "testing/DictionaryTest.cpp", |
| 217 "testing/DictionaryTest.h", | 219 "testing/DictionaryTest.h", |
| 218 "testing/DummyPageHolder.cpp", | 220 "testing/DummyPageHolder.cpp", |
| 219 "testing/DummyPageHolder.h", | 221 "testing/DummyPageHolder.h", |
| 220 "testing/GCObservation.cpp", | 222 "testing/GCObservation.cpp", |
| 221 "testing/GCObservation.h", | 223 "testing/GCObservation.h", |
| 222 "testing/GarbageCollectedScriptWrappable.cpp", | 224 "testing/GarbageCollectedScriptWrappable.cpp", |
| 223 "testing/GarbageCollectedScriptWrappable.h", | 225 "testing/GarbageCollectedScriptWrappable.h", |
| 224 "testing/InternalSettings.cpp", | 226 "testing/InternalSettings.cpp", |
| 225 "testing/InternalSettings.h", | 227 "testing/InternalSettings.h", |
| (...skipping 1014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1240 sources = [ | 1242 sources = [ |
| 1241 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1243 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1242 "html/parser/TextResourceDecoderForFuzzing.h", | 1244 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1243 ] | 1245 ] |
| 1244 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1246 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1245 deps = [ | 1247 deps = [ |
| 1246 ":core", | 1248 ":core", |
| 1247 "../platform:blink_fuzzer_test_support", | 1249 "../platform:blink_fuzzer_test_support", |
| 1248 ] | 1250 ] |
| 1249 } | 1251 } |
| OLD | NEW |