• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
10 namespace variables {
11 
12 // Swift target vars -----------------------------------------------------
13 
14 extern const char kSwiftBridgeHeader[];
15 extern const char kSwiftBridgeHeader_HelpShort[];
16 extern const char kSwiftBridgeHeader_Help[];
17 
18 extern const char kSwiftModuleName[];
19 extern const char kSwiftModuleName_HelpShort[];
20 extern const char kSwiftModuleName_Help[];
21 
22 void InsertSwiftVariables(VariableInfoMap* info_map);
23 
24 }  // namespace variables
25 
26 #endif  // TOOLS_GN_SWIFT_TARGET_VARIABLES_H_
27