Index: mojo/tools/mopy/paths.py |
diff --git a/mojo/tools/mopy/paths.py b/mojo/tools/mopy/paths.py |
index 4678907c3b56d111a6b8dd1116682ecee71081b6..0c31eae1dbedc32c6adaabbff4160ed582301c29 100644 |
--- a/mojo/tools/mopy/paths.py |
+++ b/mojo/tools/mopy/paths.py |
@@ -24,6 +24,8 @@ class Paths(object): |
elif config.target_os == Config.OS_CHROMEOS: |
subdir += "chromeos_" |
subdir += "Debug" if config.is_debug else "Release" |
+ if config.sanitizer == Config.SANITIZER_ASAN: |
+ subdir += "_asan" |
self.build_dir = os.path.join(self.src_root, "out", subdir) |
elif build_dir is not None: |
self.build_dir = os.path.abspath(build_dir) |