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

Side by Side Diff: ui/ui.gyp

Issue 23456020: Turn on canvas_skia for OSX (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 7 years, 3 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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 'gfx/android/java_bitmap.cc', 412 'gfx/android/java_bitmap.cc',
413 'gfx/android/java_bitmap.h', 413 'gfx/android/java_bitmap.h',
414 'gfx/blit.cc', 414 'gfx/blit.cc',
415 'gfx/blit.h', 415 'gfx/blit.h',
416 'gfx/box_f.cc', 416 'gfx/box_f.cc',
417 'gfx/box_f.h', 417 'gfx/box_f.h',
418 'gfx/break_list.h', 418 'gfx/break_list.h',
419 'gfx/canvas.cc', 419 'gfx/canvas.cc',
420 'gfx/canvas.h', 420 'gfx/canvas.h',
421 'gfx/canvas_android.cc', 421 'gfx/canvas_android.cc',
422 'gfx/canvas_mac.mm',
423 'gfx/canvas_paint_gtk.cc', 422 'gfx/canvas_paint_gtk.cc',
424 'gfx/canvas_paint_gtk.h', 423 'gfx/canvas_paint_gtk.h',
425 'gfx/canvas_paint_mac.h', 424 'gfx/canvas_paint_mac.h',
426 'gfx/canvas_paint_mac.mm', 425 'gfx/canvas_paint_mac.mm',
427 'gfx/canvas_paint_win.cc', 426 'gfx/canvas_paint_win.cc',
428 'gfx/canvas_paint_win.h', 427 'gfx/canvas_paint_win.h',
429 'gfx/canvas_skia.cc', 428 'gfx/canvas_skia.cc',
430 'gfx/canvas_skia_paint.h', 429 'gfx/canvas_skia_paint.h',
431 'gfx/codec/jpeg_codec.cc', 430 'gfx/codec/jpeg_codec.cc',
432 'gfx/codec/jpeg_codec.h', 431 'gfx/codec/jpeg_codec.h',
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 'libraries': [ 638 'libraries': [
640 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', 639 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework',
641 ], 640 ],
642 }, 641 },
643 }], 642 }],
644 # TODO(asvitkine): Switch all platforms to use canvas_skia.cc. 643 # TODO(asvitkine): Switch all platforms to use canvas_skia.cc.
645 # http://crbug.com/105550 644 # http://crbug.com/105550
646 ['use_canvas_skia==1', { 645 ['use_canvas_skia==1', {
647 'sources!': [ 646 'sources!': [
648 'gfx/canvas_android.cc', 647 'gfx/canvas_android.cc',
649 'gfx/canvas_mac.mm',
650 ], 648 ],
651 }, { # use_canvas_skia!=1 649 }, { # use_canvas_skia!=1
652 'sources!': [ 650 'sources!': [
653 'gfx/canvas_skia.cc', 651 'gfx/canvas_skia.cc',
654 ], 652 ],
655 }], 653 }],
656 ['use_aura==1', { 654 ['use_aura==1', {
657 'sources/': [ 655 'sources/': [
658 ['exclude', 'gfx/gtk_'], 656 ['exclude', 'gfx/gtk_'],
659 ['exclude', 'gfx/gtk_util.cc'], 657 ['exclude', 'gfx/gtk_util.cc'],
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
1074 'xcode_settings': { 1072 'xcode_settings': {
1075 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', 1073 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
1076 }, 1074 },
1077 }], 1075 }],
1078 ], 1076 ],
1079 }, 1077 },
1080 ], 1078 ],
1081 }], 1079 }],
1082 ], 1080 ],
1083 } 1081 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698