no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / toolkit / content / buildconfig.html
blob9c7ada2c83dc77b973df7da4b627602fa1d47ca1
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="color-scheme" content="light dark">
13 <meta name="viewport" content="width=device-width; user-scalable=false;">
14 <title>Build Configuration</title>
15 <link rel="stylesheet" href="chrome://global/skin/in-content/info-pages.css" type="text/css">
16 <link rel="stylesheet" href="chrome://global/content/buildconfig.css" type="text/css">
17 </head>
18 <body>
19 <div class="container">
20 <h1>Build Configuration</h1>
21 <p>Please be aware that this page doesn't reflect all the options used to build @MOZ_APP_DISPLAYNAME@.</p>
22 #ifdef MOZ_SOURCE_URL
23 <h2>Source</h2>
24 <p>Built from <a href="@MOZ_SOURCE_URL@">@MOZ_SOURCE_URL@</a></p>
25 #endif
26 <h2>Build platform</h2>
27 <table class="build-platform-table">
28 <tbody>
29 <tr>
30 <th>target</th>
31 </tr>
32 <tr>
33 <td>@target@</td>
34 </tr>
35 </tbody>
36 </table>
37 #if defined(CC) && defined(CXX) && defined(RUSTC)
38 <h2>Build tools</h2>
39 <table>
40 <tbody>
41 <tr>
42 <th>Compiler</th>
43 <th>Version</th>
44 <th>Compiler flags</th>
45 </tr>
46 <tr>
47 <td>@CC@</td>
48 <td>@CC_VERSION@</td>
49 <td>@CFLAGS@</td>
50 </tr>
51 <tr>
52 <td>@CXX@</td>
53 <td>@CC_VERSION@</td>
54 <td>@CXXFLAGS@</td>
55 </tr>
56 <tr>
57 <td>@RUSTC@</td>
58 <td>@RUSTC_VERSION@</td>
59 <td>@RUSTFLAGS@</td>
60 </tr>
61 </tbody>
62 </table>
63 #endif
64 <h2>Configure options</h2>
65 <p>@MOZ_CONFIGURE_OPTIONS@</p>
66 #ifdef ANDROID
67 <h2>Package name</h2>
68 <p>@ANDROID_PACKAGE_NAME@</p>
69 #endif
70 </div>
71 </body>
72 </html>