mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
* Revert "Reporting cookies (#24177)"
This reverts commit 9f4ec18000
.
* Take 2
* Adding comment
* Better escaping and encoding for use in eval
* Checking for an empty string also
* Fixing session test
31 lines
1.2 KiB
JavaScript
31 lines
1.2 KiB
JavaScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License;
|
|
* you may not use this file except in compliance with the Elastic License.
|
|
*/
|
|
|
|
import path from 'path';
|
|
|
|
export const paths = {
|
|
archivesPath: path.resolve(__dirname, '../../../.chromium'),
|
|
baseUrl: 'https://s3.amazonaws.com/headless-shell/',
|
|
packages: [{
|
|
platforms: ['darwin', 'freebsd', 'openbsd'],
|
|
archiveFilename: 'chromium-04c5a83-darwin.zip',
|
|
archiveChecksum: '89a98bfa6454bec550f196232d1faeb3',
|
|
rawChecksum: '413bbd646a4862a136bc0852ab6f41c5',
|
|
binaryRelativePath: 'headless_shell-darwin/headless_shell',
|
|
}, {
|
|
platforms: ['linux'],
|
|
archiveFilename: 'chromium-04c5a83-linux.zip',
|
|
archiveChecksum: '1339f6d57b6039445647dcdc949ba513',
|
|
rawChecksum: '4824710dd8f3da9d9e2c0674a771008b',
|
|
binaryRelativePath: 'headless_shell-linux/headless_shell'
|
|
}, {
|
|
platforms: ['win32'],
|
|
archiveFilename: 'chromium-04c5a83-windows.zip',
|
|
archiveChecksum: '3b3279b59ebf03db676baeb7b7ab5c24',
|
|
rawChecksum: '724011f9acf872c9472c82c6f7981178',
|
|
binaryRelativePath: 'headless_shell-windows\\headless_shell.exe'
|
|
}]
|
|
};
|