| 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", |
| 180 "_chrome", | 181 "_chrome", |
| 181 "_internal", | 182 "_internal", |
| 182 "async", | 183 "async", |
| 183 "collection", | 184 "collection", |
| 184 "convert", | 185 "convert", |
| 185 "core", | 186 "core", |
| 186 "developer", | 187 "developer", |
| 188 "html", |
| 189 "indexed_db", |
| 187 "internal", | 190 "internal", |
| 188 "io", | 191 "io", |
| 189 "isolate", | 192 "isolate", |
| 193 "js", |
| 194 "js_util", |
| 190 "math", | 195 "math", |
| 191 "mirrors", | 196 "mirrors", |
| 192 "profiler", | 197 "profiler", |
| 198 "svg", |
| 193 "typed_data", | 199 "typed_data", |
| 200 "web_audio", |
| 201 "web_gl", |
| 202 "web_sql", |
| 194 ] | 203 ] |
| 195 | 204 |
| 196 # Package sources copied to lib/ | 205 # Package sources copied to lib/ |
| 197 _analyzer_source_dirs = [ | 206 _analyzer_source_dirs = [ |
| 198 "analyzer", | 207 "analyzer", |
| 199 "analysis_server", | 208 "analysis_server", |
| 200 "front_end", | 209 "front_end", |
| 201 "kernel", | 210 "kernel", |
| 202 ] | 211 ] |
| 203 | 212 |
| (...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 786 group("create_sdk") { | 795 group("create_sdk") { |
| 787 deps = [ | 796 deps = [ |
| 788 ":create_common_sdk", | 797 ":create_common_sdk", |
| 789 ] | 798 ] |
| 790 if (dart_platform_sdk) { | 799 if (dart_platform_sdk) { |
| 791 deps += [ ":create_platform_sdk" ] | 800 deps += [ ":create_platform_sdk" ] |
| 792 } else { | 801 } else { |
| 793 deps += [ ":create_full_sdk" ] | 802 deps += [ ":create_full_sdk" ] |
| 794 } | 803 } |
| 795 } | 804 } |
| OLD | NEW |