| 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 ], |
| 11 | 11 |
| 12 'variables': { | 12 'variables': { |
| 13 'LK_PROJECT%': 'qemu-virt-fletch', | 13 'LK_PROJECT%': 'qemu-virt-dartino', |
| 14 | 14 |
| 15 'LK_CPU%': 'cortex-a15', | 15 'LK_CPU%': 'cortex-a15', |
| 16 }, | 16 }, |
| 17 | 17 |
| 18 'target_defaults': { | 18 'target_defaults': { |
| 19 | 19 |
| 20 'configurations': { | 20 'configurations': { |
| 21 | 21 |
| 22 'fletch_lk_flags': { | 22 'dartino_lk_flags': { |
| 23 'abstract': 1, | 23 'abstract': 1, |
| 24 | 24 |
| 25 'inherit_from': ['fletch_lk'], | 25 'inherit_from': ['dartino_lk'], |
| 26 | 26 |
| 27 'target_conditions': [ | 27 'target_conditions': [ |
| 28 ['_toolset=="target"', { | 28 ['_toolset=="target"', { |
| 29 'cflags': [ | 29 'cflags': [ |
| 30 '-mcpu=<(LK_CPU)', | 30 '-mcpu=<(LK_CPU)', |
| 31 '-include', | 31 '-include', |
| 32 'build-<(LK_PROJECT)/config.h', | 32 'build-<(LK_PROJECT)/config.h', |
| 33 ], | 33 ], |
| 34 }], | 34 }], |
| 35 ], | 35 ], |
| 36 }, | 36 }, |
| 37 | 37 |
| 38 'DebugLK': { | 38 'DebugLK': { |
| 39 'inherit_from': [ | 39 'inherit_from': [ |
| 40 'fletch_base', 'fletch_debug', 'fletch_lk_flags', | 40 'dartino_base', 'dartino_debug', 'dartino_lk_flags', |
| 41 'fletch_disable_live_coding', | 41 'dartino_disable_live_coding', |
| 42 'fletch_disable_native_processes', | 42 'dartino_disable_native_processes', |
| 43 'fletch_disable_print_interceptors', | 43 'dartino_disable_print_interceptors', |
| 44 ], | 44 ], |
| 45 }, | 45 }, |
| 46 | 46 |
| 47 'ReleaseLK': { | 47 'ReleaseLK': { |
| 48 'inherit_from': [ | 48 'inherit_from': [ |
| 49 'fletch_base', 'fletch_release', 'fletch_lk_flags', | 49 'dartino_base', 'dartino_release', 'dartino_lk_flags', |
| 50 'fletch_disable_live_coding', | 50 'dartino_disable_live_coding', |
| 51 'fletch_disable_native_processes', | 51 'dartino_disable_native_processes', |
| 52 'fletch_disable_print_interceptors', | 52 'dartino_disable_print_interceptors', |
| 53 ], | 53 ], |
| 54 }, | 54 }, |
| 55 | 55 |
| 56 'DebugLKFull': { | 56 'DebugLKFull': { |
| 57 'inherit_from': [ | 57 'inherit_from': [ |
| 58 'fletch_base', 'fletch_debug', 'fletch_lk_flags', | 58 'dartino_base', 'dartino_debug', 'dartino_lk_flags', |
| 59 'fletch_disable_native_processes', | 59 'dartino_disable_native_processes', |
| 60 'fletch_disable_print_interceptors', | 60 'dartino_disable_print_interceptors', |
| 61 ], | 61 ], |
| 62 }, | 62 }, |
| 63 | 63 |
| 64 'ReleaseLKFull': { | 64 'ReleaseLKFull': { |
| 65 'inherit_from': [ | 65 'inherit_from': [ |
| 66 'fletch_base', 'fletch_release', 'fletch_lk_flags', | 66 'dartino_base', 'dartino_release', 'dartino_lk_flags', |
| 67 'fletch_disable_native_processes', | 67 'dartino_disable_native_processes', |
| 68 'fletch_disable_print_interceptors', | 68 'dartino_disable_print_interceptors', |
| 69 ], | 69 ], |
| 70 }, | 70 }, |
| 71 }, | 71 }, |
| 72 }, | 72 }, |
| 73 } | 73 } |
| OLD | NEW |