1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'targets': [
{
'target_name': 'content_shell',
'type': 'executable',
'dependencies': [
'content_app',
'content_browser',
'content_common',
'content_gpu',
'content_plugin',
'content_ppapi_plugin',
'content_renderer',
'content_utility',
'content_worker',
'../skia/skia.gyp:skia',
'../ui/ui.gyp:ui',
],
'include_dirs': [
'..',
],
'sources': [
'shell/shell_browser_main.cc',
'shell/shell_browser_main.h',
'shell/shell_content_browser_client.cc',
'shell/shell_content_browser_client.h',
'shell/shell_content_client.cc',
'shell/shell_content_client.h',
'shell/shell_content_plugin_client.cc',
'shell/shell_content_plugin_client.h',
'shell/shell_content_renderer_client.cc',
'shell/shell_content_renderer_client.h',
'shell/shell_content_utility_client.cc',
'shell/shell_content_utility_client.h',
'shell/shell_main.cc',
],
'msvs_settings': {
'VCLinkerTool': {
'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
},
},
'conditions': [
['OS=="win" and win_use_allocator_shim==1', {
'dependencies': [
'../base/allocator/allocator.gyp:allocator',
],
}],
],
},
],
}
|