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

Side by Side Diff: ui/gfx/gfx.gyp

Issue 659883002: Enable hidpi on Linux, refactor a bit on Windows to share Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: resource bundle loading Created 6 years, 2 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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 'color_profile_mac.mm', 153 'color_profile_mac.mm',
154 'color_profile_win.cc', 154 'color_profile_win.cc',
155 'color_utils.cc', 155 'color_utils.cc',
156 'color_utils.h', 156 'color_utils.h',
157 'display.cc', 157 'display.cc',
158 'display.h', 158 'display.h',
159 'display_change_notifier.cc', 159 'display_change_notifier.cc',
160 'display_change_notifier.h', 160 'display_change_notifier.h',
161 'display_observer.cc', 161 'display_observer.cc',
162 'display_observer.h', 162 'display_observer.h',
163 'dpi.cc',
164 'dpi.h',
163 'favicon_size.cc', 165 'favicon_size.cc',
164 'favicon_size.h', 166 'favicon_size.h',
165 'font.cc', 167 'font.cc',
166 'font.h', 168 'font.h',
167 'font_fallback.h', 169 'font_fallback.h',
168 'font_fallback_linux.cc', 170 'font_fallback_linux.cc',
169 'font_fallback_mac.cc', 171 'font_fallback_mac.cc',
170 'font_fallback_win.cc', 172 'font_fallback_win.cc',
171 'font_fallback_win.h', 173 'font_fallback_win.h',
172 'font_list.cc', 174 'font_list.cc',
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 'transform.cc', 298 'transform.cc',
297 'transform.h', 299 'transform.h',
298 'transform_util.cc', 300 'transform_util.cc',
299 'transform_util.h', 301 'transform_util.h',
300 'ui_gfx_exports.cc', 302 'ui_gfx_exports.cc',
301 'utf16_indexing.cc', 303 'utf16_indexing.cc',
302 'utf16_indexing.h', 304 'utf16_indexing.h',
303 'vsync_provider.h', 305 'vsync_provider.h',
304 'win/direct_write.cc', 306 'win/direct_write.cc',
305 'win/direct_write.h', 307 'win/direct_write.h',
306 'win/dpi.cc',
307 'win/dpi.h',
308 'win/hwnd_util.cc', 308 'win/hwnd_util.cc',
309 'win/hwnd_util.h', 309 'win/hwnd_util.h',
310 'win/scoped_set_map_mode.h', 310 'win/scoped_set_map_mode.h',
311 'win/singleton_hwnd.cc', 311 'win/singleton_hwnd.cc',
312 'win/singleton_hwnd.h', 312 'win/singleton_hwnd.h',
313 'win/window_impl.cc', 313 'win/window_impl.cc',
314 'win/window_impl.h', 314 'win/window_impl.h',
315 ], 315 ],
316 'includes': [ 316 'includes': [
317 '../../build/android/increase_size_for_speed.gypi', 317 '../../build/android/increase_size_for_speed.gypi',
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 'platform_font_ozone.cc', 413 'platform_font_ozone.cc',
414 'render_text_ozone.cc', 414 'render_text_ozone.cc',
415 ], 415 ],
416 }], 416 }],
417 ['desktop_linux==1 or chromeos==1', { 417 ['desktop_linux==1 or chromeos==1', {
418 'dependencies': [ 418 'dependencies': [
419 # font_render_params_linux.cc uses fontconfig 419 # font_render_params_linux.cc uses fontconfig
420 '<(DEPTH)/build/linux/system.gyp:fontconfig', 420 '<(DEPTH)/build/linux/system.gyp:fontconfig',
421 ], 421 ],
422 }], 422 }],
423 ['desktop_linux!=1 and OS!="win"', {
424 'sources!': [
425 'dpi.cc',
426 ],
427 }],
423 ], 428 ],
424 'target_conditions': [ 429 'target_conditions': [
425 # Need 'target_conditions' to override default filename_rules to include 430 # Need 'target_conditions' to override default filename_rules to include
426 # the file on iOS. 431 # the file on iOS.
427 ['OS == "ios"', { 432 ['OS == "ios"', {
428 'sources/': [ 433 'sources/': [
429 ['include', '^scoped_cg_context_save_gstate_mac\\.h$'], 434 ['include', '^scoped_cg_context_save_gstate_mac\\.h$'],
430 ], 435 ],
431 }], 436 }],
432 ], 437 ],
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 ], 491 ],
487 'variables': { 492 'variables': {
488 'jni_gen_package': 'ui/gfx', 493 'jni_gen_package': 'ui/gfx',
489 }, 494 },
490 'includes': [ '../../build/jni_generator.gypi' ], 495 'includes': [ '../../build/jni_generator.gypi' ],
491 }, 496 },
492 ], 497 ],
493 }], 498 }],
494 ], 499 ],
495 } 500 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698