OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # IMPORTANT: | 5 # IMPORTANT: |
6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
8 { | 8 { |
9 'variables': { | 9 'variables': { |
10 # .gyp files or targets should set chromium_code to 1 if they build | 10 # .gyp files or targets should set chromium_code to 1 if they build |
(...skipping 1214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1225 'defines': [ | 1225 'defines': [ |
1226 '_WIN32_WINNT=0x0600', | 1226 '_WIN32_WINNT=0x0600', |
1227 'WINVER=0x0600', | 1227 'WINVER=0x0600', |
1228 'WIN32', | 1228 'WIN32', |
1229 '_WINDOWS', | 1229 '_WINDOWS', |
1230 'NOMINMAX', | 1230 'NOMINMAX', |
1231 '_CRT_RAND_S', | 1231 '_CRT_RAND_S', |
1232 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', | 1232 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', |
1233 'WIN32_LEAN_AND_MEAN', | 1233 'WIN32_LEAN_AND_MEAN', |
1234 '_SECURE_ATL', | 1234 '_SECURE_ATL', |
| 1235 '_ATL_NO_OPENGL', |
1235 '_HAS_TR1=0', | 1236 '_HAS_TR1=0', |
1236 ], | 1237 ], |
1237 'conditions': [ | 1238 'conditions': [ |
1238 ['component=="static_library"', { | 1239 ['component=="static_library"', { |
1239 'defines': [ | 1240 'defines': [ |
1240 '_HAS_EXCEPTIONS=0', | 1241 '_HAS_EXCEPTIONS=0', |
1241 ], | 1242 ], |
1242 }], | 1243 }], |
1243 ], | 1244 ], |
1244 | 1245 |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1407 # and therefore SYMROOT, needs to be set at the project level. | 1408 # and therefore SYMROOT, needs to be set at the project level. |
1408 'SYMROOT': '<(DEPTH)/xcodebuild', | 1409 'SYMROOT': '<(DEPTH)/xcodebuild', |
1409 }, | 1410 }, |
1410 } | 1411 } |
1411 | 1412 |
1412 # Local Variables: | 1413 # Local Variables: |
1413 # tab-width:2 | 1414 # tab-width:2 |
1414 # indent-tabs-mode:nil | 1415 # indent-tabs-mode:nil |
1415 # End: | 1416 # End: |
1416 # vim: set expandtab tabstop=2 shiftwidth=2: | 1417 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |