blob: ca2547d781c0d2ae927540ffc0d635706f2e32c9 [file] [log] [blame]
<%include file="header_slash.mako" />
// This file verifies that all headers included in an SDK are valid.
% for dep, headers in sorted(data['headers'].iteritems()):
% if headers:
// ${dep}
% for header in headers:
#include "${header}"
% endfor
% endif
% endfor
int main(int argc, const char** argv) {}