blob: 6fc10e4f5cb4cea45127435954ad24fb9dccf73b [file] [log] [blame] [view]
Dart Embedder Hacking
====
## Debugging
Under Mojo, by default the Dart VM is built in Release mode regardless of the
mode that Mojo is built in. That is, when Mojo is built in Debug mode, the
Dart VM is still built in Release mode. To change this behavior while working
on the embedder, pass dart_debug=true to gn to configure a Debug build of the
Dart VM. I.e.:
```
$ gn gen --check out/Debug --args='... dart_debug=true'
```