Lines Matching refs:env
134 def __init__(self, env): argument
147 self.path = os.path.join(env.ANDROID_BUILD_TOP, "build", "bazel", "bin", "bazel")
148 soong_ui = os.path.join(env.ANDROID_BUILD_TOP, "build", "soong", "soong_ui.bash")
151 os.chdir(env.ANDROID_BUILD_TOP)
198 def test_to_test_mapping(self, env, path, test): argument
199 test_mapping_files = self.find_all_test_mapping_files(env.ANDROID_BUILD_TOP + path)
222 def query_rdep_tests_dirs(self, env, modules, path, exclude_dir): argument
237 mapping_path = self.test_to_test_mapping(env, rdep_path, rdep_test)
260 def __init__(self, path, env, bazel): argument
277 self.dir_rel = self.dir.split(env.ANDROID_BUILD_TOP)[1]
280 env.ANDROID_BUILD_TOP + '; You must be in the '
287 (self.rdep_tests, self.rdep_dirs) = bazel.query_rdep_tests_dirs(env, modules,
300 def __init__(self, env, bazel, path): argument
308 self.package = Package(path, env, bazel)
386 env = Env()
387 bazel = Bazel(env)
390 test_mapping = TestMapping(env, bazel, path)