There is no any benefit from build PSST as a component. Static library with access restriction to the internal staff, is better approach for that. Resolves: https://github.com/brave/brave-browser/issues/47930 --------- Signed-off-by: Vadym Struts <vstruts@brave.com>
18 lines
545 B
C++
18 lines
545 B
C++
// Copyright (c) 2023 The Brave Authors. All rights reserved.
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
#ifndef BRAVE_COMPONENTS_PSST_COMMON_FEATURES_H_
|
|
#define BRAVE_COMPONENTS_PSST_COMMON_FEATURES_H_
|
|
|
|
#include "base/feature_list.h"
|
|
|
|
namespace psst::features {
|
|
|
|
BASE_DECLARE_FEATURE(kEnablePsst);
|
|
|
|
} // namespace psst::features
|
|
|
|
#endif // BRAVE_COMPONENTS_PSST_COMMON_FEATURES_H_
|