| Index: apps/apps.gypi
|
| diff --git a/apps/apps.gypi b/apps/apps.gypi
|
| index 80f2fca5279105243824d2eadab550b91df20467..a12a0939ee173075d9cf6b2ac304b476111838bc 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',
|
| @@ -148,6 +148,18 @@
|
| 'shell/renderer/shell_content_renderer_client.cc',
|
| 'shell/renderer/shell_content_renderer_client.h',
|
| ],
|
| + 'conditions': [
|
| + ['OS=="win"', {
|
| + 'msvs_settings': {
|
| + 'VCLinkerTool': {
|
| + 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
|
| + },
|
| + },
|
| + 'dependencies': [
|
| + '../sandbox/sandbox.gyp:sandbox',
|
| + ],
|
| + }],
|
| + ],
|
| },
|
| ], # targets
|
| }], # chromeos==1
|
|
|