36 lines
878 B
Plaintext
36 lines
878 B
Plaintext
//
|
|
// SPDX-FileCopyrightText: 2021 The Android Open Source Project
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
soong_namespace {
|
|
imports: [
|
|
"hardware/google/pixel",
|
|
"device/google/gs101/powerstats",
|
|
]
|
|
}
|
|
|
|
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "//device/google/bluejay:device_google_bluejay_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: [
|
|
"//device/google/bluejay:device_google_bluejay_license",
|
|
],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "android.hardware.power.stats-service.pixel",
|
|
defaults: ["powerstats_pixel_binary_defaults"],
|
|
|
|
srcs: [
|
|
"*.cpp",
|
|
],
|
|
|
|
shared_libs: [
|
|
"android.hardware.power.stats-impl.gs101",
|
|
],
|
|
}
|