Bug 1608150 [wpt PR 21112] - Add missing space in `./wpt lint` command line docs...
[gecko.git] / toolkit / content / buildconfig.html
blob5e7e77bc6167ee79cdd7bc9bff32d3bcab3768ed
1 <!DOCTYPE html>
2 # This Source Code Form is subject to the terms of the Mozilla Public
3 # License, v. 2.0. If a copy of the MPL was not distributed with this
4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 #filter substitution
7 #include @TOPOBJDIR@/source-repo.h
8 <html>
9 <head>
10 <meta http-equiv="Content-Security-Policy" content="default-src 'none'; style-src chrome:; object-src 'none'" />
11 <meta charset="UTF-8">
12 <meta name="viewport" content="width=device-width; user-scalable=false;">
13 <title>Build Configuration</title>
14 <link rel="stylesheet" href="chrome://global/skin/about.css" type="text/css">
15 <link rel="stylesheet" href="chrome://global/content/buildconfig.css" type="text/css">
16 </head>
17 <body class="aboutPageWideContainer">
18 <h1>Build Configuration</h1>
19 #ifdef MOZ_SOURCE_URL
20 <h2>Source</h2>
21 <p>Built from <a href="@MOZ_SOURCE_URL@">@MOZ_SOURCE_URL@</a></p>
22 #endif
23 <h2>Build platform</h2>
24 <table>
25 <tbody>
26 <tr>
27 <th>target</th>
28 </tr>
29 <tr>
30 <td>@target@</td>
31 </tr>
32 </tbody>
33 </table>
34 #if defined(CC) && defined(CXX) && defined(RUSTC)
35 <h2>Build tools</h2>
36 <table>
37 <tbody>
38 <tr>
39 <th>Compiler</th>
40 <th>Version</th>
41 <th>Compiler flags</th>
42 </tr>
43 <tr>
44 <td>@CC@</td>
45 <td>@CC_VERSION@</td>
46 <td>@CFLAGS@</td>
47 </tr>
48 <tr>
49 <td>@CXX@</td>
50 <td>@CC_VERSION@</td>
51 <td>@CXXFLAGS@</td>
52 </tr>
53 <tr>
54 <td>@RUSTC@</td>
55 <td>@RUSTC_VERSION@</td>
56 <td>@RUSTFLAGS@</td>
57 </tr>
58 </tbody>
59 </table>
60 #endif
61 <h2>Configure options</h2>
62 <p>@MOZ_CONFIGURE_OPTIONS@</p>
63 #ifdef ANDROID
64 <h2>Package name</h2>
65 <p>@ANDROID_PACKAGE_NAME@</p>
66 #endif
67 </body>
68 </html>