| 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 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 "icc_profile.h", | 406 "icc_profile.h", |
| 407 "skia_color_space_util.cc", | 407 "skia_color_space_util.cc", |
| 408 "skia_color_space_util.h", | 408 "skia_color_space_util.h", |
| 409 ] | 409 ] |
| 410 public_deps = [ | 410 public_deps = [ |
| 411 ":gfx_export", | 411 ":gfx_export", |
| 412 "//base", | 412 "//base", |
| 413 "//skia", | 413 "//skia", |
| 414 ] | 414 ] |
| 415 deps = [ | 415 deps = [ |
| 416 ":switches_sources", |
| 416 "//base", | 417 "//base", |
| 417 "//skia", | 418 "//skia", |
| 418 ] | 419 ] |
| 419 defines = [ "GFX_IMPLEMENTATION" ] | 420 defines = [ "GFX_IMPLEMENTATION" ] |
| 420 } | 421 } |
| 421 | 422 |
| 422 # Depend on this to use half_float.h without pulling in all of gfx. | 423 # Depend on this to use half_float.h without pulling in all of gfx. |
| 423 source_set("half_float") { | 424 source_set("half_float") { |
| 424 sources = [ | 425 sources = [ |
| 425 "half_float.h", | 426 "half_float.h", |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 785 | 786 |
| 786 fuzzer_test("color_transform_fuzztest") { | 787 fuzzer_test("color_transform_fuzztest") { |
| 787 sources = [ | 788 sources = [ |
| 788 "color_transform_fuzzer.cc", | 789 "color_transform_fuzzer.cc", |
| 789 ] | 790 ] |
| 790 deps = [ | 791 deps = [ |
| 791 ":gfx", | 792 ":gfx", |
| 792 ] | 793 ] |
| 793 libfuzzer_options = [ "max_len=1024" ] | 794 libfuzzer_options = [ "max_len=1024" ] |
| 794 } | 795 } |
| OLD | NEW |