| 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 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 521 # Cannot be a static_library in component builds due to exported functions | 521 # Cannot be a static_library in component builds due to exported functions |
| 522 source_set("memory_buffer_sources") { | 522 source_set("memory_buffer_sources") { |
| 523 visibility = [ ":*" ] # Depend on through ":memory_buffer". | 523 visibility = [ ":*" ] # Depend on through ":memory_buffer". |
| 524 | 524 |
| 525 # TODO(brettw) refactor this so these sources are in a coherent directory | 525 # TODO(brettw) refactor this so these sources are in a coherent directory |
| 526 # structure rather than random samplings of ui/gfx and ui/gfx/mac. | 526 # structure rather than random samplings of ui/gfx and ui/gfx/mac. |
| 527 sources = [ | 527 sources = [ |
| 528 "buffer_format_util.cc", | 528 "buffer_format_util.cc", |
| 529 "buffer_format_util.h", | 529 "buffer_format_util.h", |
| 530 "buffer_types.h", | 530 "buffer_types.h", |
| 531 "client_native_pixmap.h", |
| 532 "client_native_pixmap_factory.cc", |
| 533 "client_native_pixmap_factory.h", |
| 531 "generic_shared_memory_id.cc", | 534 "generic_shared_memory_id.cc", |
| 532 "generic_shared_memory_id.h", | 535 "generic_shared_memory_id.h", |
| 533 "gfx_export.h", | 536 "gfx_export.h", |
| 534 "mac/io_surface.cc", | 537 "mac/io_surface.cc", |
| 535 "mac/io_surface.h", | 538 "mac/io_surface.h", |
| 536 "native_pixmap.h", | 539 "native_pixmap.h", |
| 537 "native_pixmap_handle.cc", | 540 "native_pixmap_handle.cc", |
| 538 "native_pixmap_handle.h", | 541 "native_pixmap_handle.h", |
| 539 ] | 542 ] |
| 540 | 543 |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 | 772 |
| 770 fuzzer_test("color_transform_fuzztest") { | 773 fuzzer_test("color_transform_fuzztest") { |
| 771 sources = [ | 774 sources = [ |
| 772 "color_transform_fuzzer.cc", | 775 "color_transform_fuzzer.cc", |
| 773 ] | 776 ] |
| 774 deps = [ | 777 deps = [ |
| 775 ":gfx", | 778 ":gfx", |
| 776 ] | 779 ] |
| 777 libfuzzer_options = [ "max_len=1024" ] | 780 libfuzzer_options = [ "max_len=1024" ] |
| 778 } | 781 } |
| OLD | NEW |