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

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

Issue 2688623004: Move native_pixmap.h from ui/ozone/public to ui/gfx (Closed)
Patch Set: Rebase Created 3 years, 9 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
« no previous file with comments | « media/gpu/video_decode_accelerator_unittest.cc ('k') | ui/gfx/native_pixmap.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « media/gpu/video_decode_accelerator_unittest.cc ('k') | ui/gfx/native_pixmap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698