![electron-roller[bot]](/assets/img/avatar_default.png)
* chore: bump chromium in DEPS to 117.0.5929.0 * chore: bump chromium in DEPS to 117.0.5931.0 * chore: bump chromium in DEPS to 117.0.5932.0 * chore: update patches * 4728317: Prevent PrintRenderFrameHelper from printing when already printing |4728317
* 4739501: Use base::SequenceBound to manage SerialPortManagerImpl |4739501
* 4702051: Allow overriding source in install-sysroot.py |4702051
* chore: update filenames.libcxx.gni * 4727002: Rename "enable_arc2" to "enable_arc" |4727002
* chore: bump chromium in DEPS to 117.0.5934.0 * 4736873: Rename ColorSpaces methods on display::Display |4736873
* 4727203: Replace bool with an enum in as suggested in DevtoolsManagerDelegate. |4727203
* 4744479: [DevTools] Add 'generateTaggedPDF' option to DevTools Page.printToPDF |4744479
* 4735893: Don't share WebUSB permissions with webviews |4735893
* revert: update filenames.libcxx.gni * chore: bump chromium in DEPS to 117.0.5936.0 * chore: update patches * 4746465: SAA: Query for embargoed StorageAccess permissions |4746465
* 4666325: Move buildtools/third_party/lib*/trunk source paths to third_party/lib*/src. |4666325
* chore: bump chromium in DEPS to 117.0.5938.0 * chore: bump chromium in DEPS to 118.0.5939.0 * chore: update patches * Send line bounds through CursorAnchorInfo on requestCursorUpdate4394588
* Fixup lint for Move buildtools/third_party/lib*/trunk source paths to third_party/lib*/src * 4700305: [mac] Fix override of CHILD_PROCESS_EXE4700305
Needed because of 4729689: Reland "Remove redundant existence check in PathService" |4729689
* 4753759: More consistent icon handling for menus.4753759
* chore: bump chromium in DEPS to 118.0.5941.0 * chore: update patches * chore: bump chromium in DEPS to 117.0.5938.0 * test: update nan-spec-runner cflags * build: fix isystem include path in nan-spec-runner * fixup! 4666325: Move buildtools/third_party/lib*/trunk source paths to third_party/lib*/src. |4666325
fix a few more instances of the old path libc++.a and libc++abi.a are still in buildtools/ --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: VerteDinde <vertedinde@electronjs.org> Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com> Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> Co-authored-by: Charles Kerr <charles@charleskerr.com>
48 lines
1.6 KiB
JavaScript
48 lines
1.6 KiB
JavaScript
const fs = require('node:fs');
|
|
const path = require('node:path');
|
|
|
|
const check = process.argv.includes('--check');
|
|
|
|
function findAllHeaders (basePath) {
|
|
const allFiles = fs.readdirSync(basePath);
|
|
const toReturn = [];
|
|
for (const file of allFiles) {
|
|
const absPath = path.resolve(basePath, file);
|
|
if (fs.statSync(absPath).isDirectory()) {
|
|
toReturn.push(...findAllHeaders(absPath));
|
|
} else {
|
|
toReturn.push(absPath);
|
|
}
|
|
}
|
|
return toReturn;
|
|
}
|
|
|
|
for (const folder of ['libc++', 'libc++abi']) {
|
|
const prettyName = folder.replace(/\+/g, 'x');
|
|
|
|
const libcxxIncludeDir = path.resolve(__dirname, '..', '..', 'third_party', folder, 'src', 'include');
|
|
const gclientPath = `third_party/${folder}/src/include`;
|
|
|
|
const headers = findAllHeaders(libcxxIncludeDir).map(absPath => path.relative(path.resolve(__dirname, '../..', gclientPath), absPath));
|
|
|
|
const content = `${prettyName}_headers = [
|
|
${headers.map(f => `"//${path.posix.join(gclientPath, f)}"`).join(',\n ')},
|
|
]
|
|
|
|
${prettyName}_licenses = [ "//third_party/${folder}/src/LICENSE.TXT" ]
|
|
`;
|
|
|
|
const filenamesPath = path.resolve(__dirname, '..', `filenames.${prettyName}.gni`);
|
|
|
|
if (check) {
|
|
const currentContent = fs.readFileSync(filenamesPath, 'utf8');
|
|
if (currentContent !== content) {
|
|
console.log('currentContent: ', currentContent);
|
|
console.log('content: ', content);
|
|
throw new Error(`${prettyName} filenames need to be regenerated, latest generation does not match current file. Please run node gen-libc++-filenames.js`);
|
|
}
|
|
} else {
|
|
console.log(filenamesPath);
|
|
fs.writeFileSync(filenamesPath, content);
|
|
}
|
|
}
|