OLD | NEW |
1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, the Dart 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 file. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 config("libdart_vm_config") { | 5 config("libdart_vm_config") { |
6 libs = [ | 6 libs = [ |
7 "dl", | 7 "dl", |
8 ] | 8 ] |
9 | 9 |
10 if (!is_android) { | 10 if (!is_android) { |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 sources = [ | 186 sources = [ |
187 ["async", "async"], | 187 ["async", "async"], |
188 ["core", "core"], | 188 ["core", "core"], |
189 ["collection", "collection"], | 189 ["collection", "collection"], |
190 ["convert", "convert"], | 190 ["convert", "convert"], |
191 ["developer", "developer"], | 191 ["developer", "developer"], |
192 ["_internal", "internal"], | 192 ["_internal", "internal"], |
193 ["isolate", "isolate"], | 193 ["isolate", "isolate"], |
194 ["math", "math"], | 194 ["math", "math"], |
195 ["mirrors", "mirrors"], | 195 ["mirrors", "mirrors"], |
| 196 ["profiler", "profiler"], |
196 ["typed_data", "typed_data"], | 197 ["typed_data", "typed_data"], |
197 ["_vmservice", "vmservice"], | 198 ["_vmservice", "vmservice"], |
198 ] | 199 ] |
199 } | 200 } |
OLD | NEW |