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

Side by Side Diff: ui/ui.gyp

Issue 22835002: Supports gfx::FontList in gfx::Canvas and ui::ElideText family. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adds canvas_ios.mm and removes canvas_android.cc. Created 7 years, 4 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 'shell_dialogs.gypi', 10 'shell_dialogs.gypi',
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 'gfx/android/device_display_info.h', 410 'gfx/android/device_display_info.h',
411 'gfx/android/java_bitmap.cc', 411 'gfx/android/java_bitmap.cc',
412 'gfx/android/java_bitmap.h', 412 'gfx/android/java_bitmap.h',
413 'gfx/blit.cc', 413 'gfx/blit.cc',
414 'gfx/blit.h', 414 'gfx/blit.h',
415 'gfx/box_f.cc', 415 'gfx/box_f.cc',
416 'gfx/box_f.h', 416 'gfx/box_f.h',
417 'gfx/break_list.h', 417 'gfx/break_list.h',
418 'gfx/canvas.cc', 418 'gfx/canvas.cc',
419 'gfx/canvas.h', 419 'gfx/canvas.h',
420 'gfx/canvas_android.cc', 420 'gfx/canvas_ios.mm',
421 'gfx/canvas_mac.mm', 421 'gfx/canvas_mac.mm',
422 'gfx/canvas_paint_gtk.cc',
422 'gfx/canvas_paint_gtk.h', 423 'gfx/canvas_paint_gtk.h',
423 'gfx/canvas_paint_mac.h', 424 'gfx/canvas_paint_mac.h',
424 'gfx/canvas_paint_win.h',
425 'gfx/canvas_paint_gtk.cc',
426 'gfx/canvas_paint_mac.mm', 425 'gfx/canvas_paint_mac.mm',
427 'gfx/canvas_paint_win.cc', 426 'gfx/canvas_paint_win.cc',
427 'gfx/canvas_paint_win.h',
428 'gfx/canvas_skia.cc', 428 'gfx/canvas_skia.cc',
429 'gfx/canvas_skia_paint.h', 429 'gfx/canvas_skia_paint.h',
430 'gfx/codec/jpeg_codec.cc', 430 'gfx/codec/jpeg_codec.cc',
431 'gfx/codec/jpeg_codec.h', 431 'gfx/codec/jpeg_codec.h',
432 'gfx/codec/png_codec.cc', 432 'gfx/codec/png_codec.cc',
433 'gfx/codec/png_codec.h', 433 'gfx/codec/png_codec.h',
434 'gfx/color_analysis.cc', 434 'gfx/color_analysis.cc',
435 'gfx/color_analysis.h', 435 'gfx/color_analysis.h',
436 'gfx/color_profile.cc', 436 'gfx/color_profile.cc',
437 'gfx/color_profile.h', 437 'gfx/color_profile.h',
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 'link_settings': { 634 'link_settings': {
635 'libraries': [ 635 'libraries': [
636 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', 636 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework',
637 ], 637 ],
638 }, 638 },
639 }], 639 }],
640 # TODO(asvitkine): Switch all platforms to use canvas_skia.cc. 640 # TODO(asvitkine): Switch all platforms to use canvas_skia.cc.
641 # http://crbug.com/105550 641 # http://crbug.com/105550
642 ['use_canvas_skia==1', { 642 ['use_canvas_skia==1', {
643 'sources!': [ 643 'sources!': [
644 'gfx/canvas_android.cc',
645 'gfx/canvas_mac.mm', 644 'gfx/canvas_mac.mm',
646 ], 645 ],
647 }, { # use_canvas_skia!=1 646 }, { # use_canvas_skia!=1
648 'sources!': [ 647 'sources!': [
649 'gfx/canvas_skia.cc', 648 'gfx/canvas_skia.cc',
650 ], 649 ],
651 }], 650 }],
652 ['use_aura==1', { 651 ['use_aura==1', {
653 'sources/': [ 652 'sources/': [
654 ['exclude', 'gfx/gtk_'], 653 ['exclude', 'gfx/gtk_'],
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
1053 'xcode_settings': { 1052 'xcode_settings': {
1054 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', 1053 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
1055 }, 1054 },
1056 }], 1055 }],
1057 ], 1056 ],
1058 }, 1057 },
1059 ], 1058 ],
1060 }], 1059 }],
1061 ], 1060 ],
1062 } 1061 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698