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 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
693 'use_gtk3%': 0, | 693 'use_gtk3%': 0, |
694 | 694 |
695 # Control Flow Integrity for virtual calls and casts. | 695 # Control Flow Integrity for virtual calls and casts. |
696 # See http://clang.llvm.org/docs/ControlFlowIntegrity.html | 696 # See http://clang.llvm.org/docs/ControlFlowIntegrity.html |
697 'cfi_vptr%': 0, | 697 'cfi_vptr%': 0, |
698 'cfi_diag%': 0, | 698 'cfi_diag%': 0, |
699 | 699 |
700 'cfi_blacklist%': '<(PRODUCT_DIR)/../../tools/cfi/blacklist.txt', | 700 'cfi_blacklist%': '<(PRODUCT_DIR)/../../tools/cfi/blacklist.txt', |
701 | 701 |
702 # Whether the entire browser uses toolkit-views on Mac instead of Cocoa. | 702 # Whether the entire browser uses toolkit-views on Mac instead of Cocoa. |
703 'mac_views_browser%': 0, | 703 'mac_views_browser%': 1, |
704 | 704 |
705 # By default, use ICU data file (icudtl.dat). | 705 # By default, use ICU data file (icudtl.dat). |
706 'icu_use_data_file_flag%': 1, | 706 'icu_use_data_file_flag%': 1, |
707 | 707 |
708 # Turn on JNI generation optimizations by default. | 708 # Turn on JNI generation optimizations by default. |
709 'optimize_jni_generation%': 1, | 709 'optimize_jni_generation%': 1, |
710 | 710 |
711 'conditions': [ | 711 'conditions': [ |
712 # A flag for POSIX platforms | 712 # A flag for POSIX platforms |
713 ['OS=="win"', { | 713 ['OS=="win"', { |
(...skipping 5599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6313 # settings in target dicts. SYMROOT is a special case, because many other | 6313 # settings in target dicts. SYMROOT is a special case, because many other |
6314 # Xcode variables depend on it, including variables such as | 6314 # Xcode variables depend on it, including variables such as |
6315 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6315 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6316 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6316 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6317 # files to appear (when present) in the UI as actual files and not red | 6317 # files to appear (when present) in the UI as actual files and not red |
6318 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6318 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6319 # and therefore SYMROOT, needs to be set at the project level. | 6319 # and therefore SYMROOT, needs to be set at the project level. |
6320 'SYMROOT': '<(DEPTH)/xcodebuild', | 6320 'SYMROOT': '<(DEPTH)/xcodebuild', |
6321 }, | 6321 }, |
6322 } | 6322 } |
OLD | NEW |