1/* 2 * Copyright (C) 2023 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17syntax = "proto2"; 18 19package com.android.car; 20 21option java_multiple_files = true; 22 23message CarFeatureControlDumpProto { 24 // features currently enabled 25 repeated string enabled_features = 1; 26 27 // the allowed optional features from RRO 28 repeated string default_enabled_features_from_config = 2; 29 30 // features that have been designated as disabled by the VHAL 31 repeated string disabled_features_from_vhal = 3; 32 33 // the experimental features that are available to be enabled; not available in user build 34 repeated string available_experimental_features = 4; 35 36 // features that have been requested to be enabled, but the execution hasn't finished yet 37 repeated string pending_enabled_features = 5; 38 39 // features that have been requested to be disabled, but the execution hasn't finished yet 40 repeated string pending_disabled_features = 6; 41} 42