Commit 36e3f4fa authored by Yura Yaroshevich's avatar Yura Yaroshevich Committed by Commit Bot

Assertion message when ATL is not installed.

Bug: None
Change-Id: I1d1483197acf0f3d61c8e747dd860e77d373bdda
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1888931Reviewed-by: default avatarPeter Kasting <pkasting@chromium.org>
Reviewed-by: default avatarBruce Dawson <brucedawson@chromium.org>
Commit-Queue: Yura Yaroshevich <yura.yaroshevich@gmail.com>
Cr-Commit-Position: refs/heads/master@{#711159}
parent ce3a832b
......@@ -280,8 +280,9 @@ def main():
assert vc_lib_path
print('vc_lib_path = ' + gn_helpers.ToGNString(vc_lib_path))
if (target_store != True):
# Path is assumed not to exist for desktop applications
assert vc_lib_atlmfc_path
# Path is assumed to exist for desktop applications.
assert vc_lib_atlmfc_path, ("Microsoft.VisualStudio.Component.VC.ATLMFC " +
"is not found, check if it's installed.")
# Possible atlmfc library path gets introduced in the future for store thus
# output result if a result exists.
if (vc_lib_atlmfc_path != ''):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment