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

Side by Side Diff: gyp/common.gypi

Issue 1927583002: Repurpose Release_Developer BUILDTYPE and remove SK_DEVELOPER. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix typo Created 4 years, 7 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
« no previous file with comments | « no previous file | include/core/SkClipStack.h » ('j') | src/core/SkResourceCache.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2011 The Android Open Source Project 1 # Copyright 2011 The Android Open Source Project
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # 5 #
6 # This file is automatically included by gyp_skia when building any target. 6 # This file is automatically included by gyp_skia when building any target.
7 7
8 { 8 {
9 'includes': [ 9 'includes': [
10 'common_variables.gypi', 10 'common_variables.gypi',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 'defines': [ 90 'defines': [
91 'SK_USE_CDB', 91 'SK_USE_CDB',
92 ], 92 ],
93 }, 93 },
94 ], 94 ],
95 [ 'skia_android_framework==0', { 95 [ 'skia_android_framework==0', {
96 # These defines are not used for skia_android_framework, where we build 96 # These defines are not used for skia_android_framework, where we build
97 # one makefile and allow someone to add SK_DEBUG etc for their own 97 # one makefile and allow someone to add SK_DEBUG etc for their own
98 # debugging purposes. 98 # debugging purposes.
99 'configurations': { 99 'configurations': {
100 'Debug': { 'defines': [ 'SK_DEVELOPER=1' ] }, 100 'Debug': { 'defines': [ 'SK_DEBUG=1' ] },
101 'Release': { 'defines': [ 'NDEBUG' ] }, 101 'Release': { 'defines': [ 'NDEBUG' ] },
102 'Release_Developer': { 102 'Release_Developer': {
103 'inherit_from': ['Release'], 103 'inherit_from': ['Release'],
104 'defines': [ 'SK_DEVELOPER=1' ], 104 'defines': [ 'SK_DEBUG=1' ],
105 }, 105 },
106 }, 106 },
107 }], 107 }],
108 ], 108 ],
109 }, # end 'target_defaults' 109 }, # end 'target_defaults'
110 } 110 }
OLDNEW
« no previous file with comments | « no previous file | include/core/SkClipStack.h » ('j') | src/core/SkResourceCache.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698