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

Unified Diff: build/common.gypi

Issue 1540563002: [chrome.displaySource] Add WiFi Display session class skeleton and mojo service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/config/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 333a500e1b9408440152bcfaf215249397a48697..a7f89693f685ee2b0b0cfe6eb7f76f7305c67212 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -88,6 +88,9 @@
# Enable Wayland display server support.
'enable_wayland_server%' : 0,
+ # Enable Wi-Fi Display support.
+ 'enable_wifi_display%' : 0,
+
# By default we build against a stable sysroot image to avoid
# depending on the packages installed on the local machine. Set this
# to 0 to build against locally installed headers and libraries (e.g.
@@ -166,6 +169,7 @@
'enable_hidpi%': '<(enable_hidpi)',
'enable_topchrome_md%': '<(enable_topchrome_md)',
'enable_wayland_server%': '<(enable_wayland_server)',
+ 'enable_wifi_display%': '<(enable_wifi_display)',
'buildtype%': '<(buildtype)',
'branding%': '<(branding)',
'branding_path_component%': '<(branding)',
@@ -351,6 +355,7 @@
'enable_hidpi%': '<(enable_hidpi)',
'enable_topchrome_md%': '<(enable_topchrome_md)',
'enable_wayland_server%': '<(enable_wayland_server)',
+ 'enable_wifi_display%': '<(enable_wifi_display)',
'android_channel%': '<(android_channel)',
'use_goma%': '<(use_goma)',
'gomadir%': '<(gomadir)',
@@ -1156,6 +1161,7 @@
'enable_hidpi%': '<(enable_hidpi)',
'enable_topchrome_md%': '<(enable_topchrome_md)',
'enable_wayland_server%': '<(enable_wayland_server)',
+ 'enable_wifi_display%': '<(enable_wifi_display)',
'image_loader_extension%': '<(image_loader_extension)',
'fastbuild%': '<(fastbuild)',
'dont_embed_build_metadata%': '<(dont_embed_build_metadata)',
@@ -2800,6 +2806,9 @@
['enable_wayland_server==1', {
'defines': ['ENABLE_WAYLAND_SERVER=1'],
}],
+ ['enable_wifi_display==1', {
+ 'defines': ['ENABLE_WIFI_DISPLAY=1'],
+ }],
['use_udev==1', {
'defines': ['USE_UDEV'],
}],
« no previous file with comments | « no previous file | build/config/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698