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

Unified Diff: extensions/extensions.gyp

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 | « extensions/common/mojo/wifi_display_session_service.mojom ('k') | extensions/extensions.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/extensions.gyp
diff --git a/extensions/extensions.gyp b/extensions/extensions.gyp
index 3c7657eb053b9ba266ddd64cd6d2c4c26c7eddb0..ad0b6bf9340b73ffcca29c57776e5b414d54da02 100644
--- a/extensions/extensions.gyp
+++ b/extensions/extensions.gyp
@@ -37,6 +37,13 @@
'sources': [
'<@(extensions_common_mojo_sources)',
],
+ 'conditions': [
+ ['enable_wifi_display==1', {
+ 'sources': [
+ '<@(extensions_common_mojo_sources_wifi_display)',
+ ],
+ }],
+ ],
},
{
# GN version: //extensions/common
@@ -177,6 +184,13 @@
'<@(extensions_browser_sources_linux_nonchromeos)',
],
}],
+ ['enable_wifi_display == 1', {
+ 'sources': [
+ '<@(extensions_browser_sources_wifi_display)',
+ '<(SHARED_INTERMEDIATE_DIR)/extensions/common/mojo/wifi_display_session_service.mojom.cc',
+ '<(SHARED_INTERMEDIATE_DIR)/extensions/common/mojo/wifi_display_session_service.mojom.h',
+ ],
+ }],
],
# Disable c4267 warnings until we fix size_t to int truncations.
'msvs_disabled_warnings': [ 4267, ],
@@ -201,6 +215,13 @@
],
# Disable c4267 warnings until we fix size_t to int truncations.
'msvs_disabled_warnings': [ 4267, ],
+ 'conditions': [
+ ['enable_wifi_display==1', {
+ 'sources': [
+ '<@(extensions_render_sources_wifi_display)',
+ ],
+ }],
+ ],
},
{
# GN version: //extensions/utility
« no previous file with comments | « extensions/common/mojo/wifi_display_session_service.mojom ('k') | extensions/extensions.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698