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

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

Issue 2705213005: Add NativePixmapDmabufStub to finalize glCreateImageCHROMIUM on Linux. (Closed)
Patch Set: Rebase and addressed remarks Created 3 years, 8 months 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("//device/vr/features.gni") 6 import("//device/vr/features.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//testing/libfuzzer/fuzzer_test.gni") 8 import("//testing/libfuzzer/fuzzer_test.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 "//base", 528 "//base",
529 "//ui/gfx/geometry", 529 "//ui/gfx/geometry",
530 ] 530 ]
531 531
532 if (is_linux) { 532 if (is_linux) {
533 sources += [ 533 sources += [
534 "linux/client_native_pixmap_dmabuf.cc", 534 "linux/client_native_pixmap_dmabuf.cc",
535 "linux/client_native_pixmap_dmabuf.h", 535 "linux/client_native_pixmap_dmabuf.h",
536 "linux/client_native_pixmap_factory_dmabuf.cc", 536 "linux/client_native_pixmap_factory_dmabuf.cc",
537 "linux/client_native_pixmap_factory_dmabuf.h", 537 "linux/client_native_pixmap_factory_dmabuf.h",
538 "linux/native_pixmap_dmabuf_stub.cc",
539 "linux/native_pixmap_dmabuf_stub.h",
538 ] 540 ]
539 541
540 deps += [ "//third_party/libdrm" ] 542 deps += [ "//third_party/libdrm" ]
541 } 543 }
542 } 544 }
543 545
544 static_library("test_support") { 546 static_library("test_support") {
545 testonly = true 547 testonly = true
546 sources = [ 548 sources = [
547 "animation/test_animation_delegate.h", 549 "animation/test_animation_delegate.h",
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
763 765
764 fuzzer_test("color_transform_fuzztest") { 766 fuzzer_test("color_transform_fuzztest") {
765 sources = [ 767 sources = [
766 "color_transform_fuzzer.cc", 768 "color_transform_fuzzer.cc",
767 ] 769 ]
768 deps = [ 770 deps = [
769 ":gfx", 771 ":gfx",
770 ] 772 ]
771 libfuzzer_options = [ "max_len=1024" ] 773 libfuzzer_options = [ "max_len=1024" ]
772 } 774 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698