| 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("//device/vr/features/features.gni") | 6 import("//device/vr/features/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 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 "//base", | 534 "//base", |
| 535 "//ui/gfx/geometry", | 535 "//ui/gfx/geometry", |
| 536 ] | 536 ] |
| 537 | 537 |
| 538 if (is_linux) { | 538 if (is_linux) { |
| 539 sources += [ | 539 sources += [ |
| 540 "linux/client_native_pixmap_dmabuf.cc", | 540 "linux/client_native_pixmap_dmabuf.cc", |
| 541 "linux/client_native_pixmap_dmabuf.h", | 541 "linux/client_native_pixmap_dmabuf.h", |
| 542 "linux/client_native_pixmap_factory_dmabuf.cc", | 542 "linux/client_native_pixmap_factory_dmabuf.cc", |
| 543 "linux/client_native_pixmap_factory_dmabuf.h", | 543 "linux/client_native_pixmap_factory_dmabuf.h", |
| 544 "linux/native_pixmap_dmabuf.cc", |
| 545 "linux/native_pixmap_dmabuf.h", |
| 544 ] | 546 ] |
| 545 | 547 |
| 546 deps += [ "//third_party/libdrm" ] | 548 deps += [ "//third_party/libdrm" ] |
| 547 } | 549 } |
| 548 } | 550 } |
| 549 | 551 |
| 550 source_set("switches_sources") { | 552 source_set("switches_sources") { |
| 551 visibility = [ ":*" ] # Depend on through ":switches_sources". | 553 visibility = [ ":*" ] # Depend on through ":switches_sources". |
| 552 | 554 |
| 553 sources = [ | 555 sources = [ |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 787 | 789 |
| 788 fuzzer_test("color_transform_fuzztest") { | 790 fuzzer_test("color_transform_fuzztest") { |
| 789 sources = [ | 791 sources = [ |
| 790 "color_transform_fuzzer.cc", | 792 "color_transform_fuzzer.cc", |
| 791 ] | 793 ] |
| 792 deps = [ | 794 deps = [ |
| 793 ":gfx", | 795 ":gfx", |
| 794 ] | 796 ] |
| 795 libfuzzer_options = [ "max_len=1024" ] | 797 libfuzzer_options = [ "max_len=1024" ] |
| 796 } | 798 } |
| OLD | NEW |