Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Side by Side Diff: ui/gfx/BUILD.gn

Issue 2383753002: gpu: Add GpuFence framework.
Patch Set: rebase Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
490 "generic_shared_memory_id.h", 490 "generic_shared_memory_id.h",
491 "gfx_export.h", 491 "gfx_export.h",
492 "mac/io_surface.cc", 492 "mac/io_surface.cc",
493 "mac/io_surface.h", 493 "mac/io_surface.h",
494 "native_pixmap_handle.cc", 494 "native_pixmap_handle.cc",
495 "native_pixmap_handle.h", 495 "native_pixmap_handle.h",
496 ] 496 ]
497 497
498 if (!is_ios) { 498 if (!is_ios) {
499 sources += [ 499 sources += [
500 "gpu_fence.h",
500 "gpu_memory_buffer.cc", 501 "gpu_memory_buffer.cc",
501 "gpu_memory_buffer.h", 502 "gpu_memory_buffer.h",
502 "gpu_memory_buffer_tracing.cc", 503 "gpu_memory_buffer_tracing.cc",
503 "gpu_memory_buffer_tracing.h", 504 "gpu_memory_buffer_tracing.h",
505 "shared_event.cc",
506 "shared_event.h",
504 ] 507 ]
505 } 508 }
506 509
507 defines = [ "GFX_IMPLEMENTATION" ] 510 defines = [ "GFX_IMPLEMENTATION" ]
508 511
509 deps = [ 512 deps = [
510 "//base", 513 "//base",
511 "//ui/gfx/geometry", 514 "//ui/gfx/geometry",
512 ] 515 ]
513 } 516 }
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 "mojo/struct_traits_unittest.cc", 614 "mojo/struct_traits_unittest.cc",
612 "nine_image_painter_unittest.cc", 615 "nine_image_painter_unittest.cc",
613 "path_mac_unittest.mm", 616 "path_mac_unittest.mm",
614 "platform_font_mac_unittest.mm", 617 "platform_font_mac_unittest.mm",
615 "range/range_mac_unittest.mm", 618 "range/range_mac_unittest.mm",
616 "range/range_unittest.cc", 619 "range/range_unittest.cc",
617 "range/range_win_unittest.cc", 620 "range/range_win_unittest.cc",
618 "selection_bound_unittest.cc", 621 "selection_bound_unittest.cc",
619 "sequential_id_generator_unittest.cc", 622 "sequential_id_generator_unittest.cc",
620 "shadow_value_unittest.cc", 623 "shadow_value_unittest.cc",
624 "shared_event_unittest.cc",
621 "skbitmap_operations_unittest.cc", 625 "skbitmap_operations_unittest.cc",
622 "skrect_conversion_unittest.cc", 626 "skrect_conversion_unittest.cc",
623 "transform_util_unittest.cc", 627 "transform_util_unittest.cc",
624 "utf16_indexing_unittest.cc", 628 "utf16_indexing_unittest.cc",
625 ] 629 ]
626 } 630 }
627 631
628 if (!is_android && !is_ios) { 632 if (!is_android && !is_ios) {
629 sources += [ "render_text_unittest.cc" ] 633 sources += [ "render_text_unittest.cc" ]
630 } 634 }
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
718 722
719 fuzzer_test("color_transform_fuzztest") { 723 fuzzer_test("color_transform_fuzztest") {
720 sources = [ 724 sources = [
721 "color_transform_fuzzer.cc", 725 "color_transform_fuzzer.cc",
722 ] 726 ]
723 deps = [ 727 deps = [
724 ":gfx", 728 ":gfx",
725 ] 729 ]
726 libfuzzer_options = [ "max_len=1024" ] 730 libfuzzer_options = [ "max_len=1024" ]
727 } 731 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698