| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//testing/libfuzzer/fuzzer_test.gni") | 7 import("//testing/libfuzzer/fuzzer_test.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 # Cannot be a static_library in component builds due to exported functions | 491 # Cannot be a static_library in component builds due to exported functions |
| 492 source_set("memory_buffer_sources") { | 492 source_set("memory_buffer_sources") { |
| 493 visibility = [ ":*" ] # Depend on through ":memory_buffer". | 493 visibility = [ ":*" ] # Depend on through ":memory_buffer". |
| 494 | 494 |
| 495 # TODO(brettw) refactor this so these sources are in a coherent directory | 495 # TODO(brettw) refactor this so these sources are in a coherent directory |
| 496 # structure rather than random samplings of ui/gfx and ui/gfx/mac. | 496 # structure rather than random samplings of ui/gfx and ui/gfx/mac. |
| 497 sources = [ | 497 sources = [ |
| 498 "buffer_format_util.cc", | 498 "buffer_format_util.cc", |
| 499 "buffer_format_util.h", | 499 "buffer_format_util.h", |
| 500 "buffer_types.h", | 500 "buffer_types.h", |
| 501 "client_native_pixmap.h", |
| 502 "client_native_pixmap_factory.cc", |
| 503 "client_native_pixmap_factory.h", |
| 501 "generic_shared_memory_id.cc", | 504 "generic_shared_memory_id.cc", |
| 502 "generic_shared_memory_id.h", | 505 "generic_shared_memory_id.h", |
| 503 "gfx_export.h", | 506 "gfx_export.h", |
| 504 "mac/io_surface.cc", | 507 "mac/io_surface.cc", |
| 505 "mac/io_surface.h", | 508 "mac/io_surface.h", |
| 506 "native_pixmap.h", | 509 "native_pixmap.h", |
| 507 "native_pixmap_handle.cc", | 510 "native_pixmap_handle.cc", |
| 508 "native_pixmap_handle.h", | 511 "native_pixmap_handle.h", |
| 509 ] | 512 ] |
| 510 | 513 |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 745 | 748 |
| 746 fuzzer_test("color_transform_fuzztest") { | 749 fuzzer_test("color_transform_fuzztest") { |
| 747 sources = [ | 750 sources = [ |
| 748 "color_transform_fuzzer.cc", | 751 "color_transform_fuzzer.cc", |
| 749 ] | 752 ] |
| 750 deps = [ | 753 deps = [ |
| 751 ":gfx", | 754 ":gfx", |
| 752 ] | 755 ] |
| 753 libfuzzer_options = [ "max_len=1024" ] | 756 libfuzzer_options = [ "max_len=1024" ] |
| 754 } | 757 } |
| OLD | NEW |