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

Side by Side Diff: ui/ui.gyp

Issue 9370026: Respect the system ClearType setting in RenderTextWin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 8 years, 10 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
« ui/gfx/render_text_win.cc ('K') | « ui/gfx/render_text_win.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'ui_resources.gypi', 10 'ui_resources.gypi',
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 'base/win/atl_module.h', 213 'base/win/atl_module.h',
214 'base/win/events_win.cc', 214 'base/win/events_win.cc',
215 'base/win/hwnd_util.cc', 215 'base/win/hwnd_util.cc',
216 'base/win/hwnd_util.h', 216 'base/win/hwnd_util.h',
217 'base/win/ime_input.cc', 217 'base/win/ime_input.cc',
218 'base/win/ime_input.h', 218 'base/win/ime_input.h',
219 'base/win/mouse_wheel_util.cc', 219 'base/win/mouse_wheel_util.cc',
220 'base/win/mouse_wheel_util.h', 220 'base/win/mouse_wheel_util.h',
221 'base/win/shell.cc', 221 'base/win/shell.cc',
222 'base/win/shell.h', 222 'base/win/shell.h',
223 'base/win/singleton_hwnd.cc',
224 'base/win/singleton_hwnd.h',
223 'base/win/window_impl.cc', 225 'base/win/window_impl.cc',
224 'base/win/window_impl.h', 226 'base/win/window_impl.h',
225 'base/x/active_window_watcher_x.cc', 227 'base/x/active_window_watcher_x.cc',
226 'base/x/active_window_watcher_x.h', 228 'base/x/active_window_watcher_x.h',
227 'base/x/active_window_watcher_x_observer.h', 229 'base/x/active_window_watcher_x_observer.h',
228 'base/x/events_x.cc', 230 'base/x/events_x.cc',
229 'base/x/root_window_property_watcher_x.cc', 231 'base/x/root_window_property_watcher_x.cc',
230 'base/x/root_window_property_watcher_x.h', 232 'base/x/root_window_property_watcher_x.h',
231 'base/x/work_area_watcher_x.cc', 233 'base/x/work_area_watcher_x.cc',
232 'base/x/work_area_watcher_x.h', 234 'base/x/work_area_watcher_x.h',
(...skipping 21 matching lines...) Expand all
254 'gfx/color_analysis.cc', 256 'gfx/color_analysis.cc',
255 'gfx/color_analysis.h', 257 'gfx/color_analysis.h',
256 'gfx/color_utils.cc', 258 'gfx/color_utils.cc',
257 'gfx/color_utils.h', 259 'gfx/color_utils.h',
258 'gfx/favicon_size.cc', 260 'gfx/favicon_size.cc',
259 'gfx/favicon_size.h', 261 'gfx/favicon_size.h',
260 'gfx/font.h', 262 'gfx/font.h',
261 'gfx/font.cc', 263 'gfx/font.cc',
262 'gfx/font_list.h', 264 'gfx/font_list.h',
263 'gfx/font_list.cc', 265 'gfx/font_list.cc',
266 'gfx/font_smoothing_win.cc',
267 'gfx/font_smoothing_win.h',
264 'gfx/gfx_paths.cc', 268 'gfx/gfx_paths.cc',
265 'gfx/gfx_paths.h', 269 'gfx/gfx_paths.h',
266 'gfx/image/image.cc', 270 'gfx/image/image.cc',
267 'gfx/image/image.h', 271 'gfx/image/image.h',
268 'gfx/image/image_mac.mm', 272 'gfx/image/image_mac.mm',
269 'gfx/image/image_util.cc', 273 'gfx/image/image_util.cc',
270 'gfx/image/image_util.h', 274 'gfx/image/image_util.h',
271 'gfx/insets.cc', 275 'gfx/insets.cc',
272 'gfx/insets.h', 276 'gfx/insets.h',
273 'gfx/interpolated_transform.h', 277 'gfx/interpolated_transform.h',
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 677 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
674 'os.chmod(\'<(ui_copy_dest)\', 0700)' 678 'os.chmod(\'<(ui_copy_dest)\', 0700)'
675 ] 679 ]
676 } 680 }
677 ], 681 ],
678 }, 682 },
679 ], 683 ],
680 }], 684 }],
681 ], 685 ],
682 } 686 }
OLDNEW
« ui/gfx/render_text_win.cc ('K') | « ui/gfx/render_text_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698