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