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

Side by Side Diff: ui/ui.gyp

Issue 10543057: Initial RenderTextMac implementation using CoreText. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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 (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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 'gfx/platform_font_win.cc', 386 'gfx/platform_font_win.cc',
387 'gfx/point.cc', 387 'gfx/point.cc',
388 'gfx/point.h', 388 'gfx/point.h',
389 'gfx/point_base.h', 389 'gfx/point_base.h',
390 'gfx/rect.cc', 390 'gfx/rect.cc',
391 'gfx/rect.h', 391 'gfx/rect.h',
392 'gfx/rect_base.h', 392 'gfx/rect_base.h',
393 'gfx/rect_base_impl.h', 393 'gfx/rect_base_impl.h',
394 'gfx/render_text.cc', 394 'gfx/render_text.cc',
395 'gfx/render_text.h', 395 'gfx/render_text.h',
396 'gfx/render_text_mac.cc',
397 'gfx/render_text_mac.h',
396 'gfx/render_text_linux.cc', 398 'gfx/render_text_linux.cc',
397 'gfx/render_text_linux.h', 399 'gfx/render_text_linux.h',
398 'gfx/render_text_win.cc', 400 'gfx/render_text_win.cc',
399 'gfx/render_text_win.h', 401 'gfx/render_text_win.h',
400 'gfx/screen.h', 402 'gfx/screen.h',
401 'gfx/screen_android.cc', 403 'gfx/screen_android.cc',
402 'gfx/screen_aura.cc', 404 'gfx/screen_aura.cc',
403 'gfx/screen_gtk.cc', 405 'gfx/screen_gtk.cc',
404 'gfx/screen_impl.h', 406 'gfx/screen_impl.h',
405 'gfx/screen_mac.mm', 407 'gfx/screen_mac.mm',
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 'sources/': [ 674 'sources/': [
673 ['exclude', 'base/keycodes/keyboard_code_conversion_x.*'], 675 ['exclude', 'base/keycodes/keyboard_code_conversion_x.*'],
674 ['exclude', 'base/x/*'], 676 ['exclude', 'base/x/*'],
675 ], 677 ],
676 }], 678 }],
677 ['toolkit_views==0', { 679 ['toolkit_views==0', {
678 'sources!': [ 680 'sources!': [
679 'base/x/events_x.cc', 681 'base/x/events_x.cc',
680 ], 682 ],
681 }], 683 }],
682 ['toolkit_views==0 and use_canvas_skia==0', {
683 'sources!': [
684 'gfx/render_text.cc',
685 'gfx/render_text.h',
686 'gfx/render_text_linux.cc',
687 'gfx/render_text_linux.h',
688 'gfx/render_text_win.cc',
689 'gfx/render_text_win.h',
690 ],
691 }],
692 ['OS=="android"', { 684 ['OS=="android"', {
693 'sources!': [ 685 'sources!': [
694 'base/touch/touch_factory.cc', 686 'base/touch/touch_factory.cc',
695 'base/touch/touch_factory.h', 687 'base/touch/touch_factory.h',
696 'gfx/pango_util.h', 688 'gfx/pango_util.h',
697 'gfx/pango_util.cc', 689 'gfx/pango_util.cc',
698 'gfx/platform_font_pango.cc', 690 'gfx/platform_font_pango.cc',
699 'gfx/platform_font_pango.h', 691 'gfx/platform_font_pango.h',
692 'gfx/render_text.cc',
693 'gfx/render_text.h',
700 ], 694 ],
701 }], 695 }],
702 ['OS=="linux"', { 696 ['OS=="linux"', {
703 'libraries': [ 697 'libraries': [
704 '-ldl', 698 '-ldl',
705 ], 699 ],
706 }], 700 }],
707 ['os_bsd==1 and use_system_libjpeg==1', { 701 ['os_bsd==1 and use_system_libjpeg==1', {
708 'include_dirs': [ 702 'include_dirs': [
709 '/usr/local/include', 703 '/usr/local/include',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
747 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 741 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
748 'os.chmod(\'<(ui_copy_dest)\', 0700)' 742 'os.chmod(\'<(ui_copy_dest)\', 0700)'
749 ] 743 ]
750 } 744 }
751 ], 745 ],
752 }, 746 },
753 ], 747 ],
754 }], 748 }],
755 ], 749 ],
756 } 750 }
OLDNEW
« no previous file with comments | « ui/gfx/render_text_unittest.cc ('k') | ui/ui_unittests.gypi » ('j') | ui/ui_unittests.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698