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 2775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2786 'msvs_settings': { | 2786 'msvs_settings': { |
2787 'VCLinkerTool': { | 2787 'VCLinkerTool': { |
2788 'Profile': 'true', | 2788 'Profile': 'true', |
2789 }, | 2789 }, |
2790 }, | 2790 }, |
2791 'defines': [ | 2791 'defines': [ |
2792 'SYZYASAN', | 2792 'SYZYASAN', |
2793 'MEMORY_TOOL_REPLACES_ALLOCATOR', | 2793 'MEMORY_TOOL_REPLACES_ALLOCATOR', |
2794 'MEMORY_SANITIZER_INITIAL_SIZE', | 2794 'MEMORY_SANITIZER_INITIAL_SIZE', |
2795 ], | 2795 ], |
| 2796 'include_dirs': [ |
| 2797 '<(DEPTH)/third_party/kasko/include', |
| 2798 ], |
2796 }], | 2799 }], |
2797 ['OS=="win"', { | 2800 ['OS=="win"', { |
2798 'defines': [ | 2801 'defines': [ |
2799 '__STD_C', | 2802 '__STD_C', |
2800 '_CRT_SECURE_NO_DEPRECATE', | 2803 '_CRT_SECURE_NO_DEPRECATE', |
2801 '_SCL_SECURE_NO_DEPRECATE', | 2804 '_SCL_SECURE_NO_DEPRECATE', |
2802 # This define is required to pull in the new Win8 interfaces from | 2805 # This define is required to pull in the new Win8 interfaces from |
2803 # system headers like ShObjIdl.h. | 2806 # system headers like ShObjIdl.h. |
2804 'NTDDI_VERSION=0x06030000', | 2807 'NTDDI_VERSION=0x06030000', |
2805 # This is required for ATL to use XP-safe versions of its functions. | 2808 # This is required for ATL to use XP-safe versions of its functions. |
(...skipping 3051 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5857 # settings in target dicts. SYMROOT is a special case, because many other | 5860 # settings in target dicts. SYMROOT is a special case, because many other |
5858 # Xcode variables depend on it, including variables such as | 5861 # Xcode variables depend on it, including variables such as |
5859 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5862 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5860 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5863 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5861 # files to appear (when present) in the UI as actual files and not red | 5864 # files to appear (when present) in the UI as actual files and not red |
5862 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5865 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5863 # and therefore SYMROOT, needs to be set at the project level. | 5866 # and therefore SYMROOT, needs to be set at the project level. |
5864 'SYMROOT': '<(DEPTH)/xcodebuild', | 5867 'SYMROOT': '<(DEPTH)/xcodebuild', |
5865 }, | 5868 }, |
5866 } | 5869 } |
OLD | NEW |