Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / build / scripts / templates / MakeNames.h.tmpl
blob7d01d3df404e97bed0232d2630e6f3ede0e04f38
1 {% from "macros.tmpl" import license %}
2 {{ license() }}
4 #ifndef {{namespace}}{{suffix}}Names_h
5 #define {{namespace}}{{suffix}}Names_h
7 {% set symbol_export = '%s ' % export if export else '' %}
8 {% if suffix %}
9 #include "core/{{namespace}}Names.h"
10 {% else %}
11 #include "wtf/text/AtomicString.h"
12 {% endif %}
13 {% if export == 'CORE_EXPORT' %}
14 #include "core/CoreExport.h"
15 {% elif export == 'MODULES_EXPORT' %}
16 #include "modules/ModulesExport.h"
17 {% else %}
18 #include "platform/PlatformExport.h"
19 {% endif %}
21 // Generated from:
22 {% for entry in in_files|sort %}
23 // - {{entry}}
24 {% endfor %}
26 namespace blink {
27 namespace {{namespace}}Names {
29 {% for entry in entries|sort %}
30 {% filter enable_conditional(entry.Conditional) %}
31 {{symbol_export}}extern const WTF::AtomicString& {{entry|symbol}};
32 {% endfilter %}
33 {% endfor %}
35 {{symbol_export}}void init{{suffix}}();
37 } // {{namespace}}Names
38 } // namespace blink
40 #endif