OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |