• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2024 The Pigweed Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not
4// use this file except in compliance with the License. You may obtain a copy of
5// the License at
6//
7//     https://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, WITHOUT
11// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12// License for the specific language governing permissions and limitations under
13// the License.
14
15package {
16    default_applicable_licenses: ["external_pigweed_license"],
17}
18
19// List of Common Android backends used by Pigweed modules.
20// Do not modify this to swap a different backend. Instead see the
21// pw_build_android documentation for how to use custom backends.
22cc_defaults {
23    name: "pw_android_common_backends",
24    cpp_std: "c++20",
25
26    // Note for maintainers:
27    // Update the common backends list in the documentation when updating this
28    // list.
29    static_libs: [
30        "pw_assert_log",
31        "pw_chrono_stl",
32        "pw_log_android",
33        "pw_sync_stl",
34        "pw_thread_stl",
35    ],
36    export_static_lib_headers: [
37        "pw_assert_log",
38        "pw_chrono_stl",
39        "pw_log_android",
40        "pw_sync_stl",
41        "pw_thread_stl",
42    ],
43    shared_libs: [
44        "liblog",
45    ],
46}
47