| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | |
| 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. | |
| 4 | |
| 5 _core_library_names = [ | |
| 6 "async", | |
| 7 "core", | |
| 8 "collection", | |
| 9 "convert", | |
| 10 "developer", | |
| 11 "internal", | |
| 12 "isolate", | |
| 13 "math", | |
| 14 "mirrors", | |
| 15 "profiler", | |
| 16 "typed_data", | |
| 17 "vmservice", | |
| 18 ] | |
| 19 | |
| 20 _core_library_gypis = [ | |
| 21 "../platform/platform_headers.gypi", | |
| 22 "../platform/platform_sources.gypi", | |
| 23 "../vm/vm_sources.gypi", | |
| 24 "../lib/async_sources.gypi", | |
| 25 "../lib/core_sources.gypi", | |
| 26 "../lib/collection_sources.gypi", | |
| 27 "../lib/convert_sources.gypi", | |
| 28 "../lib/developer_sources.gypi", | |
| 29 "../lib/internal_sources.gypi", | |
| 30 "../lib/isolate_sources.gypi", | |
| 31 "../lib/math_sources.gypi", | |
| 32 "../lib/mirrors_sources.gypi", | |
| 33 "../lib/typed_data_sources.gypi", | |
| 34 "../lib/vmservice_sources.gypi", | |
| 35 "../../sdk/lib/async/async_sources.gypi", | |
| 36 "../../sdk/lib/collection/collection_sources.gypi", | |
| 37 "../../sdk/lib/convert/convert_sources.gypi", | |
| 38 "../../sdk/lib/core/core_sources.gypi", | |
| 39 "../../sdk/lib/developer/developer_sources.gypi", | |
| 40 "../../sdk/lib/internal/internal_sources.gypi", | |
| 41 "../../sdk/lib/isolate/isolate_sources.gypi", | |
| 42 "../../sdk/lib/math/math_sources.gypi", | |
| 43 "../../sdk/lib/mirrors/mirrors_sources.gypi", | |
| 44 "../../sdk/lib/profiler/profiler_sources.gypi", | |
| 45 "../../sdk/lib/typed_data/typed_data_sources.gypi", | |
| 46 "../../sdk/lib/vmservice/vmservice_sources.gypi", | |
| 47 "../bin/io_sources.gypi", | |
| 48 ] | |
| 49 | |
| 50 processed_gypis = exec_script("../../tools/process_gypis.py", | |
| 51 _core_library_names, | |
| 52 "scope", | |
| 53 _core_library_gypis) | |
| OLD | NEW |