| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 # {'variables': {'library': 'shared_library'}} | 151 # {'variables': {'library': 'shared_library'}} |
| 152 # to compile as shared by default | 152 # to compile as shared by default |
| 153 'library%': 'static_library', | 153 'library%': 'static_library', |
| 154 | 154 |
| 155 # The Google Update appid. | 155 # The Google Update appid. |
| 156 'google_update_appid%': '{8A69D345-D564-463c-AFF1-A69D9E530F96}', | 156 'google_update_appid%': '{8A69D345-D564-463c-AFF1-A69D9E530F96}', |
| 157 | 157 |
| 158 # Whether to add the experimental build define. | 158 # Whether to add the experimental build define. |
| 159 'chrome_frame_define%': 0, | 159 'chrome_frame_define%': 0, |
| 160 | 160 |
| 161 # Whether pepper APIs are enabled. | 161 # Whether GPU plugin build is enabled. |
| 162 'enable_pepper%': 0, | 162 'enable_gpu%': 0, |
| 163 | 163 |
| 164 # Whether usage of OpenMAX is enabled. | 164 # Whether usage of OpenMAX is enabled. |
| 165 'enable_openmax%': 0, | 165 'enable_openmax%': 0, |
| 166 | 166 |
| 167 # TODO(bradnelson): eliminate this when possible. | 167 # TODO(bradnelson): eliminate this when possible. |
| 168 # To allow local gyp files to prevent release.vsprops from being included. | 168 # To allow local gyp files to prevent release.vsprops from being included. |
| 169 # Yes(1) means include release.vsprops. | 169 # Yes(1) means include release.vsprops. |
| 170 # Once all vsprops settings are migrated into gyp, this can go away. | 170 # Once all vsprops settings are migrated into gyp, this can go away. |
| 171 'msvs_use_common_release%': 1, | 171 'msvs_use_common_release%': 1, |
| 172 | 172 |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 }], | 330 }], |
| 331 ['toolkit_views==1', { | 331 ['toolkit_views==1', { |
| 332 'defines': ['TOOLKIT_VIEWS=1'], | 332 'defines': ['TOOLKIT_VIEWS=1'], |
| 333 }], | 333 }], |
| 334 ['chromeos==1', { | 334 ['chromeos==1', { |
| 335 'defines': ['CHROMEOS_TRANSITIONAL=1'], | 335 'defines': ['CHROMEOS_TRANSITIONAL=1'], |
| 336 }], | 336 }], |
| 337 ['chromeos==1 or toolkit_views==1', { | 337 ['chromeos==1 or toolkit_views==1', { |
| 338 'defines': ['OS_CHROMEOS=1'], | 338 'defines': ['OS_CHROMEOS=1'], |
| 339 }], | 339 }], |
| 340 ['enable_pepper==1', { | |
| 341 'defines': ['ENABLE_PEPPER=1'], | |
| 342 }], | |
| 343 ['fastbuild!=0', { | 340 ['fastbuild!=0', { |
| 344 'conditions': [ | 341 'conditions': [ |
| 345 # Finally, for Windows, we simply turn on profiling. | 342 # Finally, for Windows, we simply turn on profiling. |
| 346 ['OS=="win"', { | 343 ['OS=="win"', { |
| 347 'msvs_settings': { | 344 'msvs_settings': { |
| 348 'VCLinkerTool': { | 345 'VCLinkerTool': { |
| 349 'GenerateDebugInformation': 'false', | 346 'GenerateDebugInformation': 'false', |
| 350 }, | 347 }, |
| 351 'VCCLCompilerTool': { | 348 'VCCLCompilerTool': { |
| 352 'DebugInformationFormat': '0', | 349 'DebugInformationFormat': '0', |
| (...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1098 # and therefore SYMROOT, needs to be set at the project level. | 1095 # and therefore SYMROOT, needs to be set at the project level. |
| 1099 'SYMROOT': '<(DEPTH)/xcodebuild', | 1096 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 1100 }, | 1097 }, |
| 1101 } | 1098 } |
| 1102 | 1099 |
| 1103 # Local Variables: | 1100 # Local Variables: |
| 1104 # tab-width:2 | 1101 # tab-width:2 |
| 1105 # indent-tabs-mode:nil | 1102 # indent-tabs-mode:nil |
| 1106 # End: | 1103 # End: |
| 1107 # vim: set expandtab tabstop=2 shiftwidth=2: | 1104 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |