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#ifndef TOOLS_GN_SWIFT_TARGET_VARIABLES_H_ 6#define TOOLS_GN_SWIFT_TARGET_VARIABLES_H_ 7 8#include "gn/variables.h" 9 10namespace variables { 11 12// Swift target vars ----------------------------------------------------- 13 14extern const char kSwiftBridgeHeader[]; 15extern const char kSwiftBridgeHeader_HelpShort[]; 16extern const char kSwiftBridgeHeader_Help[]; 17 18extern const char kSwiftModuleName[]; 19extern const char kSwiftModuleName_HelpShort[]; 20extern const char kSwiftModuleName_Help[]; 21 22void InsertSwiftVariables(VariableInfoMap* info_map); 23 24} // namespace variables 25 26#endif // TOOLS_GN_SWIFT_TARGET_VARIABLES_H_ 27