| OLD | NEW |
| 1 # Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file | 1 # Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE.md file. | 3 # BSD-style license that can be found in the LICENSE.md file. |
| 4 | 4 |
| 5 # TODO(ahe): Move this file elsewhere? | 5 # TODO(ahe): Move this file elsewhere? |
| 6 | 6 |
| 7 { | 7 { |
| 8 'includes': [ | 8 'includes': [ |
| 9 'common.gypi' | 9 'common.gypi' |
| 10 ], | 10 ], |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 | 81 |
| 82 'ReleaseXARMAndroid': { | 82 'ReleaseXARMAndroid': { |
| 83 'inherit_from': [ 'dartino_base', 'dartino_release', 'dartino_xarm'], | 83 'inherit_from': [ 'dartino_base', 'dartino_release', 'dartino_xarm'], |
| 84 'defines': [ 'DARTINO_TARGET_ANDROID' ], | 84 'defines': [ 'DARTINO_TARGET_ANDROID' ], |
| 85 }, | 85 }, |
| 86 | 86 |
| 87 'ReleaseXARM64': { | 87 'ReleaseXARM64': { |
| 88 'inherit_from': [ 'dartino_base', 'dartino_release', 'dartino_xarm64' ], | 88 'inherit_from': [ 'dartino_base', 'dartino_release', 'dartino_xarm64' ], |
| 89 }, | 89 }, |
| 90 | 90 |
| 91 'ReleaseMIPS': { |
| 92 'inherit_from': [ 'dartino_base', 'dartino_release', 'dartino_mips' ], |
| 93 }, |
| 94 |
| 95 'ReleaseXMIPS': { |
| 96 'inherit_from': [ 'dartino_base', 'dartino_release', 'dartino_xmips' ], |
| 97 }, |
| 98 |
| 91 'DebugIA32': { | 99 'DebugIA32': { |
| 92 'inherit_from': [ 'dartino_base', 'dartino_debug', 'dartino_ia32', ], | 100 'inherit_from': [ 'dartino_base', 'dartino_debug', 'dartino_ia32', ], |
| 93 }, | 101 }, |
| 94 | 102 |
| 95 'DebugIA32Android': { | 103 'DebugIA32Android': { |
| 96 'inherit_from': [ 'dartino_base', 'dartino_debug', 'dartino_ia32', ], | 104 'inherit_from': [ 'dartino_base', 'dartino_debug', 'dartino_ia32', ], |
| 97 'defines': [ 'DARTINO_TARGET_ANDROID' ], | 105 'defines': [ 'DARTINO_TARGET_ANDROID' ], |
| 98 }, | 106 }, |
| 99 | 107 |
| 100 'DebugIA32Asan': { | 108 'DebugIA32Asan': { |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 | 157 |
| 150 'DebugXARMAndroid': { | 158 'DebugXARMAndroid': { |
| 151 'inherit_from': [ 'dartino_base', 'dartino_debug', 'dartino_xarm' ], | 159 'inherit_from': [ 'dartino_base', 'dartino_debug', 'dartino_xarm' ], |
| 152 'defines': [ 'DARTINO_TARGET_ANDROID' ], | 160 'defines': [ 'DARTINO_TARGET_ANDROID' ], |
| 153 }, | 161 }, |
| 154 | 162 |
| 155 'DebugXARM64': { | 163 'DebugXARM64': { |
| 156 'inherit_from': [ 'dartino_base', 'dartino_debug', 'dartino_xarm64' ], | 164 'inherit_from': [ 'dartino_base', 'dartino_debug', 'dartino_xarm64' ], |
| 157 }, | 165 }, |
| 158 | 166 |
| 167 'DebugMIPS': { |
| 168 'inherit_from': [ 'dartino_base', 'dartino_debug', 'dartino_mips' ], |
| 169 }, |
| 170 |
| 171 'DebugXMIPS': { |
| 172 'inherit_from': [ 'dartino_base', 'dartino_debug', 'dartino_xmips' ], |
| 173 }, |
| 174 |
| 159 # Test configuration - to ensure that we can compile this configuration | 175 # Test configuration - to ensure that we can compile this configuration |
| 160 'ReleaseIA32DisableDebugging': { | 176 'ReleaseIA32DisableDebugging': { |
| 161 'inherit_from': [ | 177 'inherit_from': [ |
| 162 'dartino_base', 'dartino_release', 'dartino_ia32', | 178 'dartino_base', 'dartino_release', 'dartino_ia32', |
| 163 'dartino_disable_debugging' | 179 'dartino_disable_debugging' |
| 164 ], | 180 ], |
| 165 }, | 181 }, |
| 166 | 182 |
| 167 # TODO(herhut): Test configuration - to be removed. | 183 # TODO(herhut): Test configuration - to be removed. |
| 168 'ReleaseIA32DisableFFI': { | 184 'ReleaseIA32DisableFFI': { |
| 169 'inherit_from': [ | 185 'inherit_from': [ |
| 170 'dartino_base', 'dartino_release', 'dartino_ia32', | 186 'dartino_base', 'dartino_release', 'dartino_ia32', |
| 171 'dartino_disable_ffi' | 187 'dartino_disable_ffi' |
| 172 ], | 188 ], |
| 173 }, | 189 }, |
| 174 }, | 190 }, |
| 175 }, | 191 }, |
| 176 } | 192 } |
| 177 | 193 |
| OLD | NEW |