| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
| 10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
| (...skipping 1470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1481 },{ | 1481 },{ |
| 1482 'msvs_large_module_debug_link_mode%': '2', # Yes | 1482 'msvs_large_module_debug_link_mode%': '2', # Yes |
| 1483 }], | 1483 }], |
| 1484 ['MSVS_VERSION=="2012e" or MSVS_VERSION=="2010e"', { | 1484 ['MSVS_VERSION=="2012e" or MSVS_VERSION=="2010e"', { |
| 1485 'msvs_express%': 1, | 1485 'msvs_express%': 1, |
| 1486 'secure_atl%': 0, | 1486 'secure_atl%': 0, |
| 1487 },{ | 1487 },{ |
| 1488 'msvs_express%': 0, | 1488 'msvs_express%': 0, |
| 1489 'secure_atl%': 1, | 1489 'secure_atl%': 1, |
| 1490 }], | 1490 }], |
| 1491 ['win_use_allocator_shim==1', { |
| 1492 'defines': [ |
| 1493 'WIN_USE_ALLOCATOR_SHIM' |
| 1494 ], |
| 1495 }], |
| 1491 ], | 1496 ], |
| 1492 'nacl_win64_defines': [ | 1497 'nacl_win64_defines': [ |
| 1493 # This flag is used to minimize dependencies when building | 1498 # This flag is used to minimize dependencies when building |
| 1494 # Native Client loader for 64-bit Windows. | 1499 # Native Client loader for 64-bit Windows. |
| 1495 'NACL_WIN64', | 1500 'NACL_WIN64', |
| 1496 ], | 1501 ], |
| 1497 }], | 1502 }], |
| 1498 | 1503 |
| 1499 ['os_posix==1 and chromeos==0 and OS!="android" and OS!="ios"', { | 1504 ['os_posix==1 and chromeos==0 and OS!="android" and OS!="ios"', { |
| 1500 'use_cups%': 1, | 1505 'use_cups%': 1, |
| (...skipping 3152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4653 # settings in target dicts. SYMROOT is a special case, because many other | 4658 # settings in target dicts. SYMROOT is a special case, because many other |
| 4654 # Xcode variables depend on it, including variables such as | 4659 # Xcode variables depend on it, including variables such as |
| 4655 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4660 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 4656 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4661 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 4657 # files to appear (when present) in the UI as actual files and not red | 4662 # files to appear (when present) in the UI as actual files and not red |
| 4658 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4663 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 4659 # and therefore SYMROOT, needs to be set at the project level. | 4664 # and therefore SYMROOT, needs to be set at the project level. |
| 4660 'SYMROOT': '<(DEPTH)/xcodebuild', | 4665 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 4661 }, | 4666 }, |
| 4662 } | 4667 } |
| OLD | NEW |