mirror of https://github.com/google/oss-fuzz.git
[Skia] Fix build after large refactoring (#1821)
This commit is contained in:
parent
014d5b9ac6
commit
0742d90cab
|
@ -17,6 +17,8 @@
|
|||
# Append this to build.gn in the skia repo and then build the targets
|
||||
test_app("region_deserialize") {
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/oss_fuzz/FuzzRegionDeserialize.cpp",
|
||||
]
|
||||
deps = [
|
||||
|
@ -27,6 +29,8 @@ test_app("region_deserialize") {
|
|||
|
||||
test_app("image_filter_deserialize") {
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/oss_fuzz/FuzzImageFilterDeserialize.cpp",
|
||||
]
|
||||
deps = [
|
||||
|
@ -37,6 +41,7 @@ test_app("image_filter_deserialize") {
|
|||
|
||||
test_app("region_set_path") {
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/oss_fuzz/FuzzRegionSetPath.cpp",
|
||||
]
|
||||
|
@ -48,6 +53,8 @@ test_app("region_set_path") {
|
|||
|
||||
test_app("textblob_deserialize") {
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/oss_fuzz/FuzzTextBlobDeserialize.cpp",
|
||||
]
|
||||
deps = [
|
||||
|
@ -58,6 +65,8 @@ test_app("textblob_deserialize") {
|
|||
|
||||
test_app("path_deserialize") {
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/oss_fuzz/FuzzPathDeserialize.cpp",
|
||||
]
|
||||
deps = [
|
||||
|
@ -68,6 +77,8 @@ test_app("path_deserialize") {
|
|||
|
||||
test_app("image_decode") {
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/oss_fuzz/FuzzImage.cpp",
|
||||
]
|
||||
deps = [
|
||||
|
@ -78,6 +89,8 @@ test_app("image_decode") {
|
|||
|
||||
test_app("animated_image_decode") {
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/oss_fuzz/FuzzAnimatedImage.cpp",
|
||||
]
|
||||
deps = [
|
||||
|
@ -88,6 +101,8 @@ test_app("animated_image_decode") {
|
|||
|
||||
test_app("api_draw_functions") {
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/FuzzDrawFunctions.cpp",
|
||||
"fuzz/oss_fuzz/FuzzDrawFunctions.cpp",
|
||||
]
|
||||
|
@ -99,6 +114,8 @@ test_app("api_draw_functions") {
|
|||
|
||||
test_app("api_gradients") {
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/FuzzGradients.cpp",
|
||||
"fuzz/oss_fuzz/FuzzGradients.cpp",
|
||||
]
|
||||
|
@ -114,6 +131,7 @@ test_app("api_image_filter") {
|
|||
"tools/debugger",
|
||||
]
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCanvas.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/oss_fuzz/FuzzAPIImageFilter.cpp",
|
||||
|
@ -133,6 +151,7 @@ test_app("api_image_filter") {
|
|||
|
||||
test_app("api_path_measure") {
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/FuzzPathMeasure.cpp",
|
||||
"fuzz/oss_fuzz/FuzzPathMeasure.cpp",
|
||||
|
@ -145,6 +164,7 @@ test_app("api_path_measure") {
|
|||
|
||||
test_app("api_pathop") {
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/FuzzPathop.cpp",
|
||||
"fuzz/oss_fuzz/FuzzPathop.cpp",
|
||||
|
@ -161,6 +181,7 @@ test_app("api_raster_n32_canvas") {
|
|||
"tools/debugger",
|
||||
]
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCanvas.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/oss_fuzz/FuzzRasterN32Canvas.cpp",
|
||||
|
@ -184,6 +205,7 @@ test_app("api_mock_gpu_canvas") {
|
|||
"tools/debugger",
|
||||
]
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCanvas.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/oss_fuzz/FuzzMockGPUCanvas.cpp",
|
||||
|
@ -208,6 +230,7 @@ test_app("api_null_canvas") {
|
|||
"tools/debugger",
|
||||
]
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCanvas.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/oss_fuzz/FuzzNullCanvas.cpp",
|
||||
|
@ -227,6 +250,7 @@ test_app("api_null_canvas") {
|
|||
|
||||
test_app("png_encoder") {
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/FuzzEncoders.cpp",
|
||||
"fuzz/oss_fuzz/FuzzPNGEncoder.cpp",
|
||||
|
@ -239,6 +263,7 @@ test_app("png_encoder") {
|
|||
|
||||
test_app("jpeg_encoder") {
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/FuzzEncoders.cpp",
|
||||
"fuzz/oss_fuzz/FuzzJPEGEncoder.cpp",
|
||||
|
@ -251,6 +276,7 @@ test_app("jpeg_encoder") {
|
|||
|
||||
test_app("webp_encoder") {
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/FuzzEncoders.cpp",
|
||||
"fuzz/oss_fuzz/FuzzWEBPEncoder.cpp",
|
||||
|
@ -271,6 +297,8 @@ test_app("skottie_json") {
|
|||
|
||||
test_app("skjson") {
|
||||
sources = [
|
||||
"fuzz/Fuzz.cpp",
|
||||
"fuzz/FuzzCommon.cpp",
|
||||
"fuzz/oss_fuzz/FuzzJSON.cpp",
|
||||
]
|
||||
deps = [
|
||||
|
|
Loading…
Reference in New Issue