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 602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
613 'enable_service_discovery%': 0, | 613 'enable_service_discovery%': 0, |
614 'enable_wifi_bootstrapping%': 0, | 614 'enable_wifi_bootstrapping%': 0, |
615 'enable_hangout_services_extension%': 0, | 615 'enable_hangout_services_extension%': 0, |
616 | 616 |
617 # Enable the Syzygy optimization step. | 617 # Enable the Syzygy optimization step. |
618 'syzygy_optimize%': 0, | 618 'syzygy_optimize%': 0, |
619 | 619 |
620 # Enable hole punching for the protected video. | 620 # Enable hole punching for the protected video. |
621 'video_hole%': 0, | 621 'video_hole%': 0, |
622 | 622 |
| 623 # Temporary hack to allow us to unify blink's definitions of load |
| 624 # completion. blink uses a crazy set of constraints to determine load |
| 625 # completion, but only actually requires them for layout tests. However, |
| 626 # we need to maintain all the old behaviors while the plumbing is put in |
| 627 # place on both sides of the repo boundary. |
| 628 'enable_load_completion_hacks%': 1, |
| 629 |
623 # Automatically select platforms under ozone. Turn this off to | 630 # Automatically select platforms under ozone. Turn this off to |
624 # build only explicitly selected platforms. | 631 # build only explicitly selected platforms. |
625 'ozone_auto_platforms%': 1, | 632 'ozone_auto_platforms%': 1, |
626 | 633 |
627 # If this is set clang is used as host compiler, but not as target | 634 # If this is set clang is used as host compiler, but not as target |
628 # compiler. Always do this by default. | 635 # compiler. Always do this by default. |
629 'host_clang%': 1, | 636 'host_clang%': 1, |
630 | 637 |
631 'conditions': [ | 638 'conditions': [ |
632 # A flag for POSIX platforms | 639 # A flag for POSIX platforms |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1186 'data_reduction_proxy_alt_fallback_origin%' : '<(data_reduction_proxy_alt_fa
llback_origin)', | 1193 'data_reduction_proxy_alt_fallback_origin%' : '<(data_reduction_proxy_alt_fa
llback_origin)', |
1187 'enable_mdns%' : '<(enable_mdns)', | 1194 'enable_mdns%' : '<(enable_mdns)', |
1188 'enable_service_discovery%' : '<(enable_service_discovery)', | 1195 'enable_service_discovery%' : '<(enable_service_discovery)', |
1189 'enable_wifi_bootstrapping%': '<(enable_wifi_bootstrapping)', | 1196 'enable_wifi_bootstrapping%': '<(enable_wifi_bootstrapping)', |
1190 'enable_hangout_services_extension%' : '<(enable_hangout_services_extension)
', | 1197 'enable_hangout_services_extension%' : '<(enable_hangout_services_extension)
', |
1191 'v8_optimized_debug%': '<(v8_optimized_debug)', | 1198 'v8_optimized_debug%': '<(v8_optimized_debug)', |
1192 'proprietary_codecs%': '<(proprietary_codecs)', | 1199 'proprietary_codecs%': '<(proprietary_codecs)', |
1193 'use_goma%': '<(use_goma)', | 1200 'use_goma%': '<(use_goma)', |
1194 'gomadir%': '<(gomadir)', | 1201 'gomadir%': '<(gomadir)', |
1195 'video_hole%': '<(video_hole)', | 1202 'video_hole%': '<(video_hole)', |
| 1203 'enable_load_completion_hacks%': '<(enable_load_completion_hacks)', |
1196 | 1204 |
1197 # Whether or not we are building the Athena shell. | 1205 # Whether or not we are building the Athena shell. |
1198 'use_athena%': '0', | 1206 'use_athena%': '0', |
1199 | 1207 |
1200 # Use system protobuf instead of bundled one. | 1208 # Use system protobuf instead of bundled one. |
1201 'use_system_protobuf%': 0, | 1209 'use_system_protobuf%': 0, |
1202 | 1210 |
1203 # Use system yasm instead of bundled one. | 1211 # Use system yasm instead of bundled one. |
1204 'use_system_yasm%': 0, | 1212 'use_system_yasm%': 0, |
1205 | 1213 |
(...skipping 1725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2931 }], | 2939 }], |
2932 ['enable_hangout_services_extension==1', { | 2940 ['enable_hangout_services_extension==1', { |
2933 'defines': ['ENABLE_HANGOUT_SERVICES_EXTENSION=1'], | 2941 'defines': ['ENABLE_HANGOUT_SERVICES_EXTENSION=1'], |
2934 }], | 2942 }], |
2935 ['enable_ipc_fuzzer==1', { | 2943 ['enable_ipc_fuzzer==1', { |
2936 'defines': ['ENABLE_IPC_FUZZER=1'], | 2944 'defines': ['ENABLE_IPC_FUZZER=1'], |
2937 }], | 2945 }], |
2938 ['video_hole==1', { | 2946 ['video_hole==1', { |
2939 'defines': ['VIDEO_HOLE=1'], | 2947 'defines': ['VIDEO_HOLE=1'], |
2940 }], | 2948 }], |
| 2949 ['enable_load_completion_hacks==1', { |
| 2950 'defines': ['ENABLE_LOAD_COMPLETION_HACKS=1'], |
| 2951 }], |
2941 ], # conditions for 'target_defaults' | 2952 ], # conditions for 'target_defaults' |
2942 'target_conditions': [ | 2953 'target_conditions': [ |
2943 ['<(use_openssl)==1', { | 2954 ['<(use_openssl)==1', { |
2944 'defines': ['USE_OPENSSL=1'], | 2955 'defines': ['USE_OPENSSL=1'], |
2945 }], | 2956 }], |
2946 ['<(use_openssl_certs)==1', { | 2957 ['<(use_openssl_certs)==1', { |
2947 'defines': ['USE_OPENSSL_CERTS=1'], | 2958 'defines': ['USE_OPENSSL_CERTS=1'], |
2948 }], | 2959 }], |
2949 ['>(nacl_untrusted_build)==1', { | 2960 ['>(nacl_untrusted_build)==1', { |
2950 'defines': [ | 2961 'defines': [ |
(...skipping 2811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5762 # settings in target dicts. SYMROOT is a special case, because many other | 5773 # settings in target dicts. SYMROOT is a special case, because many other |
5763 # Xcode variables depend on it, including variables such as | 5774 # Xcode variables depend on it, including variables such as |
5764 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5775 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5765 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5776 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5766 # files to appear (when present) in the UI as actual files and not red | 5777 # files to appear (when present) in the UI as actual files and not red |
5767 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5778 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5768 # and therefore SYMROOT, needs to be set at the project level. | 5779 # and therefore SYMROOT, needs to be set at the project level. |
5769 'SYMROOT': '<(DEPTH)/xcodebuild', | 5780 'SYMROOT': '<(DEPTH)/xcodebuild', |
5770 }, | 5781 }, |
5771 } | 5782 } |
OLD | NEW |