| 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 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 'use_gtk3%': 0, | 685 'use_gtk3%': 0, |
| 686 | 686 |
| 687 # Control Flow Integrity for virtual calls and casts. | 687 # Control Flow Integrity for virtual calls and casts. |
| 688 # See http://clang.llvm.org/docs/ControlFlowIntegrity.html | 688 # See http://clang.llvm.org/docs/ControlFlowIntegrity.html |
| 689 'cfi_vptr%': 0, | 689 'cfi_vptr%': 0, |
| 690 'cfi_diag%': 0, | 690 'cfi_diag%': 0, |
| 691 | 691 |
| 692 'cfi_blacklist%': '<(PRODUCT_DIR)/../../tools/cfi/blacklist.txt', | 692 'cfi_blacklist%': '<(PRODUCT_DIR)/../../tools/cfi/blacklist.txt', |
| 693 | 693 |
| 694 # Whether the entire browser uses toolkit-views on Mac instead of Cocoa. | 694 # Whether the entire browser uses toolkit-views on Mac instead of Cocoa. |
| 695 'mac_views_browser%': 0, | 695 'mac_views_browser%': 1, |
| 696 | 696 |
| 697 # By default, use ICU data file (icudtl.dat). | 697 # By default, use ICU data file (icudtl.dat). |
| 698 'icu_use_data_file_flag%': 1, | 698 'icu_use_data_file_flag%': 1, |
| 699 | 699 |
| 700 # Turn on JNI generation optimizations by default. | 700 # Turn on JNI generation optimizations by default. |
| 701 'optimize_jni_generation%': 1, | 701 'optimize_jni_generation%': 1, |
| 702 | 702 |
| 703 'conditions': [ | 703 'conditions': [ |
| 704 # A flag for POSIX platforms | 704 # A flag for POSIX platforms |
| 705 ['OS=="win"', { | 705 ['OS=="win"', { |
| (...skipping 5587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6293 # settings in target dicts. SYMROOT is a special case, because many other | 6293 # settings in target dicts. SYMROOT is a special case, because many other |
| 6294 # Xcode variables depend on it, including variables such as | 6294 # Xcode variables depend on it, including variables such as |
| 6295 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6295 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 6296 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6296 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 6297 # files to appear (when present) in the UI as actual files and not red | 6297 # files to appear (when present) in the UI as actual files and not red |
| 6298 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6298 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 6299 # and therefore SYMROOT, needs to be set at the project level. | 6299 # and therefore SYMROOT, needs to be set at the project level. |
| 6300 'SYMROOT': '<(DEPTH)/xcodebuild', | 6300 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 6301 }, | 6301 }, |
| 6302 } | 6302 } |
| OLD | NEW |