| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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': { | 9 'variables': { |
| 10 # .gyp files or targets should set chromium_code to 1 if they build | 10 # .gyp files or targets should set chromium_code to 1 if they build |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 # are built under a chromium full build (1) or a webkit.org chromium | 86 # are built under a chromium full build (1) or a webkit.org chromium |
| 87 # build (0). | 87 # build (0). |
| 88 'inside_chromium_build%': 1, | 88 'inside_chromium_build%': 1, |
| 89 | 89 |
| 90 # Set to 1 to enable fast builds. It disables debug info for fastest | 90 # Set to 1 to enable fast builds. It disables debug info for fastest |
| 91 # compilation. | 91 # compilation. |
| 92 'fastbuild%': 0, | 92 'fastbuild%': 0, |
| 93 | 93 |
| 94 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared | 94 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared |
| 95 # libraries on linux x86-64 and arm. | 95 # libraries on linux x86-64 and arm. |
| 96 'linux_fpic%': 0, | 96 'linux_fpic%': 1, |
| 97 | 97 |
| 98 # Python version. | 98 # Python version. |
| 99 'python_ver%': '2.5', | 99 'python_ver%': '2.5', |
| 100 | 100 |
| 101 # Set ARM-v7 compilation flags | 101 # Set ARM-v7 compilation flags |
| 102 'armv7%': 0, | 102 'armv7%': 0, |
| 103 | 103 |
| 104 # Set Neon compilation flags (only meaningful if armv7==1). | 104 # Set Neon compilation flags (only meaningful if armv7==1). |
| 105 'arm_neon%': 1, | 105 'arm_neon%': 1, |
| 106 | 106 |
| (...skipping 1204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1311 # and therefore SYMROOT, needs to be set at the project level. | 1311 # and therefore SYMROOT, needs to be set at the project level. |
| 1312 'SYMROOT': '<(DEPTH)/xcodebuild', | 1312 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 1313 }, | 1313 }, |
| 1314 } | 1314 } |
| 1315 | 1315 |
| 1316 # Local Variables: | 1316 # Local Variables: |
| 1317 # tab-width:2 | 1317 # tab-width:2 |
| 1318 # indent-tabs-mode:nil | 1318 # indent-tabs-mode:nil |
| 1319 # End: | 1319 # End: |
| 1320 # vim: set expandtab tabstop=2 shiftwidth=2: | 1320 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |