Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: build/common.gypi

Issue 44053005: Implement --ozone-platform flag to select OzonePlatform implementation at runtime (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ui/ozone/generate_ozone_platform_list.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1776 matching lines...) Expand 10 before | Expand all | Expand 10 after
1787 'arm_float_abi%': '', 1787 'arm_float_abi%': '',
1788 'arm_thumb%': 0, 1788 'arm_thumb%': 0,
1789 }], 1789 }],
1790 1790
1791 # Enable brlapi by default for chromeos. 1791 # Enable brlapi by default for chromeos.
1792 [ 'chromeos==1', { 1792 [ 'chromeos==1', {
1793 'use_brlapi%': 1, 1793 'use_brlapi%': 1,
1794 }], 1794 }],
1795 1795
1796 ['use_ozone==1', { 1796 ['use_ozone==1', {
1797 # This is the default platform
1797 'ozone_platform%': "test", 1798 'ozone_platform%': "test",
1799
1800 # Enable built-in ozone platforms if ozone is enabled.
1801 'ozone_platform_dri%': 1,
1802 'ozone_platform_test%': 1,
1798 }], 1803 }],
1799 ], 1804 ],
1800 1805
1801 1806
1802 # The path to the ANGLE library. TODO(apatrick): This is to help 1807 # The path to the ANGLE library. TODO(apatrick): This is to help
1803 # transition to a new version of ANGLE at a new location. After the 1808 # transition to a new version of ANGLE at a new location. After the
1804 # transition is complete, this can be removed. 1809 # transition is complete, this can be removed.
1805 'angle_path': '<(DEPTH)/third_party/angle_dx11', 1810 'angle_path': '<(DEPTH)/third_party/angle_dx11',
1806 1811
1807 # List of default apps to install in new profiles. The first list contains 1812 # List of default apps to install in new profiles. The first list contains
(...skipping 2849 matching lines...) Expand 10 before | Expand all | Expand 10 after
4657 # settings in target dicts. SYMROOT is a special case, because many other 4662 # settings in target dicts. SYMROOT is a special case, because many other
4658 # Xcode variables depend on it, including variables such as 4663 # Xcode variables depend on it, including variables such as
4659 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4664 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4660 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4665 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4661 # files to appear (when present) in the UI as actual files and not red 4666 # files to appear (when present) in the UI as actual files and not red
4662 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4667 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4663 # and therefore SYMROOT, needs to be set at the project level. 4668 # and therefore SYMROOT, needs to be set at the project level.
4664 'SYMROOT': '<(DEPTH)/xcodebuild', 4669 'SYMROOT': '<(DEPTH)/xcodebuild',
4665 }, 4670 },
4666 } 4671 }
OLDNEW
« no previous file with comments | « no previous file | ui/ozone/generate_ozone_platform_list.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698