| 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 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 vector_icons_h_file, | 431 vector_icons_h_file, |
| 432 ] | 432 ] |
| 433 | 433 |
| 434 response_file_contents = rebase_path(inputs, root_build_dir) | 434 response_file_contents = rebase_path(inputs, root_build_dir) |
| 435 | 435 |
| 436 args = [ | 436 args = [ |
| 437 "--working_directory=" + rebase_path("vector_icons/"), | 437 "--working_directory=" + rebase_path("vector_icons/"), |
| 438 "--file_list={{response_file_name}}", | 438 "--file_list={{response_file_name}}", |
| 439 "--output_cc=" + rebase_path(vector_icons_cc_file, root_build_dir), | 439 "--output_cc=" + rebase_path(vector_icons_cc_file, root_build_dir), |
| 440 "--output_h=" + rebase_path(vector_icons_h_file, root_build_dir), | 440 "--output_h=" + rebase_path(vector_icons_h_file, root_build_dir), |
| 441 "--use_legacy_template", |
| 441 ] | 442 ] |
| 442 } | 443 } |
| 443 | 444 |
| 444 # Looking for gfx_geometry? It's //ui/gfx/geometry:geometry | 445 # Looking for gfx_geometry? It's //ui/gfx/geometry:geometry |
| 445 | 446 |
| 446 # Depend on this to use native_widget_types.h without pulling in all of gfx. | 447 # Depend on this to use native_widget_types.h without pulling in all of gfx. |
| 447 source_set("native_widget_types") { | 448 source_set("native_widget_types") { |
| 448 public = [ | 449 public = [ |
| 449 "native_widget_types.h", | 450 "native_widget_types.h", |
| 450 ] | 451 ] |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 | 747 |
| 747 fuzzer_test("color_transform_fuzztest") { | 748 fuzzer_test("color_transform_fuzztest") { |
| 748 sources = [ | 749 sources = [ |
| 749 "color_transform_fuzzer.cc", | 750 "color_transform_fuzzer.cc", |
| 750 ] | 751 ] |
| 751 deps = [ | 752 deps = [ |
| 752 ":gfx", | 753 ":gfx", |
| 753 ] | 754 ] |
| 754 libfuzzer_options = [ "max_len=1024" ] | 755 libfuzzer_options = [ "max_len=1024" ] |
| 755 } | 756 } |
| OLD | NEW |