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 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
817 '../third_party/skia/src/core', | 817 '../third_party/skia/src/core', |
818 '../third_party/skia/src/gpu', | 818 '../third_party/skia/src/gpu', |
819 '../third_party/skia/src/sfnt', | 819 '../third_party/skia/src/sfnt', |
820 '../third_party/skia/src/utils', | 820 '../third_party/skia/src/utils', |
821 ], | 821 ], |
822 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4800], | 822 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4800], |
823 'defines': [ | 823 'defines': [ |
824 'SK_GAMMA_SRGB', | 824 'SK_GAMMA_SRGB', |
825 #'SK_GAMMA_APPLY_TO_A8', | 825 #'SK_GAMMA_APPLY_TO_A8', |
826 'SK_BUILD_NO_IMAGE_ENCODE', | 826 'SK_BUILD_NO_IMAGE_ENCODE', |
827 # TODO(alexeypa): fix quoting in the skia sources, | 827 'GR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"', |
828 # see http://crbug.com/141132. | |
829 'GR_GL_CUSTOM_SETUP_HEADER=<GrGLConfig_chrome.h>', | |
830 'GR_STATIC_RECT_VB=1', | 828 'GR_STATIC_RECT_VB=1', |
831 'GR_AGGRESSIVE_SHADER_OPTS=1', | 829 'GR_AGGRESSIVE_SHADER_OPTS=1', |
832 'SK_DISABLE_FAST_AA_STROKE_RECT', | 830 'SK_DISABLE_FAST_AA_STROKE_RECT', |
833 'SK_DEFERRED_CANVAS_USES_GPIPE=1', | 831 'SK_DEFERRED_CANVAS_USES_GPIPE=1', |
834 | 832 |
835 # this flag can be removed entirely once this has baked for a while | 833 # this flag can be removed entirely once this has baked for a while |
836 'SK_ALLOW_OVER_32K_BITMAPS', | 834 'SK_ALLOW_OVER_32K_BITMAPS', |
837 | 835 |
838 # temporary for landing Skia rev 3077 with minimal layout test breakage | 836 # temporary for landing Skia rev 3077 with minimal layout test breakage |
839 'SK_SIMPLE_TWOCOLOR_VERTICAL_GRADIENTS', | 837 'SK_SIMPLE_TWOCOLOR_VERTICAL_GRADIENTS', |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1106 '../third_party/skia/include/gpu', | 1104 '../third_party/skia/include/gpu', |
1107 '../third_party/skia/include/gpu/gl', | 1105 '../third_party/skia/include/gpu/gl', |
1108 '../third_party/skia/include/pipe', | 1106 '../third_party/skia/include/pipe', |
1109 '../third_party/skia/include/ports', | 1107 '../third_party/skia/include/ports', |
1110 '../third_party/skia/include/utils', | 1108 '../third_party/skia/include/utils', |
1111 'ext', | 1109 'ext', |
1112 ], | 1110 ], |
1113 'defines': [ | 1111 'defines': [ |
1114 'SK_BUILD_NO_IMAGE_ENCODE', | 1112 'SK_BUILD_NO_IMAGE_ENCODE', |
1115 'SK_DEFERRED_CANVAS_USES_GPIPE=1', | 1113 'SK_DEFERRED_CANVAS_USES_GPIPE=1', |
1116 # TODO(alexeypa): fix quoting in the skia sources, | 1114 'GR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"', |
1117 # see http://crbug.com/141132. | |
1118 'GR_GL_CUSTOM_SETUP_HEADER=<GrGLConfig_chrome.h>', | |
1119 'GR_AGGRESSIVE_SHADER_OPTS=1', | 1115 'GR_AGGRESSIVE_SHADER_OPTS=1', |
1120 ], | 1116 ], |
1121 'conditions': [ | 1117 'conditions': [ |
1122 ['OS=="android"', { | 1118 ['OS=="android"', { |
1123 'dependencies!': [ | 1119 'dependencies!': [ |
1124 'skia_opts', | 1120 'skia_opts', |
1125 '../third_party/zlib/zlib.gyp:zlib', | 1121 '../third_party/zlib/zlib.gyp:zlib', |
1126 ], | 1122 ], |
1127 'defines': [ | 1123 'defines': [ |
1128 # Don't use non-NDK available stuff. | 1124 # Don't use non-NDK available stuff. |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1341 ], | 1337 ], |
1342 'include_dirs': [ | 1338 'include_dirs': [ |
1343 '..', | 1339 '..', |
1344 ], | 1340 ], |
1345 'sources': [ | 1341 'sources': [ |
1346 'ext/image_operations_bench.cc', | 1342 'ext/image_operations_bench.cc', |
1347 ], | 1343 ], |
1348 }, | 1344 }, |
1349 ], | 1345 ], |
1350 } | 1346 } |
OLD | NEW |