| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 'defines': [ | 85 'defines': [ |
| 86 'SK_USE_CDB', | 86 'SK_USE_CDB', |
| 87 ], | 87 ], |
| 88 }, | 88 }, |
| 89 ], | 89 ], |
| 90 ], | 90 ], |
| 91 'configurations': { | 91 'configurations': { |
| 92 'Debug': { | 92 'Debug': { |
| 93 'defines': [ | 93 'defines': [ |
| 94 'SK_DEBUG', | 94 'SK_DEBUG', |
| 95 'GR_DEBUG=1', | |
| 96 'SK_DEVELOPER=1', | 95 'SK_DEVELOPER=1', |
| 97 ], | 96 ], |
| 98 }, | 97 }, |
| 99 'Release': { | 98 'Release': { |
| 100 'defines': [ | 99 'defines': [ |
| 101 'SK_RELEASE', | 100 'SK_RELEASE', |
| 102 'GR_RELEASE=1', | 101 'GR_RELEASE=1', |
| 103 ], | 102 ], |
| 104 }, | 103 }, |
| 105 'Release_Developer': { | 104 'Release_Developer': { |
| 106 'inherit_from': ['Release'], | 105 'inherit_from': ['Release'], |
| 107 'defines': [ | 106 'defines': [ |
| 108 'SK_DEVELOPER=1', | 107 'SK_DEVELOPER=1', |
| 109 ], | 108 ], |
| 110 }, | 109 }, |
| 111 }, | 110 }, |
| 112 }, # end 'target_defaults' | 111 }, # end 'target_defaults' |
| 113 } | 112 } |
| 114 # Local Variables: | 113 # Local Variables: |
| 115 # tab-width:2 | 114 # tab-width:2 |
| 116 # indent-tabs-mode:nil | 115 # indent-tabs-mode:nil |
| 117 # End: | 116 # End: |
| 118 # vim: set expandtab tabstop=2 shiftwidth=2: | 117 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |