OLD | NEW |
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 Loading... |
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_DEBUG=1' ] }, | 100 'Debug': { 'defines': [ 'SK_DEVELOPER=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_DEBUG=1' ], | 104 'defines': [ 'SK_DEVELOPER=1' ], |
105 }, | 105 }, |
106 }, | 106 }, |
107 }], | 107 }], |
108 ], | 108 ], |
109 }, # end 'target_defaults' | 109 }, # end 'target_defaults' |
110 } | 110 } |
OLD | NEW |