casbin-async-django-orm-adapter 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. async_casbin_adapter/__init__.py +0 -0
  2. async_casbin_adapter/adapter.py +100 -0
  3. async_casbin_adapter/apps.py +24 -0
  4. async_casbin_adapter/enforcer.py +81 -0
  5. async_casbin_adapter/migrations/0001_initial.py +37 -0
  6. async_casbin_adapter/migrations/__init__.py +0 -0
  7. async_casbin_adapter/models.py +48 -0
  8. async_casbin_adapter/utils.py +25 -0
  9. casbin_async_django_orm_adapter-1.0.0.dist-info/METADATA +116 -0
  10. casbin_async_django_orm_adapter-1.0.0.dist-info/RECORD +74 -0
  11. casbin_async_django_orm_adapter-1.0.0.dist-info/WHEEL +5 -0
  12. casbin_async_django_orm_adapter-1.0.0.dist-info/licenses/LICENSE +201 -0
  13. casbin_async_django_orm_adapter-1.0.0.dist-info/top_level.txt +3 -0
  14. node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py +45 -0
  15. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +365 -0
  16. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +206 -0
  17. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +1272 -0
  18. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +1547 -0
  19. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +59 -0
  20. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +152 -0
  21. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +270 -0
  22. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +574 -0
  23. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +704 -0
  24. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py +709 -0
  25. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +173 -0
  26. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +169 -0
  27. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +113 -0
  28. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +55 -0
  29. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
  30. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +805 -0
  31. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +1172 -0
  32. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +1319 -0
  33. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py +128 -0
  34. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py +104 -0
  35. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +462 -0
  36. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +89 -0
  37. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +56 -0
  38. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +2745 -0
  39. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +3976 -0
  40. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +44 -0
  41. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2965 -0
  42. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +67 -0
  43. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +1391 -0
  44. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +26 -0
  45. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py +3112 -0
  46. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +99 -0
  47. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +767 -0
  48. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1260 -0
  49. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +174 -0
  50. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +61 -0
  51. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +373 -0
  52. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +1939 -0
  53. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation_test.py +54 -0
  54. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py +303 -0
  55. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +3196 -0
  56. node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +65 -0
  57. node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/__init__.py +15 -0
  58. node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py +108 -0
  59. node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py +252 -0
  60. node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py +83 -0
  61. node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_parser.py +359 -0
  62. node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_structures.py +61 -0
  63. node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py +192 -0
  64. node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/markers.py +252 -0
  65. node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +825 -0
  66. node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/py.typed +0 -0
  67. node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/requirements.py +90 -0
  68. node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py +1030 -0
  69. node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/tags.py +553 -0
  70. node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/utils.py +172 -0
  71. node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/version.py +563 -0
  72. node_modules/npm/node_modules/node-gyp/gyp/test_gyp.py +261 -0
  73. node_modules/semantic-release-pypi/dist/py/set_version.py +32 -0
  74. node_modules/semantic-release-pypi/dist/py/verify_setup.py +24 -0
@@ -0,0 +1,59 @@
1
+ # Copyright (c) 2012 Google Inc. 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
+ """Visual Studio project reader/writer."""
6
+
7
+ from gyp import easy_xml
8
+
9
+
10
+ class Writer:
11
+ """Visual Studio XML tool file writer."""
12
+
13
+ def __init__(self, tool_file_path, name):
14
+ """Initializes the tool file.
15
+
16
+ Args:
17
+ tool_file_path: Path to the tool file.
18
+ name: Name of the tool file.
19
+ """
20
+ self.tool_file_path = tool_file_path
21
+ self.name = name
22
+ self.rules_section = ["Rules"]
23
+
24
+ def AddCustomBuildRule(
25
+ self, name, cmd, description, additional_dependencies, outputs, extensions
26
+ ):
27
+ """Adds a rule to the tool file.
28
+
29
+ Args:
30
+ name: Name of the rule.
31
+ description: Description of the rule.
32
+ cmd: Command line of the rule.
33
+ additional_dependencies: other files which may trigger the rule.
34
+ outputs: outputs of the rule.
35
+ extensions: extensions handled by the rule.
36
+ """
37
+ rule = [
38
+ "CustomBuildRule",
39
+ {
40
+ "Name": name,
41
+ "ExecutionDescription": description,
42
+ "CommandLine": cmd,
43
+ "Outputs": ";".join(outputs),
44
+ "FileExtensions": ";".join(extensions),
45
+ "AdditionalDependencies": ";".join(additional_dependencies),
46
+ },
47
+ ]
48
+ self.rules_section.append(rule)
49
+
50
+ def WriteIfChanged(self):
51
+ """Writes the tool file."""
52
+ content = [
53
+ "VisualStudioToolFile",
54
+ {"Version": "8.00", "Name": self.name},
55
+ self.rules_section,
56
+ ]
57
+ easy_xml.WriteXmlIfChanged(
58
+ content, self.tool_file_path, encoding="Windows-1252"
59
+ )
@@ -0,0 +1,152 @@
1
+ # Copyright (c) 2012 Google Inc. 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
+ """Visual Studio user preferences file writer."""
6
+
7
+ import os
8
+ import re
9
+ import socket # for gethostname
10
+
11
+ from gyp import easy_xml
12
+
13
+ # ------------------------------------------------------------------------------
14
+
15
+
16
+ def _FindCommandInPath(command):
17
+ """If there are no slashes in the command given, this function
18
+ searches the PATH env to find the given command, and converts it
19
+ to an absolute path. We have to do this because MSVS is looking
20
+ for an actual file to launch a debugger on, not just a command
21
+ line. Note that this happens at GYP time, so anything needing to
22
+ be built needs to have a full path."""
23
+ if "/" in command or "\\" in command:
24
+ # If the command already has path elements (either relative or
25
+ # absolute), then assume it is constructed properly.
26
+ return command
27
+ else:
28
+ # Search through the path list and find an existing file that
29
+ # we can access.
30
+ paths = os.environ.get("PATH", "").split(os.pathsep)
31
+ for path in paths:
32
+ item = os.path.join(path, command)
33
+ if os.path.isfile(item) and os.access(item, os.X_OK):
34
+ return item
35
+ return command
36
+
37
+
38
+ def _QuoteWin32CommandLineArgs(args):
39
+ new_args = []
40
+ for arg in args:
41
+ # Replace all double-quotes with double-double-quotes to escape
42
+ # them for cmd shell, and then quote the whole thing if there
43
+ # are any.
44
+ if arg.find('"') != -1:
45
+ arg = '""'.join(arg.split('"'))
46
+ arg = '"%s"' % arg
47
+
48
+ # Otherwise, if there are any spaces, quote the whole arg.
49
+ elif re.search(r"[ \t\n]", arg):
50
+ arg = '"%s"' % arg
51
+ new_args.append(arg)
52
+ return new_args
53
+
54
+
55
+ class Writer:
56
+ """Visual Studio XML user user file writer."""
57
+
58
+ def __init__(self, user_file_path, version, name):
59
+ """Initializes the user file.
60
+
61
+ Args:
62
+ user_file_path: Path to the user file.
63
+ version: Version info.
64
+ name: Name of the user file.
65
+ """
66
+ self.user_file_path = user_file_path
67
+ self.version = version
68
+ self.name = name
69
+ self.configurations = {}
70
+
71
+ def AddConfig(self, name):
72
+ """Adds a configuration to the project.
73
+
74
+ Args:
75
+ name: Configuration name.
76
+ """
77
+ self.configurations[name] = ["Configuration", {"Name": name}]
78
+
79
+ def AddDebugSettings(
80
+ self, config_name, command, environment={}, working_directory=""
81
+ ):
82
+ """Adds a DebugSettings node to the user file for a particular config.
83
+
84
+ Args:
85
+ command: command line to run. First element in the list is the
86
+ executable. All elements of the command will be quoted if
87
+ necessary.
88
+ working_directory: other files which may trigger the rule. (optional)
89
+ """
90
+ command = _QuoteWin32CommandLineArgs(command)
91
+
92
+ abs_command = _FindCommandInPath(command[0])
93
+
94
+ if environment and isinstance(environment, dict):
95
+ env_list = [f'{key}="{val}"' for (key, val) in environment.items()]
96
+ environment = " ".join(env_list)
97
+ else:
98
+ environment = ""
99
+
100
+ n_cmd = [
101
+ "DebugSettings",
102
+ {
103
+ "Command": abs_command,
104
+ "WorkingDirectory": working_directory,
105
+ "CommandArguments": " ".join(command[1:]),
106
+ "RemoteMachine": socket.gethostname(),
107
+ "Environment": environment,
108
+ "EnvironmentMerge": "true",
109
+ # Currently these are all "dummy" values that we're just setting
110
+ # in the default manner that MSVS does it. We could use some of
111
+ # these to add additional capabilities, I suppose, but they might
112
+ # not have parity with other platforms then.
113
+ "Attach": "false",
114
+ "DebuggerType": "3", # 'auto' debugger
115
+ "Remote": "1",
116
+ "RemoteCommand": "",
117
+ "HttpUrl": "",
118
+ "PDBPath": "",
119
+ "SQLDebugging": "",
120
+ "DebuggerFlavor": "0",
121
+ "MPIRunCommand": "",
122
+ "MPIRunArguments": "",
123
+ "MPIRunWorkingDirectory": "",
124
+ "ApplicationCommand": "",
125
+ "ApplicationArguments": "",
126
+ "ShimCommand": "",
127
+ "MPIAcceptMode": "",
128
+ "MPIAcceptFilter": "",
129
+ },
130
+ ]
131
+
132
+ # Find the config, and add it if it doesn't exist.
133
+ if config_name not in self.configurations:
134
+ self.AddConfig(config_name)
135
+
136
+ # Add the DebugSettings onto the appropriate config.
137
+ self.configurations[config_name].append(n_cmd)
138
+
139
+ def WriteIfChanged(self):
140
+ """Writes the user file."""
141
+ configs = ["Configurations"]
142
+ for config, spec in sorted(self.configurations.items()):
143
+ configs.append(spec)
144
+
145
+ content = [
146
+ "VisualStudioUserFile",
147
+ {"Version": self.version.ProjectVersion(), "Name": self.name},
148
+ configs,
149
+ ]
150
+ easy_xml.WriteXmlIfChanged(
151
+ content, self.user_file_path, encoding="Windows-1252"
152
+ )
@@ -0,0 +1,270 @@
1
+ # Copyright (c) 2013 Google Inc. 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
+ """Utility functions shared amongst the Windows generators."""
6
+
7
+ import copy
8
+ import os
9
+
10
+ # A dictionary mapping supported target types to extensions.
11
+ TARGET_TYPE_EXT = {
12
+ "executable": "exe",
13
+ "loadable_module": "dll",
14
+ "shared_library": "dll",
15
+ "static_library": "lib",
16
+ "windows_driver": "sys",
17
+ }
18
+
19
+
20
+ def _GetLargePdbShimCcPath():
21
+ """Returns the path of the large_pdb_shim.cc file."""
22
+ this_dir = os.path.abspath(os.path.dirname(__file__))
23
+ src_dir = os.path.abspath(os.path.join(this_dir, "..", ".."))
24
+ win_data_dir = os.path.join(src_dir, "data", "win")
25
+ large_pdb_shim_cc = os.path.join(win_data_dir, "large-pdb-shim.cc")
26
+ return large_pdb_shim_cc
27
+
28
+
29
+ def _DeepCopySomeKeys(in_dict, keys):
30
+ """Performs a partial deep-copy on |in_dict|, only copying the keys in |keys|.
31
+
32
+ Arguments:
33
+ in_dict: The dictionary to copy.
34
+ keys: The keys to be copied. If a key is in this list and doesn't exist in
35
+ |in_dict| this is not an error.
36
+ Returns:
37
+ The partially deep-copied dictionary.
38
+ """
39
+ d = {}
40
+ for key in keys:
41
+ if key not in in_dict:
42
+ continue
43
+ d[key] = copy.deepcopy(in_dict[key])
44
+ return d
45
+
46
+
47
+ def _SuffixName(name, suffix):
48
+ """Add a suffix to the end of a target.
49
+
50
+ Arguments:
51
+ name: name of the target (foo#target)
52
+ suffix: the suffix to be added
53
+ Returns:
54
+ Target name with suffix added (foo_suffix#target)
55
+ """
56
+ parts = name.rsplit("#", 1)
57
+ parts[0] = f"{parts[0]}_{suffix}"
58
+ return "#".join(parts)
59
+
60
+
61
+ def _ShardName(name, number):
62
+ """Add a shard number to the end of a target.
63
+
64
+ Arguments:
65
+ name: name of the target (foo#target)
66
+ number: shard number
67
+ Returns:
68
+ Target name with shard added (foo_1#target)
69
+ """
70
+ return _SuffixName(name, str(number))
71
+
72
+
73
+ def ShardTargets(target_list, target_dicts):
74
+ """Shard some targets apart to work around the linkers limits.
75
+
76
+ Arguments:
77
+ target_list: List of target pairs: 'base/base.gyp:base'.
78
+ target_dicts: Dict of target properties keyed on target pair.
79
+ Returns:
80
+ Tuple of the new sharded versions of the inputs.
81
+ """
82
+ # Gather the targets to shard, and how many pieces.
83
+ targets_to_shard = {}
84
+ for t in target_dicts:
85
+ shards = int(target_dicts[t].get("msvs_shard", 0))
86
+ if shards:
87
+ targets_to_shard[t] = shards
88
+ # Shard target_list.
89
+ new_target_list = []
90
+ for t in target_list:
91
+ if t in targets_to_shard:
92
+ for i in range(targets_to_shard[t]):
93
+ new_target_list.append(_ShardName(t, i))
94
+ else:
95
+ new_target_list.append(t)
96
+ # Shard target_dict.
97
+ new_target_dicts = {}
98
+ for t in target_dicts:
99
+ if t in targets_to_shard:
100
+ for i in range(targets_to_shard[t]):
101
+ name = _ShardName(t, i)
102
+ new_target_dicts[name] = copy.copy(target_dicts[t])
103
+ new_target_dicts[name]["target_name"] = _ShardName(
104
+ new_target_dicts[name]["target_name"], i
105
+ )
106
+ sources = new_target_dicts[name].get("sources", [])
107
+ new_sources = []
108
+ for pos in range(i, len(sources), targets_to_shard[t]):
109
+ new_sources.append(sources[pos])
110
+ new_target_dicts[name]["sources"] = new_sources
111
+ else:
112
+ new_target_dicts[t] = target_dicts[t]
113
+ # Shard dependencies.
114
+ for t in sorted(new_target_dicts):
115
+ for deptype in ("dependencies", "dependencies_original"):
116
+ dependencies = copy.copy(new_target_dicts[t].get(deptype, []))
117
+ new_dependencies = []
118
+ for d in dependencies:
119
+ if d in targets_to_shard:
120
+ for i in range(targets_to_shard[d]):
121
+ new_dependencies.append(_ShardName(d, i))
122
+ else:
123
+ new_dependencies.append(d)
124
+ new_target_dicts[t][deptype] = new_dependencies
125
+
126
+ return (new_target_list, new_target_dicts)
127
+
128
+
129
+ def _GetPdbPath(target_dict, config_name, vars):
130
+ """Returns the path to the PDB file that will be generated by a given
131
+ configuration.
132
+
133
+ The lookup proceeds as follows:
134
+ - Look for an explicit path in the VCLinkerTool configuration block.
135
+ - Look for an 'msvs_large_pdb_path' variable.
136
+ - Use '<(PRODUCT_DIR)/<(product_name).(exe|dll).pdb' if 'product_name' is
137
+ specified.
138
+ - Use '<(PRODUCT_DIR)/<(target_name).(exe|dll).pdb'.
139
+
140
+ Arguments:
141
+ target_dict: The target dictionary to be searched.
142
+ config_name: The name of the configuration of interest.
143
+ vars: A dictionary of common GYP variables with generator-specific values.
144
+ Returns:
145
+ The path of the corresponding PDB file.
146
+ """
147
+ config = target_dict["configurations"][config_name]
148
+ msvs = config.setdefault("msvs_settings", {})
149
+
150
+ linker = msvs.get("VCLinkerTool", {})
151
+
152
+ pdb_path = linker.get("ProgramDatabaseFile")
153
+ if pdb_path:
154
+ return pdb_path
155
+
156
+ variables = target_dict.get("variables", {})
157
+ pdb_path = variables.get("msvs_large_pdb_path", None)
158
+ if pdb_path:
159
+ return pdb_path
160
+
161
+ pdb_base = target_dict.get("product_name", target_dict["target_name"])
162
+ pdb_base = "{}.{}.pdb".format(pdb_base, TARGET_TYPE_EXT[target_dict["type"]])
163
+ pdb_path = vars["PRODUCT_DIR"] + "/" + pdb_base
164
+
165
+ return pdb_path
166
+
167
+
168
+ def InsertLargePdbShims(target_list, target_dicts, vars):
169
+ """Insert a shim target that forces the linker to use 4KB pagesize PDBs.
170
+
171
+ This is a workaround for targets with PDBs greater than 1GB in size, the
172
+ limit for the 1KB pagesize PDBs created by the linker by default.
173
+
174
+ Arguments:
175
+ target_list: List of target pairs: 'base/base.gyp:base'.
176
+ target_dicts: Dict of target properties keyed on target pair.
177
+ vars: A dictionary of common GYP variables with generator-specific values.
178
+ Returns:
179
+ Tuple of the shimmed version of the inputs.
180
+ """
181
+ # Determine which targets need shimming.
182
+ targets_to_shim = []
183
+ for t in target_dicts:
184
+ target_dict = target_dicts[t]
185
+
186
+ # We only want to shim targets that have msvs_large_pdb enabled.
187
+ if not int(target_dict.get("msvs_large_pdb", 0)):
188
+ continue
189
+ # This is intended for executable, shared_library and loadable_module
190
+ # targets where every configuration is set up to produce a PDB output.
191
+ # If any of these conditions is not true then the shim logic will fail
192
+ # below.
193
+ targets_to_shim.append(t)
194
+
195
+ large_pdb_shim_cc = _GetLargePdbShimCcPath()
196
+
197
+ for t in targets_to_shim:
198
+ target_dict = target_dicts[t]
199
+ target_name = target_dict.get("target_name")
200
+
201
+ base_dict = _DeepCopySomeKeys(
202
+ target_dict, ["configurations", "default_configuration", "toolset"]
203
+ )
204
+
205
+ # This is the dict for copying the source file (part of the GYP tree)
206
+ # to the intermediate directory of the project. This is necessary because
207
+ # we can't always build a relative path to the shim source file (on Windows
208
+ # GYP and the project may be on different drives), and Ninja hates absolute
209
+ # paths (it ends up generating the .obj and .obj.d alongside the source
210
+ # file, polluting GYPs tree).
211
+ copy_suffix = "large_pdb_copy"
212
+ copy_target_name = target_name + "_" + copy_suffix
213
+ full_copy_target_name = _SuffixName(t, copy_suffix)
214
+ shim_cc_basename = os.path.basename(large_pdb_shim_cc)
215
+ shim_cc_dir = vars["SHARED_INTERMEDIATE_DIR"] + "/" + copy_target_name
216
+ shim_cc_path = shim_cc_dir + "/" + shim_cc_basename
217
+ copy_dict = copy.deepcopy(base_dict)
218
+ copy_dict["target_name"] = copy_target_name
219
+ copy_dict["type"] = "none"
220
+ copy_dict["sources"] = [large_pdb_shim_cc]
221
+ copy_dict["copies"] = [
222
+ {"destination": shim_cc_dir, "files": [large_pdb_shim_cc]}
223
+ ]
224
+
225
+ # This is the dict for the PDB generating shim target. It depends on the
226
+ # copy target.
227
+ shim_suffix = "large_pdb_shim"
228
+ shim_target_name = target_name + "_" + shim_suffix
229
+ full_shim_target_name = _SuffixName(t, shim_suffix)
230
+ shim_dict = copy.deepcopy(base_dict)
231
+ shim_dict["target_name"] = shim_target_name
232
+ shim_dict["type"] = "static_library"
233
+ shim_dict["sources"] = [shim_cc_path]
234
+ shim_dict["dependencies"] = [full_copy_target_name]
235
+
236
+ # Set up the shim to output its PDB to the same location as the final linker
237
+ # target.
238
+ for config_name, config in shim_dict.get("configurations").items():
239
+ pdb_path = _GetPdbPath(target_dict, config_name, vars)
240
+
241
+ # A few keys that we don't want to propagate.
242
+ for key in ["msvs_precompiled_header", "msvs_precompiled_source", "test"]:
243
+ config.pop(key, None)
244
+
245
+ msvs = config.setdefault("msvs_settings", {})
246
+
247
+ # Update the compiler directives in the shim target.
248
+ compiler = msvs.setdefault("VCCLCompilerTool", {})
249
+ compiler["DebugInformationFormat"] = "3"
250
+ compiler["ProgramDataBaseFileName"] = pdb_path
251
+
252
+ # Set the explicit PDB path in the appropriate configuration of the
253
+ # original target.
254
+ config = target_dict["configurations"][config_name]
255
+ msvs = config.setdefault("msvs_settings", {})
256
+ linker = msvs.setdefault("VCLinkerTool", {})
257
+ linker["GenerateDebugInformation"] = "true"
258
+ linker["ProgramDatabaseFile"] = pdb_path
259
+
260
+ # Add the new targets. They must go to the beginning of the list so that
261
+ # the dependency generation works as expected in ninja.
262
+ target_list.insert(0, full_copy_target_name)
263
+ target_list.insert(0, full_shim_target_name)
264
+ target_dicts[full_copy_target_name] = copy_dict
265
+ target_dicts[full_shim_target_name] = shim_dict
266
+
267
+ # Update the original target to depend on the shim target.
268
+ target_dict.setdefault("dependencies", []).append(full_shim_target_name)
269
+
270
+ return (target_list, target_dicts)