https://github.com/puffycid/abseil-cpp
https://github.com/puffycid/abseil-cpp
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/puffycid/abseil-cpp
- Owner: puffyCid
- License: apache-2.0
- Created: 2023-08-27T05:20:47.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-27T08:11:55.000Z (almost 2 years ago)
- Last Synced: 2025-01-22T04:41:53.835Z (5 months ago)
- Language: C++
- Size: 2.67 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.chromium
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
Name: Abseil
Short Name: absl
URL: https://github.com/abseil/abseil-cpp
License: Apache 2.0
License File: LICENSE
Version: 0
Revision: e945c8d98719d2cca66ef1f0b83696becfa6a880
Security Critical: yes
Shipped: yesDescription:
This directory contains the source code of Abseil for C++. This can be used by
Chromium, subject to the guidance at
https://chromium.googlesource.com/chromium/src/+/main/styleguide/c++/c++-features.md;
it can be used without restriction by Chromium's dependencies, except that
objects compiled into Chromium itself cannot use anything relying on
absl::base_internal::FastTypeId (see https://crbug.com/1096380).How to update Abseil:
1. From your source root run third_party/abseil-cpp/roll_abseil.py to download the code from the Abseil git repository and apply chromium specific patches.
2. Update BUILD.gn files to match changes in BUILD.bazel
If there is a new test, add dependcy on it from absl_tests in the
third_party/abseil-cpp/BUILD.gn target3. From your source root run third_party/abseil-cpp/generate_def_files.py to
regenerate Windows symbol definition files.4. If abseil adds new features, update styleguide/c++/c++-features.md and add headers for that feature into exclude list in root DEPS
Local Modifications:
* absl/copts.bzl has been translated to //third_party/absl-cpp/BUILD.gn. Both
files contain lists of compiler flags in order to reduce duplication.* All the BUILD.bazel files have been translated to BUILD.gn files.
* Patches from //third_party/abseil-cpp/patches have been applied.
* Increment this number to silence presubmits about modifying files in
third_party when regenerating absl .def files: 2