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