aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornickreid <nickreid@google.com>2023-01-31 16:24:14 -0800
committerCopybara-Service <copybara-worker@google.com>2023-01-31 16:24:46 -0800
commit75ad32977c3e7bedccba78ca312482cf613a55c5 (patch)
tree20f09a141798da982a38510b342a26ceb49116cd
parent11b0d6a326ba40315a8952af843d7ac7fae4df74 (diff)
downloadbazelbuild-kotlin-rules-75ad32977c3e7bedccba78ca312482cf613a55c5.tar.gz
Delete unused file dex_aspects.bzl
PiperOrigin-RevId: 506148873 Change-Id: I83bcf042d277b2506f062f932deabefe57581fcb
-rw-r--r--kotlin/dex_aspects.bzl36
1 files changed, 0 insertions, 36 deletions
diff --git a/kotlin/dex_aspects.bzl b/kotlin/dex_aspects.bzl
deleted file mode 100644
index 3d2730b..0000000
--- a/kotlin/dex_aspects.bzl
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2022 Google LLC. All rights reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the License);
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-"""kt_dex_aspects"""
-
-# (b/259111128) Magic provider to get DexArchiveAspect to traverse into this rule
-_TraverseMeInfo = platform_common.ToolchainInfo
-
-_EXTRA_DEPS_ATTRS = dict(
- _build_stamp_deps = attr.label_list(
- doc = """
- (b/259111128) Magic attr to get DexArchiveAspect to traverse into this rule
- """,
- ),
-)
-
-def _set_extra_deps_attrs(deps):
- return {"$build_stamp_deps": deps}
-
-kt_dex_aspects = struct(
- TraverseMeInfo = _TraverseMeInfo,
- TRAVERSE_ME_INFO = _TraverseMeInfo(),
- extra_deps_attrs = _EXTRA_DEPS_ATTRS,
- set_extra_deps_attrs = _set_extra_deps_attrs,
-)