xref: /aosp_15_r20/external/google-fruit/extras/bazel_usage_example/WORKSPACE (revision a65addddcf69f38db5b288d787b6b7571a57bb8f)
1*a65addddSAndroid Build Coastguard Workerload("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
2*a65addddSAndroid Build Coastguard Worker
3*a65addddSAndroid Build Coastguard Workergit_repository(
4*a65addddSAndroid Build Coastguard Worker    name = "com_github_nelhage_rules_boost",
5*a65addddSAndroid Build Coastguard Worker    branch = "master",
6*a65addddSAndroid Build Coastguard Worker    remote = "https://github.com/nelhage/rules_boost",
7*a65addddSAndroid Build Coastguard Worker)
8*a65addddSAndroid Build Coastguard Worker
9*a65addddSAndroid Build Coastguard Workerload("@com_github_nelhage_rules_boost//:boost/boost.bzl", "boost_deps")
10*a65addddSAndroid Build Coastguard Workerboost_deps()
11*a65addddSAndroid Build Coastguard Worker
12*a65addddSAndroid Build Coastguard Workerload("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
13*a65addddSAndroid Build Coastguard Worker
14*a65addddSAndroid Build Coastguard Workergit_repository(
15*a65addddSAndroid Build Coastguard Worker    name = "com_google_fruit",
16*a65addddSAndroid Build Coastguard Worker    remote = "https://github.com/google/fruit",
17*a65addddSAndroid Build Coastguard Worker    branch = "master",
18*a65addddSAndroid Build Coastguard Worker    strip_prefix = "extras/bazel_root",
19*a65addddSAndroid Build Coastguard Worker)
20