| use_relative_paths = True |
| |
| vars = { |
| 'sdk_url': 'https://github.com/dart-lang/sdk.git', |
| 'sdk_revision': 'a3af8949863e38b953ca6caad952fd528cc40ecc', |
| |
| 'flutter_url': 'https://github.com/flutter/flutter.git', |
| 'flutter_revision': '023f95bdfc0d9726705af587cc47ba1aea1fcf4d', |
| } |
| |
| deps = { |
| # For now, we use a local fork of the Dart SDK to apply patches for Dartpad. |
| 'third_party/dart-sdk/sdk': None, # Var('sdk_url') + '@' + Var('sdk_revision'), |
| 'third_party/flutter': Var('flutter_url') + '@' + Var('flutter_revision'), |
| } |
| |
| # Flutter is not in recursedeps because its DEPS file is only needed for |
| # building the Flutter C++ engine, which we don't do. |
| recursedeps = [ |
| 'third_party/dart-sdk/sdk', |
| ] |