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

Side by Side Diff: skia/skia.gyp

Issue 10843068: remove restriction on images larger than 32K width or height (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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
« 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) 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'skia', 8 'target_name': 'skia',
9 'type': '<(component)', 9 'type': '<(component)',
10 'variables': { 10 'variables': {
(...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after
821 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4800], 821 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4800],
822 'defines': [ 822 'defines': [
823 'SK_GAMMA_SRGB', 823 'SK_GAMMA_SRGB',
824 #'SK_GAMMA_APPLY_TO_A8', 824 #'SK_GAMMA_APPLY_TO_A8',
825 'SK_BUILD_NO_IMAGE_ENCODE', 825 'SK_BUILD_NO_IMAGE_ENCODE',
826 'GR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"', 826 'GR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"',
827 'GR_STATIC_RECT_VB=1', 827 'GR_STATIC_RECT_VB=1',
828 'GR_AGGRESSIVE_SHADER_OPTS=1', 828 'GR_AGGRESSIVE_SHADER_OPTS=1',
829 'SK_DISABLE_FAST_AA_STROKE_RECT', 829 'SK_DISABLE_FAST_AA_STROKE_RECT',
830 'SK_DEFERRED_CANVAS_USES_GPIPE=1', 830 'SK_DEFERRED_CANVAS_USES_GPIPE=1',
831
832 # this flag can be removed entirely once this has baked for a while
833 'SK_ALLOW_OVER_32K_BITMAPS',
831 834
832 # temporary for landing Skia rev 3077 with minimal layout test breakage 835 # temporary for landing Skia rev 3077 with minimal layout test breakage
833 'SK_SIMPLE_TWOCOLOR_VERTICAL_GRADIENTS', 836 'SK_SIMPLE_TWOCOLOR_VERTICAL_GRADIENTS',
834 837
835 # skia uses static initializers to initialize the serialization logic 838 # skia uses static initializers to initialize the serialization logic
836 # of its "pictures" library. This is currently not used in chrome; if 839 # of its "pictures" library. This is currently not used in chrome; if
837 # it ever gets used the processes that use it need to call 840 # it ever gets used the processes that use it need to call
838 # SkGraphics::Init(). 841 # SkGraphics::Init().
839 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0', 842 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0',
840 843
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
1333 ], 1336 ],
1334 'include_dirs': [ 1337 'include_dirs': [
1335 '..', 1338 '..',
1336 ], 1339 ],
1337 'sources': [ 1340 'sources': [
1338 'ext/image_operations_bench.cc', 1341 'ext/image_operations_bench.cc',
1339 ], 1342 ],
1340 }, 1343 },
1341 ], 1344 ],
1342 } 1345 }
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