// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef PARTITION_ALLOC_BUILDFLAG_H_ #define PARTITION_ALLOC_BUILDFLAG_H_ // This was copied from chromium's and adapted to partition_alloc. // Please refer to chromium's //build/buildflag.h original comments. // // Using a different macro and internal define allows partition_alloc and // chromium to cohabit without affecting each other. #define PA_BUILDFLAG_CAT_INDIRECT(a, b) … #define PA_BUILDFLAG_CAT(a, b) … #define PA_BUILDFLAG(flag) … #endif // PARTITION_ALLOC_BUILDFLAG_H_