• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "device_google_fuchsia_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    //   SPDX-license-identifier-BSD
8    //   SPDX-license-identifier-MIT
9    default_applicable_licenses: ["device_google_fuchsia_license"],
10}
11
12cc_library {
13    name: "libbioniccompat",
14    local_include_dirs: [
15        "include",
16    ],
17    export_include_dirs: [
18        "include",
19    ],
20    stl: "none",
21    target: {
22        fuchsia: {
23            srcs: [ "src/*.cc" ],
24        },
25    },
26}
27