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