• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright (C) 2023 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//      http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
15
16package {
17    default_applicable_licenses: ["Android-Apache-2.0"],
18}
19
20cc_binary {
21    name: "berberis_program_runner_riscv64",
22    defaults: ["berberis_defaults_64"],
23    host_supported: true,
24    srcs: ["main.cc"],
25    header_libs: [
26        "libberberis_guest_state_headers",
27    ],
28    static_libs: [
29        "libberberis_base",
30        "libberberis_config_globals",
31        "libberberis_interpreter_riscv64",
32        "libberberis_kernel_api_riscv64",
33        "libberberis_runtime",
34        "libberberis_tinyloader",
35    ],
36    shared_libs: [
37        "libbase",
38        "liblog",
39    ],
40}
41