| OLD | NEW |
| 1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2017, 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 # This GN file contains build rules for assembling the Dart SDK. There are | 5 # This GN file contains build rules for assembling the Dart SDK. There are |
| 6 # two possible variants: the "Full" SDK, and the "Platform" SDK. If you want | 6 # two possible variants: the "Full" SDK, and the "Platform" SDK. If you want |
| 7 # to make a new subset of the Full SDK, make it the same way we make | 7 # to make a new subset of the Full SDK, make it the same way we make |
| 8 # the Platform SDK. | 8 # the Platform SDK. |
| 9 # | 9 # |
| 10 # Warning: | 10 # Warning: |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 "internal", | 170 "internal", |
| 171 "io", | 171 "io", |
| 172 "isolate", | 172 "isolate", |
| 173 "math", | 173 "math", |
| 174 "mirrors", | 174 "mirrors", |
| 175 "profiler", | 175 "profiler", |
| 176 "typed_data", | 176 "typed_data", |
| 177 ] | 177 ] |
| 178 | 178 |
| 179 _full_sdk_libraries = [ | 179 _full_sdk_libraries = [ |
| 180 "_blink", | |
| 181 "_chrome", | 180 "_chrome", |
| 182 "_internal", | 181 "_internal", |
| 183 "async", | 182 "async", |
| 184 "collection", | 183 "collection", |
| 185 "convert", | 184 "convert", |
| 186 "core", | 185 "core", |
| 187 "developer", | 186 "developer", |
| 188 "html", | 187 "html", |
| 189 "indexed_db", | 188 "indexed_db", |
| 190 "internal", | 189 "internal", |
| (...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 795 group("create_sdk") { | 794 group("create_sdk") { |
| 796 deps = [ | 795 deps = [ |
| 797 ":create_common_sdk", | 796 ":create_common_sdk", |
| 798 ] | 797 ] |
| 799 if (dart_platform_sdk) { | 798 if (dart_platform_sdk) { |
| 800 deps += [ ":create_platform_sdk" ] | 799 deps += [ ":create_platform_sdk" ] |
| 801 } else { | 800 } else { |
| 802 deps += [ ":create_full_sdk" ] | 801 deps += [ ":create_full_sdk" ] |
| 803 } | 802 } |
| 804 } | 803 } |
| OLD | NEW |