| OLD | NEW |
| 1 # This pubspec is currently mainly used to make it easier to develop on dart2js | 1 # This pubspec is currently mainly used to make it easier to develop on dart2js |
| 2 # by making it a standalone package. | 2 # by making it a standalone package. |
| 3 name: compiler | 3 name: compiler |
| 4 #version: do-not-upload | 4 #version: do-not-upload |
| 5 dependencies: | 5 dependencies: |
| 6 package_config: '>=0.1.1 <2.0.0' | 6 package_config: '>=0.1.1 <2.0.0' |
| 7 pub_semver: ^1.2.1 | 7 pub_semver: ^1.2.1 |
| 8 js: | 8 js: |
| 9 path: ../js | 9 path: ../js |
| 10 js_ast: | 10 js_ast: |
| 11 path: ../js_ast | 11 path: ../js_ast |
| 12 js_runtime: | 12 js_runtime: |
| 13 path: ../../sdk/lib/_internal/js_runtime | 13 path: ../../sdk/lib/_internal/js_runtime |
| 14 kernel: | 14 kernel: |
| 15 path: ../../pkg/kernel | 15 path: ../../pkg/kernel |
| 16 sdk_library_metadata: | 16 sdk_library_metadata: |
| 17 path: ../../sdk/lib/_internal/sdk_library_metadata | 17 path: ../../sdk/lib/_internal/sdk_library_metadata |
| 18 dart2js_info: | 18 dart2js_info: |
| 19 path: ../../third_party/pkg/dart2js_info | 19 path: ../../third_party/pkg/dart2js_info |
| 20 lookup_map: | 20 lookup_map: |
| 21 path: ../lookup_map | 21 path: ../lookup_map |
| 22 front_end: |
| 23 path: ../front_end |
| 24 dependency_overrides: |
| 25 front_end: |
| 26 path: ../front_end |
| 27 analyzer: |
| 28 path: ../analyzer |
| 22 | 29 |
| 23 # Uncomment if running gclient, so you can depend directly on the downloaded | 30 # Uncomment if running gclient, so you can depend directly on the downloaded |
| 24 # versions of dart2js's transitive dependencies: | 31 # versions of dart2js's transitive dependencies: |
| 25 # | 32 # |
| 26 # dependency_overrides: | 33 # dependency_overrides: |
| 27 # package_config: | 34 # package_config: |
| 28 # path: ../../third_party/pkg_tested/package_config | 35 # path: ../../third_party/pkg_tested/package_config |
| 29 # path: | 36 # path: |
| 30 # path: ../../third_party/pkg/path | 37 # path: ../../third_party/pkg/path |
| 31 # charcode: | 38 # charcode: |
| 32 # path: ../../third_party/pkg/charcode | 39 # path: ../../third_party/pkg/charcode |
| 33 # collection: | 40 # collection: |
| 34 # path: ../../third_party/pkg/collection | 41 # path: ../../third_party/pkg/collection |
| 35 # crypto: | 42 # crypto: |
| 36 # path: ../../third_party/pkg/crypto | 43 # path: ../../third_party/pkg/crypto |
| 37 # http_parser: | 44 # http_parser: |
| 38 # path: ../../third_party/pkg/http_parser | 45 # path: ../../third_party/pkg/http_parser |
| 39 # args: | 46 # args: |
| 40 # path: ../../third_party/pkg/args | 47 # path: ../../third_party/pkg/args |
| 41 # shelf: | 48 # shelf: |
| 42 # path: ../../third_party/pkg/shelf | 49 # path: ../../third_party/pkg/shelf |
| 43 # yaml: | 50 # yaml: |
| 44 # path: ../../third_party/pkg/yaml | 51 # path: ../../third_party/pkg/yaml |
| OLD | NEW |