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)
204 def test_to_test_mapping(self, env, path, test): argument
205 test_mapping_files = self.find_all_test_mapping_files(env.ANDROID_BUILD_TOP + path)
228 def query_rdep_tests_dirs(self, env, modules, path, exclude_dir): argument
243 mapping_path = self.test_to_test_mapping(env, rdep_path, rdep_test)
266 def __init__(self, path, env, bazel): argument
283 self.dir_rel = self.dir.split(env.ANDROID_BUILD_TOP)[1]
286 env.ANDROID_BUILD_TOP + '; You must be in the '
293 (self.rdep_tests, self.rdep_dirs) = bazel.query_rdep_tests_dirs(env, modules,
306 def __init__(self, env, bazel, path): argument
314 self.package = Package(path, env, bazel)
392 env = Env()
393 bazel = Bazel(env)
396 test_mapping = TestMapping(env, bazel, path)