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

Unified Diff: apps/apps.gypi

Issue 149463002: [App Shell] Port app_shell to windows aura.(not use) (Closed) Base URL: https://github.com/mirrors/chromium.git@master
Patch Set: Created 6 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
Index: apps/apps.gypi
diff --git a/apps/apps.gypi b/apps/apps.gypi
index bcb458c6f99df7406de7cc2f1a9dbcb3338bc792..fe1ed970c755bc0e4ebd198fd42eba962bd8805e 100644
--- a/apps/apps.gypi
+++ b/apps/apps.gypi
@@ -97,7 +97,7 @@
},
], # targets
'conditions': [
- ['chromeos==1 or (OS=="linux" and use_aura==1)', {
+ ['chromeos==1 or (OS=="linux" and use_aura==1) or (OS=="win" and use_aura==1)', {
'targets': [
{
'target_name': 'app_shell',
@@ -146,6 +146,18 @@
'shell/web_view_window.cc',
'shell/web_view_window.cc',
],
+ 'conditions': [
+ ['OS=="win"', {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
+ },
+ },
+ 'dependencies': [
+ '../sandbox/sandbox.gyp:sandbox',
+ ],
+ }],
+ ],
},
], # targets
}], # chromeos==1

Powered by Google App Engine
This is Rietveld 408576698