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

Side by Side Diff: build/common.gypi

Issue 1796123002: Implement WiFi Display elementary stream packetizer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Comments Created 4 years, 9 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 | build/config/features.gni » ('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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 # Enable HiDPI support. 82 # Enable HiDPI support.
83 'enable_hidpi%': 0, 83 'enable_hidpi%': 0,
84 84
85 # Enable top chrome material design. 85 # Enable top chrome material design.
86 'enable_topchrome_md%' : 0, 86 'enable_topchrome_md%' : 0,
87 87
88 # Enable Wayland display server support. 88 # Enable Wayland display server support.
89 'enable_wayland_server%' : 0, 89 'enable_wayland_server%' : 0,
90 90
91 # Enable Wi-Fi Display support. 91 # Enable Wi-Fi Display support.
92 # WARNING: This enables MPEG Transport Stream (MPEG-TS) encoding!
92 'enable_wifi_display%' : 0, 93 'enable_wifi_display%' : 0,
93 94
94 # By default we build against a stable sysroot image to avoid 95 # By default we build against a stable sysroot image to avoid
95 # depending on the packages installed on the local machine. Set this 96 # depending on the packages installed on the local machine. Set this
96 # to 0 to build against locally installed headers and libraries (e.g. 97 # to 0 to build against locally installed headers and libraries (e.g.
97 # if packaging for a linux distro) 98 # if packaging for a linux distro)
98 'use_sysroot%': 1, 99 'use_sysroot%': 1,
99 100
100 # Override buildtype to select the desired build flavor. 101 # Override buildtype to select the desired build flavor.
101 # Dev - everyday build for development/testing 102 # Dev - everyday build for development/testing
(...skipping 6260 matching lines...) Expand 10 before | Expand all | Expand 10 after
6362 # settings in target dicts. SYMROOT is a special case, because many other 6363 # settings in target dicts. SYMROOT is a special case, because many other
6363 # Xcode variables depend on it, including variables such as 6364 # Xcode variables depend on it, including variables such as
6364 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6365 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6365 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6366 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6366 # files to appear (when present) in the UI as actual files and not red 6367 # files to appear (when present) in the UI as actual files and not red
6367 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6368 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6368 # and therefore SYMROOT, needs to be set at the project level. 6369 # and therefore SYMROOT, needs to be set at the project level.
6369 'SYMROOT': '<(DEPTH)/xcodebuild', 6370 'SYMROOT': '<(DEPTH)/xcodebuild',
6370 }, 6371 },
6371 } 6372 }
OLDNEW
« no previous file with comments | « no previous file | build/config/features.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698