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

Side by Side Diff: skia/skia.gyp

Issue 8590035: enable colorfilter optimization (big speedup for sites with shadows) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'skia', 8 'target_name': 'skia',
9 'type': '<(component)', 9 'type': '<(component)',
10 'sources': [ 10 'sources': [
(...skipping 711 matching lines...) Expand 10 before | Expand all | Expand 10 after
722 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800], 722 'msvs_disabled_warnings': [4244, 4267,4345, 4390, 4554, 4800],
723 'mac_framework_dirs': [ 723 'mac_framework_dirs': [
724 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fram eworks', 724 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fram eworks',
725 ], 725 ],
726 'defines': [ 726 'defines': [
727 'SK_BUILD_NO_IMAGE_ENCODE', 727 'SK_BUILD_NO_IMAGE_ENCODE',
728 'GR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"', 728 'GR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"',
729 'GR_STATIC_RECT_VB=1', 729 'GR_STATIC_RECT_VB=1',
730 'GR_AGGRESSIVE_SHADER_OPTS=1', 730 'GR_AGGRESSIVE_SHADER_OPTS=1',
731 'SK_DISABLE_FAST_AA_STROKE_RECT', 731 'SK_DISABLE_FAST_AA_STROKE_RECT',
732 'SK_IGNORE_CF_OPTIMIZATION', 732 # 'SK_ENABLE_FAST_SHADERMASK',
733 'SK_DEFAULT_FONT_CACHE_LIMIT=(16*1024*1024)', 733 'SK_DEFAULT_FONT_CACHE_LIMIT=(16*1024*1024)',
734 ], 734 ],
735 'sources!': [ 735 'sources!': [
736 '../third_party/skia/include/core/SkTypes.h', 736 '../third_party/skia/include/core/SkTypes.h',
737 ], 737 ],
738 'conditions': [ 738 'conditions': [
739 [ 'OS != "android"', { 739 [ 'OS != "android"', {
740 'sources/': [ 740 'sources/': [
741 ['exclude', '_android\\.(cc|cpp)$'], 741 ['exclude', '_android\\.(cc|cpp)$'],
742 ], 742 ],
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
1113 ], 1113 ],
1114 'include_dirs': [ 1114 'include_dirs': [
1115 '..', 1115 '..',
1116 ], 1116 ],
1117 'sources': [ 1117 'sources': [
1118 'ext/image_operations_bench.cc', 1118 'ext/image_operations_bench.cc',
1119 ], 1119 ],
1120 }, 1120 },
1121 ], 1121 ],
1122 } 1122 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698