OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 'inside_chromium_build%': 1, | 86 'inside_chromium_build%': 1, |
87 | 87 |
88 # Set to 1 to enable fast builds. It disables debug info for fastest | 88 # Set to 1 to enable fast builds. It disables debug info for fastest |
89 # compilation. | 89 # compilation. |
90 'fastbuild%': 0, | 90 'fastbuild%': 0, |
91 | 91 |
92 # Disable file manager component extension by default. | 92 # Disable file manager component extension by default. |
93 'file_manager_extension%': 0, | 93 'file_manager_extension%': 0, |
94 | 94 |
95 # Python version. | 95 # Python version. |
96 'python_ver%': '2.5', | 96 'python_ver%': '2.6', |
97 | 97 |
98 # Set ARM-v7 compilation flags | 98 # Set ARM-v7 compilation flags |
99 'armv7%': 0, | 99 'armv7%': 0, |
100 | 100 |
101 # Set Neon compilation flags (only meaningful if armv7==1). | 101 # Set Neon compilation flags (only meaningful if armv7==1). |
102 'arm_neon%': 1, | 102 'arm_neon%': 1, |
103 | 103 |
104 # The system root for cross-compiles. Default: none. | 104 # The system root for cross-compiles. Default: none. |
105 'sysroot%': '', | 105 'sysroot%': '', |
106 | 106 |
(...skipping 1613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1720 # and therefore SYMROOT, needs to be set at the project level. | 1720 # and therefore SYMROOT, needs to be set at the project level. |
1721 'SYMROOT': '<(DEPTH)/xcodebuild', | 1721 'SYMROOT': '<(DEPTH)/xcodebuild', |
1722 }, | 1722 }, |
1723 } | 1723 } |
1724 | 1724 |
1725 # Local Variables: | 1725 # Local Variables: |
1726 # tab-width:2 | 1726 # tab-width:2 |
1727 # indent-tabs-mode:nil | 1727 # indent-tabs-mode:nil |
1728 # End: | 1728 # End: |
1729 # vim: set expandtab tabstop=2 shiftwidth=2: | 1729 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |