Chrome Release Bot (LUCI) 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
..
closure 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
closure-deps 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
doc 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
scripts 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
third_party 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
.gitignore 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
.npmignore 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
.travis.yml 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
AUTHORS 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
CONTRIBUTING 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
LICENSE 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
OWNERS 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
README.chromium 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
README.md 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
WORKSPACE 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
all_tests.html 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
alltests.html 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
alltests.js 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
browser_capabilities.js 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
package.json 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
protractor.conf.js 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
protractor_spec.js 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
roll_it.sh 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago
sauce_browsers.json 4762b62e7d Publish DEPS for 106.0.5249.13 1 year ago

README.chromium

Name: Google Closure Library
Short Name: closure-library
URL: https://github.com/google/closure-library
Version: 20210907.0.0
Date: 2021-09-28
Revision: 54209b6f5453f16037658807b13b8088352d1af6
License: Apache 2.0
License File: LICENSE
Security Critical: No
CPEPrefix: cpe:/a:google:closure_library:20191111

Description:
Google Closure Library is Google's common JavaScript library. It is used in
Chromium to allow protocol buffers to be serialized/deserialized in JavaScript.

Local Modifications:
None

Roll Instructions:
This repo is kept in the main chromium/src repo, so there is no DEPS entry for
it. To roll:

# Where you keep chromium.
CHROMIUM_SRC=/path/to/your/chromium/src
# Temporary directory to check out the closure-library
cd /tmp/closure

# Note that the name is closure-library here, but google-closure-library in
# the chromium tree.
git clone https://github.com/google/closure-library.git
cd closure-library
tar cvf - . |(cd ${CHROMIUM_SRC}/third_party/google-closure-library && tar xvf -)
cd ${CHROMIUM_SRC}/third_party/google-closure-library
# or exclude these while copying.
rm -rf .git .github

# Update Version / date in README.chromium
vim README.chromium

git add -u
git commit -m "Some snappy commit message"
git cl upload
git cl try
# Review and land.
echo If you get errors about unknown deps, please add them to:
echo third_party/protobuf/BUILD.gn
echo Congratulations on rolling closure-libary.