Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge.
  • Loading branch information
matanlurey committed Aug 29, 2023
commit ae5ef20b45f672490160e5b83dd97de00acc0123
43 changes: 23 additions & 20 deletions tools/pub_get_offline.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,26 +20,29 @@
ENGINE_DIR = os.path.join(SRC_ROOT, 'flutter')

ALL_PACKAGES = [
os.path.join(ENGINE_DIR, "ci"),
os.path.join(ENGINE_DIR, "impeller", "golden_tests_harvester"),
os.path.join(ENGINE_DIR, "flutter_frontend_server"),
os.path.join(ENGINE_DIR, "shell", "vmservice"),
os.path.join(ENGINE_DIR, "testing", "benchmark"),
os.path.join(ENGINE_DIR, "testing", "dart"),
os.path.join(ENGINE_DIR, "testing", "litetest"),
os.path.join(ENGINE_DIR, "testing", "android_background_image"),
os.path.join(ENGINE_DIR, "testing", "scenario_app"),
os.path.join(ENGINE_DIR, "testing", "smoke_test_failure"),
os.path.join(ENGINE_DIR, "testing", "symbols"),
os.path.join(ENGINE_DIR, "tools", "api_check"),
os.path.join(ENGINE_DIR, "tools", "android_lint"),
os.path.join(ENGINE_DIR, "tools", "build_bucket_golden_scraper"),
os.path.join(ENGINE_DIR, "tools", "clang_tidy"),
os.path.join(ENGINE_DIR, "tools", "const_finder"),
os.path.join(ENGINE_DIR, "tools", "pkg", "engine_repo_tools"),
os.path.join(ENGINE_DIR, "tools", "githooks"),
os.path.join(ENGINE_DIR, "tools", "licenses"),
os.path.join(ENGINE_DIR, "tools", "path_ops", "dart")
os.path.join(ENGINE_DIR, 'ci'),
os.path.join(ENGINE_DIR, 'flutter_frontend_server'),
os.path.join(ENGINE_DIR, 'impeller', 'golden_tests_harvester'),
os.path.join(ENGINE_DIR, 'impeller', 'tessellator', 'dart'),
os.path.join(ENGINE_DIR, 'shell', 'vmservice'),
os.path.join(ENGINE_DIR, 'testing', 'android_background_image'),
os.path.join(ENGINE_DIR, 'testing', 'benchmark'),
os.path.join(ENGINE_DIR, 'testing', 'dart'),
os.path.join(ENGINE_DIR, 'testing', 'litetest'),
os.path.join(ENGINE_DIR, 'testing', 'scenario_app'),
os.path.join(ENGINE_DIR, 'testing', 'skia_gold_client'),
os.path.join(ENGINE_DIR, 'testing', 'smoke_test_failure'),
os.path.join(ENGINE_DIR, 'testing', 'symbols'),
os.path.join(ENGINE_DIR, 'tools', 'android_lint'),
os.path.join(ENGINE_DIR, 'tools', 'api_check'),
os.path.join(ENGINE_DIR, 'tools', 'build_bucket_golden_scraper'),
os.path.join(ENGINE_DIR, 'tools', 'clang_tidy'),
os.path.join(ENGINE_DIR, 'tools', 'const_finder'),
os.path.join(ENGINE_DIR, 'tools', 'gen_web_locale_keymap'),
os.path.join(ENGINE_DIR, 'tools', 'githooks'),
os.path.join(ENGINE_DIR, 'tools', 'licenses'),
os.path.join(ENGINE_DIR, 'tools', 'path_ops', 'dart'),
os.path.join(ENGINE_DIR, 'tools', 'pkg', 'engine_repo_tools'),
]


Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.