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 1814 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1825 'mac_debug_optimization%': '0', # Use -O0 unless overridden | 1825 'mac_debug_optimization%': '0', # Use -O0 unless overridden |
1826 }], | 1826 }], |
1827 ], | 1827 ], |
1828 }, | 1828 }, |
1829 'defines': [ | 1829 'defines': [ |
1830 # Set this to use the new DX11 version of ANGLE. | 1830 # Set this to use the new DX11 version of ANGLE. |
1831 # TODO(apatrick): Remove this when the transition is complete. | 1831 # TODO(apatrick): Remove this when the transition is complete. |
1832 #'ANGLE_DX11', | 1832 #'ANGLE_DX11', |
1833 ], | 1833 ], |
1834 'conditions': [ | 1834 'conditions': [ |
1835 ['OS=="win"', { | |
1836 'defines': ['ENABLE_PARTITION_ALLOC=1'], | |
1837 }], | |
1838 ['(OS=="mac" or OS=="ios") and asan==1', { | 1835 ['(OS=="mac" or OS=="ios") and asan==1', { |
1839 'dependencies': [ | 1836 'dependencies': [ |
1840 '<(DEPTH)/build/mac/asan.gyp:asan_dynamic_runtime', | 1837 '<(DEPTH)/build/mac/asan.gyp:asan_dynamic_runtime', |
1841 ], | 1838 ], |
1842 }], | 1839 }], |
1843 ['OS=="linux" and linux_use_tcmalloc==1 and clang_type_profiler==1', { | 1840 ['OS=="linux" and linux_use_tcmalloc==1 and clang_type_profiler==1', { |
1844 'cflags_cc!': ['-fno-rtti'], | 1841 'cflags_cc!': ['-fno-rtti'], |
1845 'cflags_cc+': [ | 1842 'cflags_cc+': [ |
1846 '-frtti', | 1843 '-frtti', |
1847 '-gline-tables-only', | 1844 '-gline-tables-only', |
(...skipping 2724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4572 # settings in target dicts. SYMROOT is a special case, because many other | 4569 # settings in target dicts. SYMROOT is a special case, because many other |
4573 # Xcode variables depend on it, including variables such as | 4570 # Xcode variables depend on it, including variables such as |
4574 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4571 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4575 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4572 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4576 # files to appear (when present) in the UI as actual files and not red | 4573 # files to appear (when present) in the UI as actual files and not red |
4577 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4574 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4578 # and therefore SYMROOT, needs to be set at the project level. | 4575 # and therefore SYMROOT, needs to be set at the project level. |
4579 'SYMROOT': '<(DEPTH)/xcodebuild', | 4576 'SYMROOT': '<(DEPTH)/xcodebuild', |
4580 }, | 4577 }, |
4581 } | 4578 } |
OLD | NEW |