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

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, 6 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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 'gfx/platform_font_win.cc', 371 'gfx/platform_font_win.cc',
372 'gfx/point.cc', 372 'gfx/point.cc',
373 'gfx/point.h', 373 'gfx/point.h',
374 'gfx/point_base.h', 374 'gfx/point_base.h',
375 'gfx/rect.cc', 375 'gfx/rect.cc',
376 'gfx/rect.h', 376 'gfx/rect.h',
377 'gfx/rect_base.h', 377 'gfx/rect_base.h',
378 'gfx/rect_base_impl.h', 378 'gfx/rect_base_impl.h',
379 'gfx/render_text.cc', 379 'gfx/render_text.cc',
380 'gfx/render_text.h', 380 'gfx/render_text.h',
381 'gfx/render_text_mac.cc',
382 'gfx/render_text_mac.h',
381 'gfx/render_text_linux.cc', 383 'gfx/render_text_linux.cc',
382 'gfx/render_text_linux.h', 384 'gfx/render_text_linux.h',
383 'gfx/render_text_win.cc', 385 'gfx/render_text_win.cc',
384 'gfx/render_text_win.h', 386 'gfx/render_text_win.h',
385 'gfx/screen.h', 387 'gfx/screen.h',
386 'gfx/screen_android.cc', 388 'gfx/screen_android.cc',
387 'gfx/screen_aura.cc', 389 'gfx/screen_aura.cc',
388 'gfx/screen_gtk.cc', 390 'gfx/screen_gtk.cc',
389 'gfx/screen_impl.h', 391 'gfx/screen_impl.h',
390 'gfx/screen_mac.mm', 392 'gfx/screen_mac.mm',
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
658 'sources/': [ 660 'sources/': [
659 ['exclude', 'base/keycodes/keyboard_code_conversion_x.*'], 661 ['exclude', 'base/keycodes/keyboard_code_conversion_x.*'],
660 ['exclude', 'base/x/*'], 662 ['exclude', 'base/x/*'],
661 ], 663 ],
662 }], 664 }],
663 ['toolkit_views==0', { 665 ['toolkit_views==0', {
664 'sources!': [ 666 'sources!': [
665 'base/x/events_x.cc', 667 'base/x/events_x.cc',
666 ], 668 ],
667 }], 669 }],
668 ['toolkit_views==0 and use_canvas_skia==0', { 670 ['toolkit_views==0 and use_canvas_skia==0 and OS!="mac"', {
msw 2012/06/18 21:18:59 What build configuration are we trying to exclude
Alexei Svitkine (slow) 2012/06/22 15:55:47 Done.
669 'sources!': [ 671 'sources!': [
670 'gfx/render_text.cc', 672 'gfx/render_text.cc',
671 'gfx/render_text.h', 673 'gfx/render_text.h',
672 'gfx/render_text_linux.cc', 674 'gfx/render_text_linux.cc',
673 'gfx/render_text_linux.h', 675 'gfx/render_text_linux.h',
674 'gfx/render_text_win.cc', 676 'gfx/render_text_win.cc',
675 'gfx/render_text_win.h', 677 'gfx/render_text_win.h',
676 ], 678 ],
677 }], 679 }],
678 ['OS=="android"', { 680 ['OS=="android"', {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
733 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 735 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
734 'os.chmod(\'<(ui_copy_dest)\', 0700)' 736 'os.chmod(\'<(ui_copy_dest)\', 0700)'
735 ] 737 ]
736 } 738 }
737 ], 739 ],
738 }, 740 },
739 ], 741 ],
740 }], 742 }],
741 ], 743 ],
742 } 744 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698