OLD | NEW |
1 { | 1 { |
2 'conditions': [[ | 2 'conditions': [[ |
3 # We don't want to use curl on Windows and Android, skip the check there | 3 # We don't want to use curl on Windows and Android, skip the check there |
4 'OS=="win" or OS=="android"', | 4 'OS=="win" or OS=="android"', |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'have_curl': 0 | 7 'have_curl': 0 |
8 } | 8 } |
9 }, | 9 }, |
10 { | 10 { |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 } | 61 } |
62 } | 62 } |
63 ]], | 63 ]], |
64 }, | 64 }, |
65 'conditions': [ | 65 'conditions': [ |
66 ['OS=="linux" or OS=="mac"', { | 66 ['OS=="linux" or OS=="mac"', { |
67 'link_settings': { | 67 'link_settings': { |
68 'libraries': [ | 68 'libraries': [ |
69 '<@(libv8_libs)' | 69 '<@(libv8_libs)' |
70 ], | 70 ], |
| 71 'library_dirs': [ |
| 72 '<(libv8_lib_dir)' |
| 73 ] |
71 } | 74 } |
72 }], | 75 }], |
73 ['OS=="win"', { | 76 ['OS=="win"', { |
74 'link_settings': { | 77 'link_settings': { |
75 'libraries': [ | 78 'libraries': [ |
76 '<@(libv8_libs)', | 79 '<@(libv8_libs)', |
77 '-lwinmm' | 80 '-lwinmm' |
78 ], | 81 ], |
79 }, | 82 }, |
80 }], | 83 }], |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 'test/WebRequest.cpp' | 202 'test/WebRequest.cpp' |
200 ], | 203 ], |
201 'msvs_settings': { | 204 'msvs_settings': { |
202 'VCLinkerTool': { | 205 'VCLinkerTool': { |
203 'SubSystem': '1', # Console | 206 'SubSystem': '1', # Console |
204 'EntryPointSymbol': 'mainCRTStartup', | 207 'EntryPointSymbol': 'mainCRTStartup', |
205 }, | 208 }, |
206 }, | 209 }, |
207 }] | 210 }] |
208 } | 211 } |
OLD | NEW |