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

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

Issue 2054273002: Font fallback for UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix clang build error due to signed-unsigned comparison Created 4 years, 5 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 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/config.gni") 9 import("//build/config/android/config.gni")
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 "win/hwnd_util.h", 192 "win/hwnd_util.h",
193 "win/physical_size.cc", 193 "win/physical_size.cc",
194 "win/physical_size.h", 194 "win/physical_size.h",
195 "win/rendering_window_manager.cc", 195 "win/rendering_window_manager.cc",
196 "win/rendering_window_manager.h", 196 "win/rendering_window_manager.h",
197 "win/scoped_set_map_mode.h", 197 "win/scoped_set_map_mode.h",
198 "win/singleton_hwnd.cc", 198 "win/singleton_hwnd.cc",
199 "win/singleton_hwnd.h", 199 "win/singleton_hwnd.h",
200 "win/singleton_hwnd_observer.cc", 200 "win/singleton_hwnd_observer.cc",
201 "win/singleton_hwnd_observer.h", 201 "win/singleton_hwnd_observer.h",
202 "win/text_analysis_source.cc",
203 "win/text_analysis_source.h",
202 "win/window_impl.cc", 204 "win/window_impl.cc",
203 "win/window_impl.h", 205 "win/window_impl.h",
204 ] 206 ]
205 if (!is_ios) { 207 if (!is_ios) {
206 sources += [ 208 sources += [
207 "blit.cc", 209 "blit.cc",
208 "blit.h", 210 "blit.h",
209 "canvas.cc", 211 "canvas.cc",
210 "canvas.h", 212 "canvas.h",
211 "canvas_notimplemented.cc", 213 "canvas_notimplemented.cc",
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 } 856 }
855 857
856 if (is_win) { 858 if (is_win) {
857 sources += [ 859 sources += [
858 "color_profile_win_unittest.cc", 860 "color_profile_win_unittest.cc",
859 "font_fallback_win_unittest.cc", 861 "font_fallback_win_unittest.cc",
860 "icon_util_unittest.cc", 862 "icon_util_unittest.cc",
861 "icon_util_unittests.rc", 863 "icon_util_unittests.rc",
862 "path_win_unittest.cc", 864 "path_win_unittest.cc",
863 "platform_font_win_unittest.cc", 865 "platform_font_win_unittest.cc",
866 "win/text_analysis_source_unittest.cc",
864 ] 867 ]
865 868
866 ldflags = [ 869 ldflags = [
867 "/DELAYLOAD:d2d1.dll", 870 "/DELAYLOAD:d2d1.dll",
868 "/DELAYLOAD:d3d10_1.dll", 871 "/DELAYLOAD:d3d10_1.dll",
869 ] 872 ]
870 873
871 libs = [ 874 libs = [
872 "d2d1.lib", 875 "d2d1.lib",
873 "d3d10_1.lib", 876 "d3d10_1.lib",
(...skipping 15 matching lines...) Expand all
889 if (is_android) { 892 if (is_android) {
890 generate_jni("gfx_jni_headers") { 893 generate_jni("gfx_jni_headers") {
891 sources = [ 894 sources = [
892 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", 895 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java",
893 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", 896 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java",
894 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", 897 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java",
895 ] 898 ]
896 jni_package = "gfx" 899 jni_package = "gfx"
897 } 900 }
898 } 901 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698