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 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
716 'use_system_libjpeg%': '<(use_system_libjpeg)', | 716 'use_system_libjpeg%': '<(use_system_libjpeg)', |
717 'android_build_type%': '<(android_build_type)', | 717 'android_build_type%': '<(android_build_type)', |
718 'enable_app_list%': '<(enable_app_list)', | 718 'enable_app_list%': '<(enable_app_list)', |
719 'use_default_render_theme%': '<(use_default_render_theme)', | 719 'use_default_render_theme%': '<(use_default_render_theme)', |
720 'enable_settings_app%': '<(enable_settings_app)', | 720 'enable_settings_app%': '<(enable_settings_app)', |
721 'use_official_google_api_keys%': '<(use_official_google_api_keys)', | 721 'use_official_google_api_keys%': '<(use_official_google_api_keys)', |
722 'google_api_key%': '<(google_api_key)', | 722 'google_api_key%': '<(google_api_key)', |
723 'google_default_client_id%': '<(google_default_client_id)', | 723 'google_default_client_id%': '<(google_default_client_id)', |
724 'google_default_client_secret%': '<(google_default_client_secret)', | 724 'google_default_client_secret%': '<(google_default_client_secret)', |
725 | 725 |
| 726 # Use system nspr instead of the bundled one. |
| 727 'use_system_nspr%': 0, |
| 728 |
726 # Use system protobuf instead of bundled one. | 729 # Use system protobuf instead of bundled one. |
727 'use_system_protobuf%': 0, | 730 'use_system_protobuf%': 0, |
728 | 731 |
729 # Use system yasm instead of bundled one. | 732 # Use system yasm instead of bundled one. |
730 'use_system_yasm%': 0, | 733 'use_system_yasm%': 0, |
731 | 734 |
732 # Default to enabled PIE; this is important for ASLR but we may need to be | 735 # Default to enabled PIE; this is important for ASLR but we may need to be |
733 # able to turn it off for various reasons. | 736 # able to turn it off for various reasons. |
734 'linux_disable_pie%': 0, | 737 'linux_disable_pie%': 0, |
735 | 738 |
(...skipping 3210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3946 # settings in target dicts. SYMROOT is a special case, because many other | 3949 # settings in target dicts. SYMROOT is a special case, because many other |
3947 # Xcode variables depend on it, including variables such as | 3950 # Xcode variables depend on it, including variables such as |
3948 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3951 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3949 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3952 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3950 # files to appear (when present) in the UI as actual files and not red | 3953 # files to appear (when present) in the UI as actual files and not red |
3951 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3954 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3952 # and therefore SYMROOT, needs to be set at the project level. | 3955 # and therefore SYMROOT, needs to be set at the project level. |
3953 'SYMROOT': '<(DEPTH)/xcodebuild', | 3956 'SYMROOT': '<(DEPTH)/xcodebuild', |
3954 }, | 3957 }, |
3955 } | 3958 } |
OLD | NEW |