| 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("//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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 "color_space.cc", | 63 "color_space.cc", |
| 64 "color_space.h", | 64 "color_space.h", |
| 65 "color_space_win.cc", | 65 "color_space_win.cc", |
| 66 "color_space_win.h", | 66 "color_space_win.h", |
| 67 "color_transform.cc", | 67 "color_transform.cc", |
| 68 "color_transform.h", | 68 "color_transform.h", |
| 69 "color_utils.cc", | 69 "color_utils.cc", |
| 70 "color_utils.h", | 70 "color_utils.h", |
| 71 "decorated_text.cc", | 71 "decorated_text.cc", |
| 72 "decorated_text.h", | 72 "decorated_text.h", |
| 73 "decorated_text_mac.h", |
| 74 "decorated_text_mac.mm", |
| 73 "favicon_size.cc", | 75 "favicon_size.cc", |
| 74 "favicon_size.h", | 76 "favicon_size.h", |
| 75 "font.cc", | 77 "font.cc", |
| 76 "font.h", | 78 "font.h", |
| 77 "font_fallback.h", | 79 "font_fallback.h", |
| 78 "font_fallback_linux.cc", | 80 "font_fallback_linux.cc", |
| 79 "font_fallback_linux.h", | 81 "font_fallback_linux.h", |
| 80 "font_fallback_mac.mm", | 82 "font_fallback_mac.mm", |
| 81 "font_fallback_win.cc", | 83 "font_fallback_win.cc", |
| 82 "font_fallback_win.h", | 84 "font_fallback_win.h", |
| (...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 | 726 |
| 725 fuzzer_test("color_transform_fuzztest") { | 727 fuzzer_test("color_transform_fuzztest") { |
| 726 sources = [ | 728 sources = [ |
| 727 "color_transform_fuzzer.cc", | 729 "color_transform_fuzzer.cc", |
| 728 ] | 730 ] |
| 729 deps = [ | 731 deps = [ |
| 730 ":gfx", | 732 ":gfx", |
| 731 ] | 733 ] |
| 732 libfuzzer_options = [ "max_len=1024" ] | 734 libfuzzer_options = [ "max_len=1024" ] |
| 733 } | 735 } |
| OLD | NEW |