mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 20:24:19 +00:00
Before setting constellation blacklist, the location report should be stopped first. Otherwise, the sv status which contains blacklist constellation is still reporting and may be counted in checking SvList. According to the comments of this case, location should be turned off as 2a step. Also adding another test that a blacklist request that comes in while tracking is started, takes effect after a stop/start cycle. Bug: 144675840 Test: on device Change-Id: I0a5030cbeeb4bbc45000157414582117d8abbae9
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
//
|
|
// Copyright (C) 2019 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_library_static {
|
|
name: "android.hardware.gnss@common-vts-lib",
|
|
vendor_available: true,
|
|
relative_install_path: "hw",
|
|
cflags: [
|
|
"-Wall",
|
|
"-Wextra",
|
|
"-Werror",
|
|
],
|
|
srcs: [
|
|
"Utils.cpp",
|
|
],
|
|
export_include_dirs: ["include"],
|
|
shared_libs: [
|
|
"android.hardware.gnss@1.0",
|
|
"android.hardware.gnss@2.0",
|
|
"android.hardware.gnss.measurement_corrections@1.0",
|
|
"android.hardware.gnss.measurement_corrections@1.1",
|
|
],
|
|
static_libs: [
|
|
"libgtest",
|
|
],
|
|
}
|