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 1772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1783 'arm_float_abi%': '', | 1783 'arm_float_abi%': '', |
1784 'arm_thumb%': 0, | 1784 'arm_thumb%': 0, |
1785 }], | 1785 }], |
1786 | 1786 |
1787 # Enable brlapi by default for chromeos. | 1787 # Enable brlapi by default for chromeos. |
1788 [ 'chromeos==1', { | 1788 [ 'chromeos==1', { |
1789 'use_brlapi%': 1, | 1789 'use_brlapi%': 1, |
1790 }], | 1790 }], |
1791 | 1791 |
1792 ['use_ozone==1', { | 1792 ['use_ozone==1', { |
| 1793 # This is the default platform |
1793 'ozone_platform%': "test", | 1794 'ozone_platform%': "test", |
| 1795 |
| 1796 # Enable built-in ozone platforms if ozone is enabled. |
| 1797 'ozone_platform_dri%': 1, |
| 1798 'ozone_platform_test%': 1, |
1794 }], | 1799 }], |
1795 ], | 1800 ], |
1796 | 1801 |
1797 | 1802 |
1798 # The path to the ANGLE library. TODO(apatrick): This is to help | 1803 # The path to the ANGLE library. TODO(apatrick): This is to help |
1799 # transition to a new version of ANGLE at a new location. After the | 1804 # transition to a new version of ANGLE at a new location. After the |
1800 # transition is complete, this can be removed. | 1805 # transition is complete, this can be removed. |
1801 'angle_path': '<(DEPTH)/third_party/angle_dx11', | 1806 'angle_path': '<(DEPTH)/third_party/angle_dx11', |
1802 | 1807 |
1803 # List of default apps to install in new profiles. The first list contains | 1808 # List of default apps to install in new profiles. The first list contains |
(...skipping 2932 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4736 # settings in target dicts. SYMROOT is a special case, because many other | 4741 # settings in target dicts. SYMROOT is a special case, because many other |
4737 # Xcode variables depend on it, including variables such as | 4742 # Xcode variables depend on it, including variables such as |
4738 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4743 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4739 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4744 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4740 # files to appear (when present) in the UI as actual files and not red | 4745 # files to appear (when present) in the UI as actual files and not red |
4741 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4746 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4742 # and therefore SYMROOT, needs to be set at the project level. | 4747 # and therefore SYMROOT, needs to be set at the project level. |
4743 'SYMROOT': '<(DEPTH)/xcodebuild', | 4748 'SYMROOT': '<(DEPTH)/xcodebuild', |
4744 }, | 4749 }, |
4745 } | 4750 } |
OLD | NEW |