blob: cec4d6596aa9c9c2f035ed7a6e66c890ebe62295 [file] [log] [blame] [edit]
/*
* Copyright 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
cc_defaults {
name: "NeuralNetworksSampleDriver_defaults",
defaults: ["neuralnetworks_defaults"],
// b/109953668, disable OpenMP
// openmp: true,
srcs: [
"SampleDriver.cpp",
"SampleDriverFull.cpp",
"SampleDriverPartial.cpp",
"SampleDriverUtils.cpp",
],
header_libs: [
"libneuralnetworks_headers",
],
shared_libs: [
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]",
"[email protected]",
"libbase",
"libcutils",
"libdl",
"libfmq",
"libhardware",
"libhidlbase",
"libhidlmemory",
"liblog",
"libnativewindow",
"libsync",
"libtextclassifier_hash",
"libutils",
],
static_libs: [
"libneuralnetworks_common",
],
}
cc_defaults {
name: "NeuralNetworksSampleDriver_server_defaults",
defaults: ["NeuralNetworksSampleDriver_defaults"],
relative_install_path: "hw",
proprietary: true,
}
cc_binary {
name: "[email protected]",
srcs: ["SampleDriverAll.cpp"],
defaults: ["NeuralNetworksSampleDriver_server_defaults"],
init_rc: ["config/[email protected]"],
vintf_fragments: ["config/[email protected]"],
}
cc_binary {
name: "[email protected]",
srcs: ["SampleDriverFloatFast.cpp"],
defaults: ["NeuralNetworksSampleDriver_server_defaults"],
init_rc: ["config/[email protected]"],
vintf_fragments: ["config/android.hardware.neuralnetworks@1.3-service-sample-float-fast.xml"],
}
cc_binary {
name: "[email protected]",
srcs: ["SampleDriverFloatSlow.cpp"],
defaults: ["NeuralNetworksSampleDriver_server_defaults"],
init_rc: ["config/[email protected]"],
vintf_fragments: ["config/android.hardware.neuralnetworks@1.3-service-sample-float-slow.xml"],
}
cc_binary {
name: "[email protected]",
srcs: ["SampleDriverQuant.cpp"],
defaults: ["NeuralNetworksSampleDriver_server_defaults"],
init_rc: ["config/[email protected]"],
vintf_fragments: ["config/[email protected]"],
}
cc_binary {
name: "[email protected]",
srcs: ["SampleDriverMinimal.cpp"],
defaults: ["NeuralNetworksSampleDriver_server_defaults"],
init_rc: ["config/[email protected]"],
vintf_fragments: ["config/[email protected]"],
}
cc_library_static {
name: "libSampleDriver",
defaults: ["NeuralNetworksSampleDriver_defaults"],
export_include_dirs: ["."],
}