| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 should set chromium_code to 1 if they build Chromium-specific | 10 # .gyp files should set chromium_code to 1 if they build Chromium-specific |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 | 139 |
| 140 # The Google Update appid. | 140 # The Google Update appid. |
| 141 'google_update_appid%': '{8A69D345-D564-463c-AFF1-A69D9E530F96}', | 141 'google_update_appid%': '{8A69D345-D564-463c-AFF1-A69D9E530F96}', |
| 142 | 142 |
| 143 # Whether to add the experimental build define. | 143 # Whether to add the experimental build define. |
| 144 'chrome_frame_define%': 0, | 144 'chrome_frame_define%': 0, |
| 145 | 145 |
| 146 # Whether pepper APIs are enabled. | 146 # Whether pepper APIs are enabled. |
| 147 'enable_pepper%': 0, | 147 'enable_pepper%': 0, |
| 148 | 148 |
| 149 # Whether usage of OpenMAX is enabled. |
| 150 'enable_openmax%': 0, |
| 151 |
| 149 # TODO(bradnelson): eliminate this when possible. | 152 # TODO(bradnelson): eliminate this when possible. |
| 150 # To allow local gyp files to prevent release.vsprops from being included. | 153 # To allow local gyp files to prevent release.vsprops from being included. |
| 151 # Yes(1) means include release.vsprops. | 154 # Yes(1) means include release.vsprops. |
| 152 # Once all vsprops settings are migrated into gyp, this can go away. | 155 # Once all vsprops settings are migrated into gyp, this can go away. |
| 153 'msvs_use_common_release%': 1, | 156 'msvs_use_common_release%': 1, |
| 154 | 157 |
| 155 # TODO(bradnelson): eliminate this when possible. | 158 # TODO(bradnelson): eliminate this when possible. |
| 156 # To allow local gyp files to override additional linker options for msvs. | 159 # To allow local gyp files to override additional linker options for msvs. |
| 157 # Yes(1) means set use the common linker options. | 160 # Yes(1) means set use the common linker options. |
| 158 'msvs_use_common_linker_extras%': 1, | 161 'msvs_use_common_linker_extras%': 1, |
| (...skipping 807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 966 # and therefore SYMROOT, needs to be set at the project level. | 969 # and therefore SYMROOT, needs to be set at the project level. |
| 967 'SYMROOT': '<(DEPTH)/xcodebuild', | 970 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 968 }, | 971 }, |
| 969 } | 972 } |
| 970 | 973 |
| 971 # Local Variables: | 974 # Local Variables: |
| 972 # tab-width:2 | 975 # tab-width:2 |
| 973 # indent-tabs-mode:nil | 976 # indent-tabs-mode:nil |
| 974 # End: | 977 # End: |
| 975 # vim: set expandtab tabstop=2 shiftwidth=2: | 978 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |