OLD | NEW |
1 { | 1 { |
2 'target_defaults': { | 2 'target_defaults': { |
3 'configurations': { | 3 'configurations': { |
4 'Debug': { | 4 'Debug': { |
5 'defines': [ '_DEBUG' ], | 5 'defines': [ '_DEBUG' ], |
6 'msvs_settings': { | 6 'msvs_settings': { |
7 'VCCLCompilerTool': { | 7 'VCCLCompilerTool': { |
8 'Optimization': '0', | 8 'Optimization': '0', |
9 | 9 |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 'GenerateDebugInformation': 'true', | 60 'GenerateDebugInformation': 'true', |
61 }, | 61 }, |
62 'VCMIDLTool': { | 62 'VCMIDLTool': { |
63 'TypeLibraryName': '$(TargetName).tlb', | 63 'TypeLibraryName': '$(TargetName).tlb', |
64 }, | 64 }, |
65 }, | 65 }, |
66 'conditions': [ | 66 'conditions': [ |
67 [ | 67 [ |
68 'target_arch=="x64"', { | 68 'target_arch=="x64"', { |
69 'msvs_configuration_platform': 'x64', | 69 'msvs_configuration_platform': 'x64', |
70 'defines': ['WIN64'], | 70 'defines': ['_WIN64'], |
71 }, { | 71 }, { |
72 'msvs_configuration_platform': 'Win32', | 72 'msvs_configuration_platform': 'Win32', |
73 'defines': ['WIN32'], | 73 'defines': ['_WIN32'], |
74 } | 74 } |
75 ], | 75 ], |
76 ], | 76 ], |
77 }, | 77 }, |
78 } | 78 } |
OLD | NEW |