Chromium Code Reviews| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 149 | 149 |
| 150 'DebugXARMAndroid': { | 150 'DebugXARMAndroid': { |
| 151 'inherit_from': [ 'dartino_base', 'dartino_debug', 'dartino_xarm' ], | 151 'inherit_from': [ 'dartino_base', 'dartino_debug', 'dartino_xarm' ], |
| 152 'defines': [ 'DARTINO_TARGET_ANDROID' ], | 152 'defines': [ 'DARTINO_TARGET_ANDROID' ], |
| 153 }, | 153 }, |
| 154 | 154 |
| 155 'DebugXARM64': { | 155 'DebugXARM64': { |
| 156 'inherit_from': [ 'dartino_base', 'dartino_debug', 'dartino_xarm64' ], | 156 'inherit_from': [ 'dartino_base', 'dartino_debug', 'dartino_xarm64' ], |
| 157 }, | 157 }, |
| 158 | 158 |
| 159 'DebugMIPS': { | |
|
Søren Gjesse
2016/05/26 13:00:19
Don't you want to add the release targets as well?
petarj
2016/05/26 14:35:55
Done. (It was meant to be in one of the later patc
| |
| 160 'inherit_from': [ 'dartino_base', 'dartino_debug', 'dartino_mips' ], | |
| 161 }, | |
| 162 | |
| 163 'DebugXMIPS': { | |
| 164 'inherit_from': [ 'dartino_base', 'dartino_debug', 'dartino_xmips' ], | |
| 165 }, | |
| 166 | |
| 159 # Test configuration - to ensure that we can compile this configuration | 167 # Test configuration - to ensure that we can compile this configuration |
| 160 'ReleaseIA32DisableDebugging': { | 168 'ReleaseIA32DisableDebugging': { |
| 161 'inherit_from': [ | 169 'inherit_from': [ |
| 162 'dartino_base', 'dartino_release', 'dartino_ia32', | 170 'dartino_base', 'dartino_release', 'dartino_ia32', |
| 163 'dartino_disable_debugging' | 171 'dartino_disable_debugging' |
| 164 ], | 172 ], |
| 165 }, | 173 }, |
| 166 | 174 |
| 167 # TODO(herhut): Test configuration - to be removed. | 175 # TODO(herhut): Test configuration - to be removed. |
| 168 'ReleaseIA32DisableFFI': { | 176 'ReleaseIA32DisableFFI': { |
| 169 'inherit_from': [ | 177 'inherit_from': [ |
| 170 'dartino_base', 'dartino_release', 'dartino_ia32', | 178 'dartino_base', 'dartino_release', 'dartino_ia32', |
| 171 'dartino_disable_ffi' | 179 'dartino_disable_ffi' |
| 172 ], | 180 ], |
| 173 }, | 181 }, |
| 174 }, | 182 }, |
| 175 }, | 183 }, |
| 176 } | 184 } |
| 177 | 185 |
| OLD | NEW |