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

Side by Side Diff: gyp/common.gypi

Issue 1753813002: Unbust the old debugger (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 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 | « debugger/QT/SkSettingsWidget.h ('k') | gyp/debugger.gyp » ('j') | no next file with comments »
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',
11 ], 11 ],
12 12
13 'target_defaults': { 13 'target_defaults': {
14 'defines': [ 14 'defines': [
15 'SK_INTERNAL', 15 'SK_INTERNAL',
16 'SK_GAMMA_SRGB', 16 'SK_GAMMA_SRGB',
17 'SK_GAMMA_APPLY_TO_A8', 17 'SK_GAMMA_APPLY_TO_A8',
18 'QT_NO_KEYWORDS',
18 # 'SK_USE_DISCARDABLE_SCALEDIMAGECACHE', # TODO(reed): Re-enable when tes ts don't crash with this. 19 # 'SK_USE_DISCARDABLE_SCALEDIMAGECACHE', # TODO(reed): Re-enable when tes ts don't crash with this.
19 ], 20 ],
20 21
21 # Validate the 'skia_os' setting against 'OS', because only certain 22 # Validate the 'skia_os' setting against 'OS', because only certain
22 # combinations work. You should only override 'skia_os' for certain 23 # combinations work. You should only override 'skia_os' for certain
23 # situations, like building for iOS on a Mac. 24 # situations, like building for iOS on a Mac.
24 'variables': { 25 'variables': {
25 'conditions': [ 26 'conditions': [
26 [ 'skia_os != OS and not ((skia_os == "ios" and OS == "mac") or \ 27 [ 'skia_os != OS and not ((skia_os == "ios" and OS == "mac") or \
27 (skia_os == "chromeos" and OS == "linux"))', { 28 (skia_os == "chromeos" and OS == "linux"))', {
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 'Release': { 'defines': [ 'NDEBUG' ] }, 99 'Release': { 'defines': [ 'NDEBUG' ] },
99 'Release_Developer': { 100 'Release_Developer': {
100 'inherit_from': ['Release'], 101 'inherit_from': ['Release'],
101 'defines': [ 'SK_DEVELOPER=1' ], 102 'defines': [ 'SK_DEVELOPER=1' ],
102 }, 103 },
103 }, 104 },
104 }], 105 }],
105 ], 106 ],
106 }, # end 'target_defaults' 107 }, # end 'target_defaults'
107 } 108 }
OLDNEW
« no previous file with comments | « debugger/QT/SkSettingsWidget.h ('k') | gyp/debugger.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698