| 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 "mac/io_surface.cc", | 490 "mac/io_surface.cc", |
| 491 "mac/io_surface.h", | 491 "mac/io_surface.h", |
| 492 "native_pixmap_handle.cc", | 492 "native_pixmap_handle.cc", |
| 493 "native_pixmap_handle.h", | 493 "native_pixmap_handle.h", |
| 494 ] | 494 ] |
| 495 | 495 |
| 496 if (!is_ios) { | 496 if (!is_ios) { |
| 497 sources += [ | 497 sources += [ |
| 498 "gpu_memory_buffer.cc", | 498 "gpu_memory_buffer.cc", |
| 499 "gpu_memory_buffer.h", | 499 "gpu_memory_buffer.h", |
| 500 "gpu_memory_buffer_tracing.cc", |
| 501 "gpu_memory_buffer_tracing.h", |
| 500 ] | 502 ] |
| 501 } | 503 } |
| 502 | 504 |
| 503 defines = [ "GFX_IMPLEMENTATION" ] | 505 defines = [ "GFX_IMPLEMENTATION" ] |
| 504 | 506 |
| 505 deps = [ | 507 deps = [ |
| 506 "//base", | 508 "//base", |
| 507 "//ui/gfx/geometry", | 509 "//ui/gfx/geometry", |
| 508 ] | 510 ] |
| 509 } | 511 } |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 714 | 716 |
| 715 fuzzer_test("color_transform_fuzztest") { | 717 fuzzer_test("color_transform_fuzztest") { |
| 716 sources = [ | 718 sources = [ |
| 717 "color_transform_fuzzer.cc", | 719 "color_transform_fuzzer.cc", |
| 718 ] | 720 ] |
| 719 deps = [ | 721 deps = [ |
| 720 ":gfx", | 722 ":gfx", |
| 721 ] | 723 ] |
| 722 libfuzzer_options = [ "max_len=1024" ] | 724 libfuzzer_options = [ "max_len=1024" ] |
| 723 } | 725 } |
| OLD | NEW |