| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 # it can be overriden by the GYP command line or by ~/.gyp/include.gypi. | 122 # it can be overriden by the GYP command line or by ~/.gyp/include.gypi. |
| 123 'component%': 'static_library', | 123 'component%': 'static_library', |
| 124 | 124 |
| 125 # Set to select the Title Case versions of strings in GRD files. | 125 # Set to select the Title Case versions of strings in GRD files. |
| 126 'use_titlecase_in_grd_files%': 0, | 126 'use_titlecase_in_grd_files%': 0, |
| 127 | 127 |
| 128 # Use translations provided by volunteers at launchpad.net. This | 128 # Use translations provided by volunteers at launchpad.net. This |
| 129 # currently only works on Linux. | 129 # currently only works on Linux. |
| 130 'use_third_party_translations%': 0, | 130 'use_third_party_translations%': 0, |
| 131 | 131 |
| 132 # Enable the Manage Handlers section in the settings page. | 132 # Enable navigator.registerProtocolHandler and supporting UI. |
| 133 'enable_register_protocol_handler%': 0, | 133 'enable_register_protocol_handler%': 1, |
| 134 | 134 |
| 135 # Remoting compilation is enabled by default. Set to 0 to disable. | 135 # Remoting compilation is enabled by default. Set to 0 to disable. |
| 136 'remoting%': 1, | 136 'remoting%': 1, |
| 137 | 137 |
| 138 # P2P APIs are compiled in by default. Set to 0 to disable. | 138 # P2P APIs are compiled in by default. Set to 0 to disable. |
| 139 # Also note that this should be enabled for remoting to compile. | 139 # Also note that this should be enabled for remoting to compile. |
| 140 'p2p_apis%': 1, | 140 'p2p_apis%': 1, |
| 141 | 141 |
| 142 # If this is set, the clang plugins used on the buildbot will be used. | 142 # If this is set, the clang plugins used on the buildbot will be used. |
| 143 # Run tools/clang/scripts/update.sh to make sure they are compiled. | 143 # Run tools/clang/scripts/update.sh to make sure they are compiled. |
| (...skipping 1599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1743 # and therefore SYMROOT, needs to be set at the project level. | 1743 # and therefore SYMROOT, needs to be set at the project level. |
| 1744 'SYMROOT': '<(DEPTH)/xcodebuild', | 1744 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 1745 }, | 1745 }, |
| 1746 } | 1746 } |
| 1747 | 1747 |
| 1748 # Local Variables: | 1748 # Local Variables: |
| 1749 # tab-width:2 | 1749 # tab-width:2 |
| 1750 # indent-tabs-mode:nil | 1750 # indent-tabs-mode:nil |
| 1751 # End: | 1751 # End: |
| 1752 # vim: set expandtab tabstop=2 shiftwidth=2: | 1752 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |