From 2fe3f55e61b4abe97946a4dc101c0ed97a05b581 Mon Sep 17 00:00:00 2001 From: Tomasz Pasternak Date: Wed, 20 Nov 2024 10:36:57 +0100 Subject: [PATCH] fix(qsync): Fix build_dependencies after AOSP merge (#7027) --- aspect/build_dependencies.bzl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aspect/build_dependencies.bzl b/aspect/build_dependencies.bzl index d76308fd877..37bcda1f389 100644 --- a/aspect/build_dependencies.bzl +++ b/aspect/build_dependencies.bzl @@ -388,6 +388,8 @@ def _target_within_project_scope(label, include, exclude): repo = _get_repo_name(label) package = label.package result = False + if repo != "": + return False # We don't support external includes, so all external repos are outside the project scope if include: for inc in include.split(","): # This is not a valid label, but can be passed to aspect when `directories: .` is set in the projectview