| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 "color_palette.h", | 60 "color_palette.h", |
| 61 "color_space.cc", | 61 "color_space.cc", |
| 62 "color_space_win.cc", | 62 "color_space_win.cc", |
| 63 "color_space_win.h", | 63 "color_space_win.h", |
| 64 "color_transform.cc", | 64 "color_transform.cc", |
| 65 "color_transform.h", | 65 "color_transform.h", |
| 66 "color_utils.cc", | 66 "color_utils.cc", |
| 67 "color_utils.h", | 67 "color_utils.h", |
| 68 "decorated_text.cc", | 68 "decorated_text.cc", |
| 69 "decorated_text.h", | 69 "decorated_text.h", |
| 70 "decorated_text_mac.h", | |
| 71 "decorated_text_mac.mm", | |
| 72 "favicon_size.cc", | 70 "favicon_size.cc", |
| 73 "favicon_size.h", | 71 "favicon_size.h", |
| 74 "font.cc", | 72 "font.cc", |
| 75 "font.h", | 73 "font.h", |
| 76 "font_fallback.h", | 74 "font_fallback.h", |
| 77 "font_fallback_linux.cc", | 75 "font_fallback_linux.cc", |
| 78 "font_fallback_linux.h", | 76 "font_fallback_linux.h", |
| 79 "font_fallback_mac.mm", | 77 "font_fallback_mac.mm", |
| 80 "font_fallback_win.cc", | 78 "font_fallback_win.cc", |
| 81 "font_fallback_win.h", | 79 "font_fallback_win.h", |
| (...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 765 | 763 |
| 766 fuzzer_test("color_transform_fuzztest") { | 764 fuzzer_test("color_transform_fuzztest") { |
| 767 sources = [ | 765 sources = [ |
| 768 "color_transform_fuzzer.cc", | 766 "color_transform_fuzzer.cc", |
| 769 ] | 767 ] |
| 770 deps = [ | 768 deps = [ |
| 771 ":gfx", | 769 ":gfx", |
| 772 ] | 770 ] |
| 773 libfuzzer_options = [ "max_len=1024" ] | 771 libfuzzer_options = [ "max_len=1024" ] |
| 774 } | 772 } |
| OLD | NEW |