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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 'test_isolation_mode%': 'noop', | 404 'test_isolation_mode%': 'noop', |
405 # If no directory is specified then a temporary directory will be used. | 405 # If no directory is specified then a temporary directory will be used. |
406 'test_isolation_outdir%': '', | 406 'test_isolation_outdir%': '', |
407 | 407 |
408 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x86', | 408 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x86', |
409 'wix_path%': '<(DEPTH)/third_party/wix', | 409 'wix_path%': '<(DEPTH)/third_party/wix', |
410 | 410 |
411 # Managed users are enabled by default. | 411 # Managed users are enabled by default. |
412 'enable_managed_users%': 1, | 412 'enable_managed_users%': 1, |
413 | 413 |
| 414 'spdy_proxy_auth_origin%' : '', |
| 415 'spdy_proxy_auth_property%' : '', |
| 416 |
414 'conditions': [ | 417 'conditions': [ |
415 # TODO(epoger): Figure out how to set use_skia=1 for Mac outside of | 418 # TODO(epoger): Figure out how to set use_skia=1 for Mac outside of |
416 # the 'conditions' clause. Initial attempts resulted in chromium and | 419 # the 'conditions' clause. Initial attempts resulted in chromium and |
417 # webkit disagreeing on its setting. | 420 # webkit disagreeing on its setting. |
418 ['OS=="mac"', { | 421 ['OS=="mac"', { |
419 'use_skia%': 1, | 422 'use_skia%': 1, |
420 }, { | 423 }, { |
421 'use_skia%': 1, | 424 'use_skia%': 1, |
422 }], | 425 }], |
423 | 426 |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
741 'enable_app_list%': '<(enable_app_list)', | 744 'enable_app_list%': '<(enable_app_list)', |
742 'enable_message_center%': '<(enable_message_center)', | 745 'enable_message_center%': '<(enable_message_center)', |
743 'use_default_render_theme%': '<(use_default_render_theme)', | 746 'use_default_render_theme%': '<(use_default_render_theme)', |
744 'enable_web_intents%': '<(enable_web_intents)', | 747 'enable_web_intents%': '<(enable_web_intents)', |
745 'enable_settings_app%': '<(enable_settings_app)', | 748 'enable_settings_app%': '<(enable_settings_app)', |
746 'use_official_google_api_keys%': '<(use_official_google_api_keys)', | 749 'use_official_google_api_keys%': '<(use_official_google_api_keys)', |
747 'google_api_key%': '<(google_api_key)', | 750 'google_api_key%': '<(google_api_key)', |
748 'google_default_client_id%': '<(google_default_client_id)', | 751 'google_default_client_id%': '<(google_default_client_id)', |
749 'google_default_client_secret%': '<(google_default_client_secret)', | 752 'google_default_client_secret%': '<(google_default_client_secret)', |
750 'enable_managed_users%': '<(enable_managed_users)', | 753 'enable_managed_users%': '<(enable_managed_users)', |
| 754 'spdy_proxy_auth_origin%': '<(spdy_proxy_auth_origin)', |
| 755 'spdy_proxy_auth_property%': '<(spdy_proxy_auth_property)', |
751 | 756 |
752 # Use system mesa instead of bundled one. | 757 # Use system mesa instead of bundled one. |
753 'use_system_mesa%': 0, | 758 'use_system_mesa%': 0, |
754 | 759 |
755 # Use system nspr instead of the bundled one. | 760 # Use system nspr instead of the bundled one. |
756 'use_system_nspr%': 0, | 761 'use_system_nspr%': 0, |
757 | 762 |
758 # Use system protobuf instead of bundled one. | 763 # Use system protobuf instead of bundled one. |
759 'use_system_protobuf%': 0, | 764 'use_system_protobuf%': 0, |
760 | 765 |
(...skipping 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1996 }], | 2001 }], |
1997 ['enable_settings_app==1', { | 2002 ['enable_settings_app==1', { |
1998 'defines': ['ENABLE_SETTINGS_APP=1'], | 2003 'defines': ['ENABLE_SETTINGS_APP=1'], |
1999 }], | 2004 }], |
2000 ['disable_ftp_support==1', { | 2005 ['disable_ftp_support==1', { |
2001 'defines': ['DISABLE_FTP_SUPPORT=1'], | 2006 'defines': ['DISABLE_FTP_SUPPORT=1'], |
2002 }], | 2007 }], |
2003 ['enable_managed_users==1', { | 2008 ['enable_managed_users==1', { |
2004 'defines': ['ENABLE_MANAGED_USERS=1'], | 2009 'defines': ['ENABLE_MANAGED_USERS=1'], |
2005 }], | 2010 }], |
| 2011 ['spdy_proxy_auth_origin != ""', { |
| 2012 'defines': ['SPDY_PROXY_AUTH_ORIGIN="<(spdy_proxy_auth_origin)"'], |
| 2013 }], |
| 2014 ['spdy_proxy_auth_property != ""', { |
| 2015 'defines': ['SPDY_PROXY_AUTH_PROPERTY="<(spdy_proxy_auth_property)"'], |
| 2016 }], |
2006 ], # conditions for 'target_defaults' | 2017 ], # conditions for 'target_defaults' |
2007 'target_conditions': [ | 2018 'target_conditions': [ |
2008 ['enable_wexit_time_destructors==1', { | 2019 ['enable_wexit_time_destructors==1', { |
2009 'conditions': [ | 2020 'conditions': [ |
2010 [ 'clang==1', { | 2021 [ 'clang==1', { |
2011 'cflags': [ | 2022 'cflags': [ |
2012 '-Wexit-time-destructors', | 2023 '-Wexit-time-destructors', |
2013 ], | 2024 ], |
2014 'xcode_settings': { | 2025 'xcode_settings': { |
2015 'WARNING_CFLAGS': [ | 2026 'WARNING_CFLAGS': [ |
(...skipping 2013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4029 # settings in target dicts. SYMROOT is a special case, because many other | 4040 # settings in target dicts. SYMROOT is a special case, because many other |
4030 # Xcode variables depend on it, including variables such as | 4041 # Xcode variables depend on it, including variables such as |
4031 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4042 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4032 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4043 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4033 # files to appear (when present) in the UI as actual files and not red | 4044 # files to appear (when present) in the UI as actual files and not red |
4034 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4045 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4035 # and therefore SYMROOT, needs to be set at the project level. | 4046 # and therefore SYMROOT, needs to be set at the project level. |
4036 'SYMROOT': '<(DEPTH)/xcodebuild', | 4047 'SYMROOT': '<(DEPTH)/xcodebuild', |
4037 }, | 4048 }, |
4038 } | 4049 } |
OLD | NEW |