Skip to content

Commit

Permalink
Remove unused entries from common_win.gypi
Browse files Browse the repository at this point in the history
This is a trivial code cleanup commit to remove unused entries from
common_win.gypi.

There must be no behavior change in the final artifacts.
  • Loading branch information
yukawa committed Nov 19, 2024
1 parent a0fed62 commit d4c4adb
Showing 1 changed file with 0 additions and 34 deletions.
34 changes: 0 additions & 34 deletions src/gyp/common_win.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,6 @@
# Visual C++ Runtime Version.
'vcruntime_ver%': '',

# Extra headers and libraries for Visual C++.
'msvs_includes%': [],
'msvs_libs_x86%': [],
'msvs_libs_x64%': [],

'conditions': [
# https://docs.microsoft.com/en-us/cpp/preprocessor/predefined-macros
['MSVS_VERSION=="2015"', {
Expand Down Expand Up @@ -131,25 +126,11 @@
'/bigobj',
],
},
'VCLibrarianTool': {
'AdditionalLibraryDirectories': [
'<@(msvs_libs_x86)',
],
'AdditionalLibraryDirectories!': [
'<@(msvs_libs_x64)',
],
},
'VCLinkerTool': {
'TargetMachine': '<(win_target_machine_x86)',
'AdditionalOptions': [
'/SAFESEH',
],
'AdditionalLibraryDirectories': [
'<@(msvs_libs_x86)',
],
'AdditionalLibraryDirectories!': [
'<@(msvs_libs_x64)',
],
'EnableUAC': 'true',
'UACExecutionLevel': '0', # level="asInvoker"
'UACUIAccess': 'false', # uiAccess="false"
Expand All @@ -175,22 +156,8 @@
'/bigobj',
],
},
'VCLibrarianTool': {
'AdditionalLibraryDirectories': [
'<@(msvs_libs_x64)',
],
'AdditionalLibraryDirectories!': [
'<@(msvs_libs_x86)',
],
},
'VCLinkerTool': {
'TargetMachine': '<(win_target_machine_x64)',
'AdditionalLibraryDirectories': [
'<@(msvs_libs_x64)',
],
'AdditionalLibraryDirectories!': [
'<@(msvs_libs_x86)',
],
},
},
},
Expand Down Expand Up @@ -332,7 +299,6 @@
'<@(absl_include_dirs)',
'<(abs_depth)',
'<(SHARED_INTERMEDIATE_DIR)',
'<@(msvs_includes)',
'<(third_party_dir)/wil/include',
],
'msvs_configuration_attributes': {
Expand Down

0 comments on commit d4c4adb

Please sign in to comment.