Skip to content
Snippets Groups Projects
Commit 77b84e74 authored by Michael Lumish's avatar Michael Lumish
Browse files

Merge pull request #4740 from sreecha/fix_import_issues

public_headers not found in some cases when running the script..
parents 7df64666 fa40cde4
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
% for dep in module.transitive_deps: % for dep in module.transitive_deps:
% for lib in libs: % for lib in libs:
% if lib.name == dep: % if lib.name == dep:
% for file in lib.public_headers + lib.headers + lib.src: % for file in lib.get('public_headers', []) + lib.headers + lib.src:
"${file}", "${file}",
% endfor % endfor
% endif % endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment