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 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
816 '../third_party/skia/src/core', | 816 '../third_party/skia/src/core', |
817 '../third_party/skia/src/gpu', | 817 '../third_party/skia/src/gpu', |
818 '../third_party/skia/src/sfnt', | 818 '../third_party/skia/src/sfnt', |
819 '../third_party/skia/src/utils', | 819 '../third_party/skia/src/utils', |
820 ], | 820 ], |
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 # TODO(alexeypa): fix quoting in the skia sources, |
| 827 # see http://crbug.com/141132. |
| 828 'GR_GL_CUSTOM_SETUP_HEADER=<GrGLConfig_chrome.h>', |
827 'GR_STATIC_RECT_VB=1', | 829 'GR_STATIC_RECT_VB=1', |
828 'GR_AGGRESSIVE_SHADER_OPTS=1', | 830 'GR_AGGRESSIVE_SHADER_OPTS=1', |
829 'SK_DISABLE_FAST_AA_STROKE_RECT', | 831 'SK_DISABLE_FAST_AA_STROKE_RECT', |
830 'SK_DEFERRED_CANVAS_USES_GPIPE=1', | 832 'SK_DEFERRED_CANVAS_USES_GPIPE=1', |
831 | 833 |
832 # temporary for landing Skia rev 3077 with minimal layout test breakage | 834 # temporary for landing Skia rev 3077 with minimal layout test breakage |
833 'SK_SIMPLE_TWOCOLOR_VERTICAL_GRADIENTS', | 835 'SK_SIMPLE_TWOCOLOR_VERTICAL_GRADIENTS', |
834 | 836 |
835 # skia uses static initializers to initialize the serialization logic | 837 # skia uses static initializers to initialize the serialization logic |
836 # of its "pictures" library. This is currently not used in chrome; if | 838 # of its "pictures" library. This is currently not used in chrome; if |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1100 '../third_party/skia/include/gpu', | 1102 '../third_party/skia/include/gpu', |
1101 '../third_party/skia/include/gpu/gl', | 1103 '../third_party/skia/include/gpu/gl', |
1102 '../third_party/skia/include/pipe', | 1104 '../third_party/skia/include/pipe', |
1103 '../third_party/skia/include/ports', | 1105 '../third_party/skia/include/ports', |
1104 '../third_party/skia/include/utils', | 1106 '../third_party/skia/include/utils', |
1105 'ext', | 1107 'ext', |
1106 ], | 1108 ], |
1107 'defines': [ | 1109 'defines': [ |
1108 'SK_BUILD_NO_IMAGE_ENCODE', | 1110 'SK_BUILD_NO_IMAGE_ENCODE', |
1109 'SK_DEFERRED_CANVAS_USES_GPIPE=1', | 1111 'SK_DEFERRED_CANVAS_USES_GPIPE=1', |
1110 'GR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"', | 1112 # TODO(alexeypa): fix quoting in the skia sources, |
| 1113 # see http://crbug.com/141132. |
| 1114 'GR_GL_CUSTOM_SETUP_HEADER=<GrGLConfig_chrome.h>', |
1111 'GR_AGGRESSIVE_SHADER_OPTS=1', | 1115 'GR_AGGRESSIVE_SHADER_OPTS=1', |
1112 ], | 1116 ], |
1113 'conditions': [ | 1117 'conditions': [ |
1114 ['OS=="android"', { | 1118 ['OS=="android"', { |
1115 'dependencies!': [ | 1119 'dependencies!': [ |
1116 'skia_opts', | 1120 'skia_opts', |
1117 '../third_party/zlib/zlib.gyp:zlib', | 1121 '../third_party/zlib/zlib.gyp:zlib', |
1118 ], | 1122 ], |
1119 'defines': [ | 1123 'defines': [ |
1120 # 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... |
1333 ], | 1337 ], |
1334 'include_dirs': [ | 1338 'include_dirs': [ |
1335 '..', | 1339 '..', |
1336 ], | 1340 ], |
1337 'sources': [ | 1341 'sources': [ |
1338 'ext/image_operations_bench.cc', | 1342 'ext/image_operations_bench.cc', |
1339 ], | 1343 ], |
1340 }, | 1344 }, |
1341 ], | 1345 ], |
1342 } | 1346 } |
OLD | NEW |