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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# Copyright (c) 2010 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.
{
'variables': {
'chromium_code': 1,
# Keep the archive builder happy.
'chrome_personalization%': 1,
'use_syncapi_stub%': 0,
'variables': {
'version_py_path': '../tools/build/version.py',
'version_path': 'VERSION',
},
'version_py_path': '<(version_py_path) -f',
'version_path': '<(version_path)',
'conditions': [
['OS=="win"', {
'python': [
'<(DEPTH)\\third_party\\python_24\\setup_env.bat && python'
],
}, { # OS != win
'python': [
'python'
],
}],
],
},
'includes': [
'../build/common.gypi',
],
'target_defaults': {
'include_dirs': [
# all our own includes are relative to src/
'..',
],
},
'targets': [
{
'target_name': 'chrome_launcher',
'type': 'executable',
'msvs_guid': 'B7E540C1-49D9-4350-ACBC-FB8306316D16',
'dependencies': [
'../breakpad/breakpad.gyp:breakpad_handler',
'../chrome/chrome.gyp:chrome_version_info',
'../chrome/chrome.gyp:chrome_version_header',
],
'resource_include_dirs': [
'<(INTERMEDIATE_DIR)',
'<(SHARED_INTERMEDIATE_DIR)',
],
'sources': [
'chrome_launcher_main.cc',
'chrome_launcher_version.rc',
'chrome_launcher.cc',
'chrome_launcher.h',
],
'msvs_settings': {
'VCLinkerTool': {
'OutputFile':
'$(OutDir)\\servers\\$(ProjectName).exe',
# Set /SUBSYSTEM:WINDOWS since this is not a command-line program.
'SubSystem': '2',
'AdditionalDependencies': [
'shlwapi.lib',
],
},
},
'configurations': {
'Release_Base': {
# Set flags to unconditionally optimize chrome_frame_launcher.exe
# for release builds.
'msvs_settings': {
'VCLinkerTool': {
'LinkTimeCodeGeneration': '1',
},
'VCCLCompilerTool': {
'Optimization': '3',
'InlineFunctionExpansion': '2',
'EnableIntrinsicFunctions': 'true',
'FavorSizeOrSpeed': '2',
'OmitFramePointers': 'true',
'EnableFiberSafeOptimizations': 'true',
'WholeProgramOptimization': 'true',
},
'VCLibrarianTool': {
'AdditionalOptions': ['/ltcg', '/expectedoutputsize:120000000'],
},
},
},
},
},
],
}
|