1 // Copyright 2020 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "quiche_platform_impl/quiche_flags_impl.h" 6 7 #define QUIC_FLAG(flag, value) bool FLAGS_##flag = value; 8 #include "quiche/quic/core/quic_flags_list.h" 9 #undef QUIC_FLAG 10 11 #define QUICHE_PROTOCOL_FLAG(type, flag, value, doc) type FLAGS_##flag = value; 12 #include "quiche/common/quiche_protocol_flags_list.h" 13 #undef QUICHE_PROTOCOL_FLAG 14