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

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

Issue 2164483006: [MacViews] Implemented text context menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed tapted's comments and fixed tests Created 3 years, 11 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
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 "color_palette.h", 64 "color_palette.h",
65 "color_space.cc", 65 "color_space.cc",
66 "color_space_win.cc", 66 "color_space_win.cc",
67 "color_space_win.h", 67 "color_space_win.h",
68 "color_transform.cc", 68 "color_transform.cc",
69 "color_transform.h", 69 "color_transform.h",
70 "color_utils.cc", 70 "color_utils.cc",
71 "color_utils.h", 71 "color_utils.h",
72 "decorated_text.cc", 72 "decorated_text.cc",
73 "decorated_text.h", 73 "decorated_text.h",
74 "decorated_text_mac.h",
75 "decorated_text_mac.mm",
74 "favicon_size.cc", 76 "favicon_size.cc",
75 "favicon_size.h", 77 "favicon_size.h",
76 "font.cc", 78 "font.cc",
77 "font.h", 79 "font.h",
78 "font_fallback.h", 80 "font_fallback.h",
79 "font_fallback_linux.cc", 81 "font_fallback_linux.cc",
80 "font_fallback_linux.h", 82 "font_fallback_linux.h",
81 "font_fallback_mac.mm", 83 "font_fallback_mac.mm",
82 "font_fallback_win.cc", 84 "font_fallback_win.cc",
83 "font_fallback_win.h", 85 "font_fallback_win.h",
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
748 750
749 fuzzer_test("color_transform_fuzztest") { 751 fuzzer_test("color_transform_fuzztest") {
750 sources = [ 752 sources = [
751 "color_transform_fuzzer.cc", 753 "color_transform_fuzzer.cc",
752 ] 754 ]
753 deps = [ 755 deps = [
754 ":gfx", 756 ":gfx",
755 ] 757 ]
756 libfuzzer_options = [ "max_len=1024" ] 758 libfuzzer_options = [ "max_len=1024" ]
757 } 759 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698