Skip to content

Commit a70164d

Browse files
committed
[bazel] Update platform const locations
Signed-off-by: James Wainwright <[email protected]> (cherry picked from commit f0dac6d)
1 parent a20e58b commit a70164d

File tree

20 files changed

+22
-20
lines changed

20 files changed

+22
-20
lines changed

rules/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
33
# SPDX-License-Identifier: Apache-2.0
44

5-
load("//rules:opentitan.bzl", "OPENTITAN_PLATFORM")
5+
load("//rules/opentitan:defs.bzl", "OPENTITAN_PLATFORM")
66
load("//rules:stamp.bzl", "stamp_flag")
77
load("//rules:autogen.bzl", "autogen_stamp_include")
88

sw/device/examples/hello_usbdev/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: Apache-2.0
44

55
load("//rules/opentitan:defs.bzl", "opentitan_binary")
6-
load("//rules:opentitan.bzl", "OPENTITAN_CPU")
6+
load("//rules/opentitan:defs.bzl", "OPENTITAN_CPU")
77

88
opentitan_binary(
99
name = "hello_usbdev",

sw/device/examples/teacup_demos/data/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
33
# SPDX-License-Identifier: Apache-2.0
44

5-
load("//rules:opentitan.bzl", "OPENTITAN_CPU")
5+
load("//rules/opentitan:defs.bzl", "OPENTITAN_CPU")
66

77
package(default_visibility = ["//visibility:public"])
88

sw/device/lib/crt/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
package(default_visibility = ["//visibility:public"])
66

7-
load("//rules:opentitan.bzl", "OPENTITAN_CPU")
7+
load("//rules/opentitan:defs.bzl", "OPENTITAN_CPU")
88

99
cc_library(
1010
name = "crt",

sw/device/lib/crypto/drivers/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
package(default_visibility = ["//visibility:public"])
66

7-
load("//rules:opentitan.bzl", "OPENTITAN_CPU")
7+
load("//rules/opentitan:defs.bzl", "OPENTITAN_CPU")
88
load(
99
"//rules/opentitan:defs.bzl",
1010
"EARLGREY_TEST_ENVS",

sw/device/lib/crypto/impl/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
package(default_visibility = ["//visibility:public"])
66

7-
load("//rules:opentitan.bzl", "OPENTITAN_CPU")
7+
load("//rules/opentitan:defs.bzl", "OPENTITAN_CPU")
88

99
config_setting(
1010
name = "crypto_status_debug",

sw/device/lib/crypto/impl/ecc/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
package(default_visibility = ["//visibility:public"])
66

7-
load("//rules:opentitan.bzl", "OPENTITAN_CPU")
7+
load("//rules/opentitan:defs.bzl", "OPENTITAN_CPU")
88

99
cc_library(
1010
name = "p256",

sw/device/lib/crypto/impl/rsa/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
package(default_visibility = ["//visibility:public"])
66

7-
load("//rules:opentitan.bzl", "OPENTITAN_CPU")
7+
load("//rules/opentitan:defs.bzl", "OPENTITAN_CPU")
88

99
cc_library(
1010
name = "rsa_datatypes",

sw/device/lib/crypto/impl/sha2/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
package(default_visibility = ["//visibility:public"])
66

7-
load("//rules:opentitan.bzl", "OPENTITAN_CPU")
7+
load("//rules/opentitan:defs.bzl", "OPENTITAN_CPU")
88

99
cc_library(
1010
name = "sha256",

sw/device/lib/runtime/BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
33
# SPDX-License-Identifier: Apache-2.0
44

5-
load("//rules:opentitan.bzl", "OPENTITAN_CPU")
5+
load("//rules/opentitan:defs.bzl", "OPENTITAN_CPU")
66
load("//rules:cross_platform.bzl", "dual_cc_library", "dual_inputs")
77

88
package(default_visibility = ["//visibility:public"])

0 commit comments

Comments
 (0)