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

Side by Side Diff: skia/skia_common.gypi

Issue 133903003: remove SK_SUPPORT_LEGACY_SK64, as all call-sites have been updated (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 # This gypi file handles the removal of platform-specific files from the 5 # This gypi file handles the removal of platform-specific files from the
6 # Skia build. 6 # Skia build.
7 { 7 {
8 'include_dirs': [ 8 'include_dirs': [
9 '..', 9 '..',
10 'config', 10 'config',
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 # This list will contain all defines that also need to be exported to 138 # This list will contain all defines that also need to be exported to
139 # dependent components. 139 # dependent components.
140 'skia_export_defines': [ 140 'skia_export_defines': [
141 'SK_ENABLE_INST_COUNT=0', 141 'SK_ENABLE_INST_COUNT=0',
142 'SK_SUPPORT_GPU=<(skia_support_gpu)', 142 'SK_SUPPORT_GPU=<(skia_support_gpu)',
143 'GR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"', 143 'GR_GL_CUSTOM_SETUP_HEADER="GrGLConfig_chrome.h"',
144 'SK_ENABLE_LEGACY_API_ALIASING=1', 144 'SK_ENABLE_LEGACY_API_ALIASING=1',
145 'SK_ATTR_DEPRECATED=SK_NOTHING_ARG1', 145 'SK_ATTR_DEPRECATED=SK_NOTHING_ARG1',
146 'SK_SUPPORT_LEGACY_COLORTYPE=1', 146 'SK_SUPPORT_LEGACY_COLORTYPE=1',
147 'GR_GL_IGNORE_ES3_MSAA=0', 147 'GR_GL_IGNORE_ES3_MSAA=0',
148 'SK_SUPPORT_LEGACY_SK64',
149 'SK_SUPPORT_LEGACY_ONLOCKPIXELS', 148 'SK_SUPPORT_LEGACY_ONLOCKPIXELS',
150 ], 149 ],
151 150
152 'default_font_cache_limit%': '(20*1024*1024)', 151 'default_font_cache_limit%': '(20*1024*1024)',
153 152
154 'conditions': [ 153 'conditions': [
155 ['OS== "android"', { 154 ['OS== "android"', {
156 # Android devices are typically more memory constrained, so 155 # Android devices are typically more memory constrained, so
157 # default to a smaller glyph cache (it may be overriden at runtime 156 # default to a smaller glyph cache (it may be overriden at runtime
158 # when the renderer starts up, depending on the actual device memory). 157 # when the renderer starts up, depending on the actual device memory).
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 # re-export if they include Skia headers in their public headers. 205 # re-export if they include Skia headers in their public headers.
207 'all_dependent_settings': { 206 'all_dependent_settings': {
208 'include_dirs': [ 207 'include_dirs': [
209 '..', 208 '..',
210 'config', 209 'config',
211 ], 210 ],
212 }, 211 },
213 212
214 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800], 213 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800],
215 } 214 }
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