| 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 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "generic_shared_memory_id.cc", | 531 "generic_shared_memory_id.cc", |
| 532 "generic_shared_memory_id.h", | 532 "generic_shared_memory_id.h", |
| 533 "gfx_export.h", | 533 "gfx_export.h", |
| 534 "mac/io_surface.cc", | 534 "mac/io_surface.cc", |
| 535 "mac/io_surface.h", | 535 "mac/io_surface.h", |
| 536 "native_pixmap.h", |
| 536 "native_pixmap_handle.cc", | 537 "native_pixmap_handle.cc", |
| 537 "native_pixmap_handle.h", | 538 "native_pixmap_handle.h", |
| 538 ] | 539 ] |
| 539 | 540 |
| 540 if (!is_ios) { | 541 if (!is_ios) { |
| 541 sources += [ | 542 sources += [ |
| 542 "gpu_memory_buffer.cc", | 543 "gpu_memory_buffer.cc", |
| 543 "gpu_memory_buffer.h", | 544 "gpu_memory_buffer.h", |
| 544 "gpu_memory_buffer_tracing.cc", | 545 "gpu_memory_buffer_tracing.cc", |
| 545 "gpu_memory_buffer_tracing.h", | 546 "gpu_memory_buffer_tracing.h", |
| 546 ] | 547 ] |
| 547 } | 548 } |
| 548 | 549 |
| 549 defines = [ "GFX_IMPLEMENTATION" ] | 550 defines = [ "GFX_IMPLEMENTATION" ] |
| 550 | 551 |
| 551 deps = [ | 552 deps = [ |
| 553 ":native_widget_types", |
| 552 "//base", | 554 "//base", |
| 553 "//ui/gfx/geometry", | 555 "//ui/gfx/geometry", |
| 554 ] | 556 ] |
| 555 } | 557 } |
| 556 | 558 |
| 557 static_library("test_support") { | 559 static_library("test_support") { |
| 558 testonly = true | 560 testonly = true |
| 559 sources = [ | 561 sources = [ |
| 560 "geometry/test/rect_test_util.cc", | 562 "geometry/test/rect_test_util.cc", |
| 561 "geometry/test/rect_test_util.h", | 563 "geometry/test/rect_test_util.h", |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 | 770 |
| 769 fuzzer_test("color_transform_fuzztest") { | 771 fuzzer_test("color_transform_fuzztest") { |
| 770 sources = [ | 772 sources = [ |
| 771 "color_transform_fuzzer.cc", | 773 "color_transform_fuzzer.cc", |
| 772 ] | 774 ] |
| 773 deps = [ | 775 deps = [ |
| 774 ":gfx", | 776 ":gfx", |
| 775 ] | 777 ] |
| 776 libfuzzer_options = [ "max_len=1024" ] | 778 libfuzzer_options = [ "max_len=1024" ] |
| 777 } | 779 } |
| OLD | NEW |