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

Side by Side Diff: build/common.gypi

Issue 1059073002: Loads CastEglPlatform implementation from shared library. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add myself to OWNERS for cast ozone platform. Created 5 years, 8 months 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 | chromecast/chromecast.gyp » ('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 1498 matching lines...) Expand 10 before | Expand all | Expand 10 after
1509 'enable_mpeg2ts_stream_parser%': 0, 1509 'enable_mpeg2ts_stream_parser%': 0,
1510 1510
1511 # Support ChromeOS touchpad gestures with ozone. 1511 # Support ChromeOS touchpad gestures with ozone.
1512 'use_evdev_gestures%': 0, 1512 'use_evdev_gestures%': 0,
1513 1513
1514 # Default ozone platform (if no --ozone-platform flag). 1514 # Default ozone platform (if no --ozone-platform flag).
1515 'ozone_platform%': "", 1515 'ozone_platform%': "",
1516 1516
1517 # Ozone platforms to include in the build. 1517 # Ozone platforms to include in the build.
1518 'ozone_platform_caca%': 0, 1518 'ozone_platform_caca%': 0,
1519 'ozone_platform_cast%': 0,
1519 'ozone_platform_dri%': 0, 1520 'ozone_platform_dri%': 0,
1520 'ozone_platform_drm%': 0, 1521 'ozone_platform_drm%': 0,
1521 'ozone_platform_egltest%': 0, 1522 'ozone_platform_egltest%': 0,
1522 'ozone_platform_gbm%': 0, 1523 'ozone_platform_gbm%': 0,
1523 'ozone_platform_ozonex%': 0, 1524 'ozone_platform_ozonex%': 0,
1524 'ozone_platform_test%': 0, 1525 'ozone_platform_test%': 0,
1525 1526
1526 # Experiment: http://crbug.com/426914 1527 # Experiment: http://crbug.com/426914
1527 'envoy%': 0, 1528 'envoy%': 0,
1528 1529
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
1843 'use_playready%': 0, 1844 'use_playready%': 0,
1844 'conditions': [ 1845 'conditions': [
1845 ['target_arch=="arm"', { 1846 ['target_arch=="arm"', {
1846 'arm_arch%': '', 1847 'arm_arch%': '',
1847 'arm_tune%': 'cortex-a9', 1848 'arm_tune%': 'cortex-a9',
1848 'arm_thumb%': 1, 1849 'arm_thumb%': 1,
1849 'video_hole%': 1, 1850 'video_hole%': 1,
1850 }], 1851 }],
1851 ], 1852 ],
1852 }], 1853 }],
1854 ['chromecast==1 and OS!="android"', {
1855 'ozone_platform_cast%': 1
1856 }],
1853 ['OS=="linux" and target_arch!="mipsel"', { 1857 ['OS=="linux" and target_arch!="mipsel"', {
1854 'clang%': 1, 1858 'clang%': 1,
1855 }], # OS=="mac" 1859 }], # OS=="mac"
1856 ['OS=="mac"', { 1860 ['OS=="mac"', {
1857 'conditions': [ 1861 'conditions': [
1858 # All Chrome builds have breakpad symbols, but only process the 1862 # All Chrome builds have breakpad symbols, but only process the
1859 # symbols from official builds. 1863 # symbols from official builds.
1860 ['(branding=="Chrome" and buildtype=="Official")', { 1864 ['(branding=="Chrome" and buildtype=="Official")', {
1861 'mac_strip_release%': 1, 1865 'mac_strip_release%': 1,
1862 }], 1866 }],
(...skipping 4228 matching lines...) Expand 10 before | Expand all | Expand 10 after
6091 # settings in target dicts. SYMROOT is a special case, because many other 6095 # settings in target dicts. SYMROOT is a special case, because many other
6092 # Xcode variables depend on it, including variables such as 6096 # Xcode variables depend on it, including variables such as
6093 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6097 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6094 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6098 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6095 # files to appear (when present) in the UI as actual files and not red 6099 # files to appear (when present) in the UI as actual files and not red
6096 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6100 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6097 # and therefore SYMROOT, needs to be set at the project level. 6101 # and therefore SYMROOT, needs to be set at the project level.
6098 'SYMROOT': '<(DEPTH)/xcodebuild', 6102 'SYMROOT': '<(DEPTH)/xcodebuild',
6099 }, 6103 },
6100 } 6104 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/chromecast.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698