emulator: add support for dependencies
Change-Id: I038a11efd5e063dc8ab00542da982dfece8cf003
diff --git a/build/tools/roomservice.py b/build/tools/roomservice.py
index 179a07a..995a920 100755
--- a/build/tools/roomservice.py
+++ b/build/tools/roomservice.py
@@ -349,7 +349,10 @@
def fetch_dependencies(device):
- location = parse_device_from_folder(device)
+ if device == "emulator":
+ location = "vendor/omni/utils/emulator"
+ else:
+ location = parse_device_from_folder(device)
if location is None or not os.path.isdir(location):
raise Exception("ERROR: could not find your device "
"folder location, bailing out")