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 1784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1795 'use_brlapi%': 1, | 1795 'use_brlapi%': 1, |
1796 }], | 1796 }], |
1797 | 1797 |
1798 ['use_ozone==1', { | 1798 ['use_ozone==1', { |
1799 # This is the default platform | 1799 # This is the default platform |
1800 'ozone_platform%': "test", | 1800 'ozone_platform%': "test", |
1801 | 1801 |
1802 # Enable built-in ozone platforms if ozone is enabled. | 1802 # Enable built-in ozone platforms if ozone is enabled. |
1803 'ozone_platform_dri%': 1, | 1803 'ozone_platform_dri%': 1, |
1804 'ozone_platform_test%': 1, | 1804 'ozone_platform_test%': 1, |
| 1805 }, { # use_ozone==0 |
| 1806 'ozone_platform_dri%': 0, |
| 1807 'ozone_platform_test%': 0, |
1805 }], | 1808 }], |
1806 ], | 1809 ], |
1807 | 1810 |
1808 | 1811 |
1809 # The path to the ANGLE library. TODO(apatrick): This is to help | 1812 # The path to the ANGLE library. TODO(apatrick): This is to help |
1810 # transition to a new version of ANGLE at a new location. After the | 1813 # transition to a new version of ANGLE at a new location. After the |
1811 # transition is complete, this can be removed. | 1814 # transition is complete, this can be removed. |
1812 'angle_path': '<(DEPTH)/third_party/angle_dx11', | 1815 'angle_path': '<(DEPTH)/third_party/angle_dx11', |
1813 | 1816 |
1814 # List of default apps to install in new profiles. The first list contains | 1817 # List of default apps to install in new profiles. The first list contains |
(...skipping 2876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4691 # settings in target dicts. SYMROOT is a special case, because many other | 4694 # settings in target dicts. SYMROOT is a special case, because many other |
4692 # Xcode variables depend on it, including variables such as | 4695 # Xcode variables depend on it, including variables such as |
4693 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4696 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4694 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4697 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4695 # files to appear (when present) in the UI as actual files and not red | 4698 # files to appear (when present) in the UI as actual files and not red |
4696 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4699 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4697 # and therefore SYMROOT, needs to be set at the project level. | 4700 # and therefore SYMROOT, needs to be set at the project level. |
4698 'SYMROOT': '<(DEPTH)/xcodebuild', | 4701 'SYMROOT': '<(DEPTH)/xcodebuild', |
4699 }, | 4702 }, |
4700 } | 4703 } |
OLD | NEW |