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

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

Issue 385463002: Support FontRenderParams on Win; fix RenderTextHarfBuzz. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix header guards. Created 6 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 | Annotate | Revision Log
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 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 "font.cc", 86 "font.cc",
87 "font.h", 87 "font.h",
88 "font_fallback_win.cc", 88 "font_fallback_win.cc",
89 "font_fallback_win.h", 89 "font_fallback_win.h",
90 "font_list.cc", 90 "font_list.cc",
91 "font_list.h", 91 "font_list.h",
92 "font_list_impl.cc", 92 "font_list_impl.cc",
93 "font_list_impl.h", 93 "font_list_impl.h",
94 "font_render_params_android.cc", 94 "font_render_params_android.cc",
95 "font_render_params_linux.cc", 95 "font_render_params_linux.cc",
96 "font_render_params_linux.h", 96 "font_render_params_win.cc",
97 "font_smoothing_win.cc", 97 "font_render_params.h",
98 "font_smoothing_win.h",
99 "frame_time.h", 98 "frame_time.h",
100 "gdi_util.cc", 99 "gdi_util.cc",
101 "gdi_util.h", 100 "gdi_util.h",
102 "gfx_paths.cc", 101 "gfx_paths.cc",
103 "gfx_paths.h", 102 "gfx_paths.h",
104 "gpu_memory_buffer.cc", 103 "gpu_memory_buffer.cc",
105 "gpu_memory_buffer.h", 104 "gpu_memory_buffer.h",
106 "icon_util.cc", 105 "icon_util.cc",
107 "icon_util.h", 106 "icon_util.h",
108 "image/canvas_image_source.cc", 107 "image/canvas_image_source.cc",
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 if (is_android) { 412 if (is_android) {
414 generate_jni("gfx_jni_headers") { 413 generate_jni("gfx_jni_headers") {
415 sources = [ 414 sources = [
416 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", 415 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java",
417 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", 416 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java",
418 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", 417 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java",
419 ] 418 ]
420 jni_package = "gfx" 419 jni_package = "gfx"
421 } 420 }
422 } 421 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698