| OLD | NEW |
| 1 # Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 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 | 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 _core_library_names = [ | 5 _core_library_names = [ |
| 6 "async", | 6 "async", |
| 7 "core", | 7 "core", |
| 8 "collection", | 8 "collection", |
| 9 "convert", | 9 "convert", |
| 10 "developer", | 10 "developer", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 "../../sdk/lib/async/async_sources.gypi", | 35 "../../sdk/lib/async/async_sources.gypi", |
| 36 "../../sdk/lib/collection/collection_sources.gypi", | 36 "../../sdk/lib/collection/collection_sources.gypi", |
| 37 "../../sdk/lib/convert/convert_sources.gypi", | 37 "../../sdk/lib/convert/convert_sources.gypi", |
| 38 "../../sdk/lib/core/core_sources.gypi", | 38 "../../sdk/lib/core/core_sources.gypi", |
| 39 "../../sdk/lib/developer/developer_sources.gypi", | 39 "../../sdk/lib/developer/developer_sources.gypi", |
| 40 "../../sdk/lib/internal/internal_sources.gypi", | 40 "../../sdk/lib/internal/internal_sources.gypi", |
| 41 "../../sdk/lib/isolate/isolate_sources.gypi", | 41 "../../sdk/lib/isolate/isolate_sources.gypi", |
| 42 "../../sdk/lib/math/math_sources.gypi", | 42 "../../sdk/lib/math/math_sources.gypi", |
| 43 "../../sdk/lib/mirrors/mirrors_sources.gypi", | 43 "../../sdk/lib/mirrors/mirrors_sources.gypi", |
| 44 "../../sdk/lib/profiler/profiler_sources.gypi", | 44 "../../sdk/lib/profiler/profiler_sources.gypi", |
| 45 "../../sdk/lib/typed_data/typed_data_sources.gypi", |
| 45 "../../sdk/lib/vmservice/vmservice_sources.gypi", | 46 "../../sdk/lib/vmservice/vmservice_sources.gypi", |
| 46 "../bin/io_sources.gypi", | 47 "../bin/io_sources.gypi", |
| 47 ] | 48 ] |
| 48 | 49 |
| 49 processed_gypis = exec_script("../../tools/process_gypis.py", | 50 processed_gypis = exec_script("../../tools/process_gypis.py", |
| 50 _core_library_names, | 51 _core_library_names, |
| 51 "scope", | 52 "scope", |
| 52 _core_library_gypis) | 53 _core_library_gypis) |
| OLD | NEW |