| 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 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 ] | 520 ] |
| 521 } | 521 } |
| 522 | 522 |
| 523 defines = [ "GFX_IMPLEMENTATION" ] | 523 defines = [ "GFX_IMPLEMENTATION" ] |
| 524 | 524 |
| 525 deps = [ | 525 deps = [ |
| 526 ":native_widget_types", | 526 ":native_widget_types", |
| 527 "//base", | 527 "//base", |
| 528 "//ui/gfx/geometry", | 528 "//ui/gfx/geometry", |
| 529 ] | 529 ] |
| 530 |
| 531 if (is_linux) { |
| 532 sources += [ |
| 533 "linux/client_native_pixmap_dmabuf.cc", |
| 534 "linux/client_native_pixmap_dmabuf.h", |
| 535 "linux/client_native_pixmap_factory_dmabuf.cc", |
| 536 "linux/client_native_pixmap_factory_dmabuf.h", |
| 537 ] |
| 538 |
| 539 deps += [ "//third_party/libdrm" ] |
| 540 } |
| 530 } | 541 } |
| 531 | 542 |
| 532 static_library("test_support") { | 543 static_library("test_support") { |
| 533 testonly = true | 544 testonly = true |
| 534 sources = [ | 545 sources = [ |
| 535 "geometry/test/rect_test_util.cc", | 546 "geometry/test/rect_test_util.cc", |
| 536 "geometry/test/rect_test_util.h", | 547 "geometry/test/rect_test_util.h", |
| 537 "image/image_unittest_util.cc", | 548 "image/image_unittest_util.cc", |
| 538 "image/image_unittest_util.h", | 549 "image/image_unittest_util.h", |
| 539 "image/image_unittest_util_ios.mm", | 550 "image/image_unittest_util_ios.mm", |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 748 | 759 |
| 749 fuzzer_test("color_transform_fuzztest") { | 760 fuzzer_test("color_transform_fuzztest") { |
| 750 sources = [ | 761 sources = [ |
| 751 "color_transform_fuzzer.cc", | 762 "color_transform_fuzzer.cc", |
| 752 ] | 763 ] |
| 753 deps = [ | 764 deps = [ |
| 754 ":gfx", | 765 ":gfx", |
| 755 ] | 766 ] |
| 756 libfuzzer_options = [ "max_len=1024" ] | 767 libfuzzer_options = [ "max_len=1024" ] |
| 757 } | 768 } |
| OLD | NEW |