| use_relative_paths = True |
| |
| vars = { |
| 'sdk_url': 'https://github.com/dart-lang/sdk.git', |
| 'sdk_revision': '3b2f5ad7718da890548b5f4b48b2b8f14af6a233', |
| |
| 'flutter_url': 'https://github.com/flutter/flutter.git', |
| 'flutter_revision': 'da693441fb9de2219d712e8347697e2f20e936ec', |
| } |
| |
| 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', |
| ] |