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 1761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1772 }], | 1772 }], |
1773 | 1773 |
1774 ['android_webview_build==1', { | 1774 ['android_webview_build==1', { |
1775 # The WebView build gets its cpu-specific flags from the Android build s
ystem. | 1775 # The WebView build gets its cpu-specific flags from the Android build s
ystem. |
1776 'arm_arch%': '', | 1776 'arm_arch%': '', |
1777 'arm_tune%': '', | 1777 'arm_tune%': '', |
1778 'arm_fpu%': '', | 1778 'arm_fpu%': '', |
1779 'arm_float_abi%': '', | 1779 'arm_float_abi%': '', |
1780 'arm_thumb%': 0, | 1780 'arm_thumb%': 0, |
1781 }], | 1781 }], |
| 1782 |
| 1783 # Enable brlapi by default for chromeos. |
| 1784 [ 'chromeos==1', { |
| 1785 'use_brlapi%': 1, |
| 1786 }], |
1782 ], | 1787 ], |
1783 | 1788 |
1784 | 1789 |
1785 # The path to the ANGLE library. TODO(apatrick): This is to help | 1790 # The path to the ANGLE library. TODO(apatrick): This is to help |
1786 # transition to a new version of ANGLE at a new location. After the | 1791 # transition to a new version of ANGLE at a new location. After the |
1787 # transition is complete, this can be removed. | 1792 # transition is complete, this can be removed. |
1788 'angle_path': '<(DEPTH)/third_party/angle_dx11', | 1793 'angle_path': '<(DEPTH)/third_party/angle_dx11', |
1789 | 1794 |
1790 # List of default apps to install in new profiles. The first list contains | 1795 # List of default apps to install in new profiles. The first list contains |
1791 # the source files as found in svn. The second list, used only for linux, | 1796 # the source files as found in svn. The second list, used only for linux, |
(...skipping 2931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4723 # settings in target dicts. SYMROOT is a special case, because many other | 4728 # settings in target dicts. SYMROOT is a special case, because many other |
4724 # Xcode variables depend on it, including variables such as | 4729 # Xcode variables depend on it, including variables such as |
4725 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4730 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4726 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4731 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4727 # files to appear (when present) in the UI as actual files and not red | 4732 # files to appear (when present) in the UI as actual files and not red |
4728 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4733 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4729 # and therefore SYMROOT, needs to be set at the project level. | 4734 # and therefore SYMROOT, needs to be set at the project level. |
4730 'SYMROOT': '<(DEPTH)/xcodebuild', | 4735 'SYMROOT': '<(DEPTH)/xcodebuild', |
4731 }, | 4736 }, |
4732 } | 4737 } |
OLD | NEW |