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 1888 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1899 # to the next. For this reason, we turn ASLR off in debug builds. | 1899 # to the next. For this reason, we turn ASLR off in debug builds. |
1900 # Note that this is a three-way bool, where 0 means to pick up | 1900 # Note that this is a three-way bool, where 0 means to pick up |
1901 # the default setting, 1 is off and 2 is on. | 1901 # the default setting, 1 is off and 2 is on. |
1902 'RandomizedBaseAddress': 1, | 1902 'RandomizedBaseAddress': 1, |
1903 }, | 1903 }, |
1904 'VCResourceCompilerTool': { | 1904 'VCResourceCompilerTool': { |
1905 'PreprocessorDefinitions': ['_DEBUG'], | 1905 'PreprocessorDefinitions': ['_DEBUG'], |
1906 }, | 1906 }, |
1907 }, | 1907 }, |
1908 'conditions': [ | 1908 'conditions': [ |
1909 ['OS=="linux"', { | 1909 ['OS=="linux" or OS=="android"', { |
1910 'target_conditions': [ | 1910 'target_conditions': [ |
1911 ['_toolset=="target"', { | 1911 ['_toolset=="target"', { |
1912 'cflags': [ | 1912 'cflags': [ |
1913 '<@(debug_extra_cflags)', | 1913 '<@(debug_extra_cflags)', |
1914 ], | 1914 ], |
1915 }], | 1915 }], |
1916 ], | 1916 ], |
1917 }], | 1917 }], |
1918 # Disabled on iOS because it was causing a crash on startup. | 1918 # Disabled on iOS because it was causing a crash on startup. |
1919 # TODO(michelea): investigate, create a reduced test and possibly | 1919 # TODO(michelea): investigate, create a reduced test and possibly |
(...skipping 1529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3449 # settings in target dicts. SYMROOT is a special case, because many other | 3449 # settings in target dicts. SYMROOT is a special case, because many other |
3450 # Xcode variables depend on it, including variables such as | 3450 # Xcode variables depend on it, including variables such as |
3451 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3451 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3452 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3452 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3453 # files to appear (when present) in the UI as actual files and not red | 3453 # files to appear (when present) in the UI as actual files and not red |
3454 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3454 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3455 # and therefore SYMROOT, needs to be set at the project level. | 3455 # and therefore SYMROOT, needs to be set at the project level. |
3456 'SYMROOT': '<(DEPTH)/xcodebuild', | 3456 'SYMROOT': '<(DEPTH)/xcodebuild', |
3457 }, | 3457 }, |
3458 } | 3458 } |
OLD | NEW |