Files
vadims 88d8c405d5 Convert the PSST to static libary
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>
2025-07-28 22:43:53 +02:00

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_