Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Side by Side Diff: ui/gfx/BUILD.gn

Issue 2732493002: Vector icons: fix R_MOVE_TO after CLOSE (Closed)
Patch Set: move include Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ui/gfx/paint_vector_icon.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 "sequential_id_generator_unittest.cc", 668 "sequential_id_generator_unittest.cc",
669 "shadow_value_unittest.cc", 669 "shadow_value_unittest.cc",
670 "skbitmap_operations_unittest.cc", 670 "skbitmap_operations_unittest.cc",
671 "skrect_conversion_unittest.cc", 671 "skrect_conversion_unittest.cc",
672 "transform_util_unittest.cc", 672 "transform_util_unittest.cc",
673 "utf16_indexing_unittest.cc", 673 "utf16_indexing_unittest.cc",
674 ] 674 ]
675 } 675 }
676 676
677 if (!is_android && !is_ios) { 677 if (!is_android && !is_ios) {
678 sources += [ "render_text_unittest.cc" ] 678 sources += [
679 "paint_vector_icon_unittest.cc",
680 "render_text_unittest.cc",
681 ]
679 } 682 }
680 683
681 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 684 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
682 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 685 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
683 686
684 deps = [ 687 deps = [
685 ":gfx", 688 ":gfx",
686 ":test_support", 689 ":test_support",
687 "//base", 690 "//base",
688 "//base/test:test_support", 691 "//base/test:test_support",
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
768 771
769 fuzzer_test("color_transform_fuzztest") { 772 fuzzer_test("color_transform_fuzztest") {
770 sources = [ 773 sources = [
771 "color_transform_fuzzer.cc", 774 "color_transform_fuzzer.cc",
772 ] 775 ]
773 deps = [ 776 deps = [
774 ":gfx", 777 ":gfx",
775 ] 778 ]
776 libfuzzer_options = [ "max_len=1024" ] 779 libfuzzer_options = [ "max_len=1024" ]
777 } 780 }
OLDNEW
« no previous file with comments | « no previous file | ui/gfx/paint_vector_icon.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698