forked from dart-archive/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
embedded.fletch-settings
34 lines (27 loc) · 1.01 KB
/
embedded.fletch-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file",
// for details. All rights reserved. Use of this source code is governed by a",
// BSD-style license that can be found in the LICENSE.md file."],
// The settings in this file are used during automated testing of embedded
// device type.
{
// Location of the packages configuration file (a relative URI)
"packages": ".packages",
// A list of strings that are passed to the compiler
"options": [
],
// Values of of compile-time constants, that is, the values of
// expression on these forms:
//
// const bool.fromEnvironment("<name>")
// const int.fromEnvironment("<name>")
// const String.fromEnvironment("<name>")
//
"constants": {
},
// Address of the target device on which to run the Fletch VMs.
// If null then vms are started directly on localhost.
"device_address": null,
// Type of device to compile for. Currently the available types are:
// "mobile" and "embedded".
"device_type": "embedded"
}