OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
721 'android_build_type%': '<(android_build_type)', | 721 'android_build_type%': '<(android_build_type)', |
722 'enable_app_list%': '<(enable_app_list)', | 722 'enable_app_list%': '<(enable_app_list)', |
723 'enable_message_center%': '<(enable_message_center)', | 723 'enable_message_center%': '<(enable_message_center)', |
724 'use_default_render_theme%': '<(use_default_render_theme)', | 724 'use_default_render_theme%': '<(use_default_render_theme)', |
725 'enable_settings_app%': '<(enable_settings_app)', | 725 'enable_settings_app%': '<(enable_settings_app)', |
726 'use_official_google_api_keys%': '<(use_official_google_api_keys)', | 726 'use_official_google_api_keys%': '<(use_official_google_api_keys)', |
727 'google_api_key%': '<(google_api_key)', | 727 'google_api_key%': '<(google_api_key)', |
728 'google_default_client_id%': '<(google_default_client_id)', | 728 'google_default_client_id%': '<(google_default_client_id)', |
729 'google_default_client_secret%': '<(google_default_client_secret)', | 729 'google_default_client_secret%': '<(google_default_client_secret)', |
730 | 730 |
| 731 # Use system mesa instead of bundled one. |
| 732 'use_system_mesa%': 0, |
| 733 |
731 # Use system nspr instead of the bundled one. | 734 # Use system nspr instead of the bundled one. |
732 'use_system_nspr%': 0, | 735 'use_system_nspr%': 0, |
733 | 736 |
734 # Use system protobuf instead of bundled one. | 737 # Use system protobuf instead of bundled one. |
735 'use_system_protobuf%': 0, | 738 'use_system_protobuf%': 0, |
736 | 739 |
737 # Use system yasm instead of bundled one. | 740 # Use system yasm instead of bundled one. |
738 'use_system_yasm%': 0, | 741 'use_system_yasm%': 0, |
739 | 742 |
740 # Default to enabled PIE; this is important for ASLR but we may need to be | 743 # Default to enabled PIE; this is important for ASLR but we may need to be |
(...skipping 3216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3957 # settings in target dicts. SYMROOT is a special case, because many other | 3960 # settings in target dicts. SYMROOT is a special case, because many other |
3958 # Xcode variables depend on it, including variables such as | 3961 # Xcode variables depend on it, including variables such as |
3959 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3962 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3960 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3963 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3961 # files to appear (when present) in the UI as actual files and not red | 3964 # files to appear (when present) in the UI as actual files and not red |
3962 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3965 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3963 # and therefore SYMROOT, needs to be set at the project level. | 3966 # and therefore SYMROOT, needs to be set at the project level. |
3964 'SYMROOT': '<(DEPTH)/xcodebuild', | 3967 'SYMROOT': '<(DEPTH)/xcodebuild', |
3965 }, | 3968 }, |
3966 } | 3969 } |
OLD | NEW |