Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abseil-cpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
abseil-cpp
Commits
22f482f0
Unverified
Commit
22f482f0
authored
Oct 14, 2021
by
Vertexwahn
Committed by
GitHub
Oct 14, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove bazelbuild/rules_cc dependency (#1038)
parent
d6f40f4e
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
0 additions
and
30 deletions
+0
-30
WORKSPACE
+0
-8
absl/algorithm/BUILD.bazel
+0
-1
absl/base/BUILD.bazel
+0
-1
absl/cleanup/BUILD.bazel
+0
-1
absl/container/BUILD.bazel
+0
-1
absl/debugging/BUILD.bazel
+0
-1
absl/flags/BUILD.bazel
+0
-1
absl/functional/BUILD.bazel
+0
-1
absl/hash/BUILD.bazel
+0
-1
absl/memory/BUILD.bazel
+0
-1
absl/meta/BUILD.bazel
+0
-1
absl/numeric/BUILD.bazel
+0
-1
absl/random/BUILD.bazel
+0
-1
absl/random/internal/BUILD.bazel
+0
-2
absl/status/BUILD.bazel
+0
-1
absl/strings/BUILD.bazel
+0
-1
absl/synchronization/BUILD.bazel
+0
-1
absl/time/BUILD.bazel
+0
-1
absl/time/internal/cctz/BUILD.bazel
+0
-2
absl/types/BUILD.bazel
+0
-1
absl/utility/BUILD.bazel
+0
-1
No files found.
WORKSPACE
View file @
22f482f0
...
@@ -35,14 +35,6 @@ http_archive(
...
@@ -35,14 +35,6 @@ http_archive(
urls = ["https://github.com/google/benchmark/archive/0baacde3618ca617da95375e0af13ce1baadea47.zip"],
urls = ["https://github.com/google/benchmark/archive/0baacde3618ca617da95375e0af13ce1baadea47.zip"],
)
)
# C++ rules for Bazel.
http_archive(
name = "rules_cc", # 2021-06-07T16:41:49Z
sha256 = "b295cad8c5899e371dde175079c0a2cdc0151f5127acc92366a8c986beb95c76",
strip_prefix = "rules_cc-daf6ace7cfeacd6a83e9ff2ed659f416537b6c74",
urls = ["https://github.com/bazelbuild/rules_cc/archive/daf6ace7cfeacd6a83e9ff2ed659f416537b6c74.zip"],
)
# Bazel platform rules.
# Bazel platform rules.
http_archive(
http_archive(
name = "platforms",
name = "platforms",
...
...
absl/algorithm/BUILD.bazel
View file @
22f482f0
...
@@ -14,7 +14,6 @@
...
@@ -14,7 +14,6 @@
# limitations under the License.
# limitations under the License.
#
#
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/base/BUILD.bazel
View file @
22f482f0
...
@@ -14,7 +14,6 @@
...
@@ -14,7 +14,6 @@
# limitations under the License.
# limitations under the License.
#
#
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/cleanup/BUILD.bazel
View file @
22f482f0
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/container/BUILD.bazel
View file @
22f482f0
...
@@ -14,7 +14,6 @@
...
@@ -14,7 +14,6 @@
# limitations under the License.
# limitations under the License.
#
#
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/debugging/BUILD.bazel
View file @
22f482f0
...
@@ -14,7 +14,6 @@
...
@@ -14,7 +14,6 @@
# limitations under the License.
# limitations under the License.
#
#
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/flags/BUILD.bazel
View file @
22f482f0
...
@@ -14,7 +14,6 @@
...
@@ -14,7 +14,6 @@
# limitations under the License.
# limitations under the License.
#
#
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/functional/BUILD.bazel
View file @
22f482f0
...
@@ -14,7 +14,6 @@
...
@@ -14,7 +14,6 @@
# limitations under the License.
# limitations under the License.
#
#
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/hash/BUILD.bazel
View file @
22f482f0
...
@@ -14,7 +14,6 @@
...
@@ -14,7 +14,6 @@
# limitations under the License.
# limitations under the License.
#
#
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/memory/BUILD.bazel
View file @
22f482f0
...
@@ -14,7 +14,6 @@
...
@@ -14,7 +14,6 @@
# limitations under the License.
# limitations under the License.
#
#
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/meta/BUILD.bazel
View file @
22f482f0
...
@@ -14,7 +14,6 @@
...
@@ -14,7 +14,6 @@
# limitations under the License.
# limitations under the License.
#
#
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/numeric/BUILD.bazel
View file @
22f482f0
...
@@ -12,7 +12,6 @@
...
@@ -12,7 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/random/BUILD.bazel
View file @
22f482f0
...
@@ -16,7 +16,6 @@
...
@@ -16,7 +16,6 @@
# ABSL random-number generation libraries.
# ABSL random-number generation libraries.
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/random/internal/BUILD.bazel
View file @
22f482f0
...
@@ -14,8 +14,6 @@
...
@@ -14,8 +14,6 @@
# limitations under the License.
# limitations under the License.
#
#
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library", "cc_test")
# Internal-only implementation classes for Abseil Random
# Internal-only implementation classes for Abseil Random
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
...
...
absl/status/BUILD.bazel
View file @
22f482f0
...
@@ -17,7 +17,6 @@
...
@@ -17,7 +17,6 @@
# It will expand later to have utilities around `Status` like `StatusOr`,
# It will expand later to have utilities around `Status` like `StatusOr`,
# `StatusBuilder` and macros.
# `StatusBuilder` and macros.
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/strings/BUILD.bazel
View file @
22f482f0
...
@@ -13,7 +13,6 @@
...
@@ -13,7 +13,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/synchronization/BUILD.bazel
View file @
22f482f0
...
@@ -14,7 +14,6 @@
...
@@ -14,7 +14,6 @@
# limitations under the License.
# limitations under the License.
#
#
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/time/BUILD.bazel
View file @
22f482f0
...
@@ -14,7 +14,6 @@
...
@@ -14,7 +14,6 @@
# limitations under the License.
# limitations under the License.
#
#
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/time/internal/cctz/BUILD.bazel
View file @
22f482f0
...
@@ -12,8 +12,6 @@
...
@@ -12,8 +12,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
package(features = ["-parse_headers"])
package(features = ["-parse_headers"])
licenses(["notice"])
licenses(["notice"])
...
...
absl/types/BUILD.bazel
View file @
22f482f0
...
@@ -13,7 +13,6 @@
...
@@ -13,7 +13,6 @@
# See the License for the specific language governing permissions and
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
absl/utility/BUILD.bazel
View file @
22f482f0
...
@@ -14,7 +14,6 @@
...
@@ -14,7 +14,6 @@
# limitations under the License.
# limitations under the License.
#
#
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
load(
load(
"//absl:copts/configure_copts.bzl",
"//absl:copts/configure_copts.bzl",
"ABSL_DEFAULT_COPTS",
"ABSL_DEFAULT_COPTS",
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment