OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 | 8 |
9 # Keep the archive builder happy. | 9 # Keep the archive builder happy. |
10 'chrome_personalization%': 1, | 10 'chrome_personalization%': 1, |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 '../breakpad/breakpad.gyp:breakpad_handler', | 97 '../breakpad/breakpad.gyp:breakpad_handler', |
98 '../chrome/chrome.gyp:chrome_version_header', | 98 '../chrome/chrome.gyp:chrome_version_header', |
99 'chrome_frame.gyp:chrome_frame_utils', | 99 'chrome_frame.gyp:chrome_frame_utils', |
100 'chrome_frame_helper_dll', | 100 'chrome_frame_helper_dll', |
101 'chrome_frame_helper_lib', | 101 'chrome_frame_helper_lib', |
102 ], | 102 ], |
103 'resource_include_dirs': [ | 103 'resource_include_dirs': [ |
104 '<(INTERMEDIATE_DIR)', | 104 '<(INTERMEDIATE_DIR)', |
105 '<(SHARED_INTERMEDIATE_DIR)', | 105 '<(SHARED_INTERMEDIATE_DIR)', |
106 ], | 106 ], |
107 'include_dirs': [ | |
108 # To allow including "chrome_tab.h" | |
109 '<(INTERMEDIATE_DIR)', | |
110 '<(INTERMEDIATE_DIR)/../chrome_frame', | |
111 ], | |
112 'sources': [ | 107 'sources': [ |
113 'chrome_frame_helper_main.cc', | 108 'chrome_frame_helper_main.cc', |
114 'chrome_frame_helper_version.rc', | 109 'chrome_frame_helper_version.rc', |
115 ], | 110 ], |
116 'msvs_settings': { | 111 'msvs_settings': { |
117 'VCLinkerTool': { | 112 'VCLinkerTool': { |
118 'OutputFile': | 113 'OutputFile': |
119 '$(OutDir)\\$(ProjectName).exe', | 114 '$(OutDir)\\$(ProjectName).exe', |
120 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. | 115 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. |
121 'SubSystem': '2', | 116 'SubSystem': '2', |
122 }, | 117 }, |
123 }, | 118 }, |
124 }, | 119 }, |
125 { | 120 { |
126 'target_name': 'chrome_frame_helper_dll', | 121 'target_name': 'chrome_frame_helper_dll', |
127 'type': 'shared_library', | 122 'type': 'shared_library', |
128 'dependencies': [ | 123 'dependencies': [ |
129 '../chrome/chrome.gyp:chrome_version_header', | 124 '../chrome/chrome.gyp:chrome_version_header', |
130 'chrome_frame_helper_lib', | 125 'chrome_frame_helper_lib', |
131 ], | 126 ], |
132 'resource_include_dirs': [ | 127 'resource_include_dirs': [ |
133 '<(INTERMEDIATE_DIR)', | 128 '<(INTERMEDIATE_DIR)', |
134 '<(SHARED_INTERMEDIATE_DIR)', | 129 '<(SHARED_INTERMEDIATE_DIR)', |
135 ], | 130 ], |
136 'include_dirs': [ | |
137 # To allow including "chrome_tab.h" | |
138 '<(INTERMEDIATE_DIR)', | |
139 '<(INTERMEDIATE_DIR)/../chrome_frame', | |
140 ], | |
141 'sources': [ | 131 'sources': [ |
142 'bho_loader.cc', | 132 'bho_loader.cc', |
143 'bho_loader.h', | 133 'bho_loader.h', |
144 'chrome_frame_helper_dll.cc', | 134 'chrome_frame_helper_dll.cc', |
145 'chrome_frame_helper_dll.def', | 135 'chrome_frame_helper_dll.def', |
146 'chrome_frame_helper_version.rc', | 136 'chrome_frame_helper_version.rc', |
147 '<(SHARED_INTERMEDIATE_DIR)/chrome_tab.h', | 137 '<(SHARED_INTERMEDIATE_DIR)/chrome_frame/chrome_tab.h', |
148 'chrome_tab.idl', | 138 'chrome_tab.idl', |
149 'event_hooker.cc', | 139 'event_hooker.cc', |
150 'event_hooker.h', | 140 'event_hooker.h', |
151 'iids.cc', | 141 'iids.cc', |
152 ], | 142 ], |
153 'msvs_settings': { | 143 'msvs_settings': { |
154 'VCLinkerTool': { | 144 'VCLinkerTool': { |
155 'OutputFile': '$(OutDir)\\chrome_frame_helper.dll', | 145 'OutputFile': '$(OutDir)\\chrome_frame_helper.dll', |
156 'ProgramDatabaseFile': '$(OutDir)\\chrome_frame_helper_dll.pdb', | 146 'ProgramDatabaseFile': '$(OutDir)\\chrome_frame_helper_dll.pdb', |
157 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. | 147 # Set /SUBSYSTEM:WINDOWS since this is not a command-line program. |
158 'SubSystem': '2', | 148 'SubSystem': '2', |
159 }, | 149 }, |
160 }, | 150 }, |
161 }, | 151 }, |
162 { | 152 { |
163 'target_name': 'chrome_frame_helper_lib', | 153 'target_name': 'chrome_frame_helper_lib', |
164 'type': 'static_library', | 154 'type': 'static_library', |
165 'dependencies': [ | 155 'dependencies': [ |
166 '../chrome/chrome.gyp:chrome_version_header', | 156 '../chrome/chrome.gyp:chrome_version_header', |
167 ], | 157 ], |
168 'resource_include_dirs': [ | 158 'resource_include_dirs': [ |
169 '<(INTERMEDIATE_DIR)', | 159 '<(INTERMEDIATE_DIR)', |
170 '<(SHARED_INTERMEDIATE_DIR)', | 160 '<(SHARED_INTERMEDIATE_DIR)', |
171 ], | 161 ], |
172 'include_dirs': [ | |
173 # To allow including "chrome_tab.h" | |
174 '<(INTERMEDIATE_DIR)', | |
175 '<(INTERMEDIATE_DIR)/../chrome_frame', | |
176 ], | |
177 'sources': [ | 162 'sources': [ |
178 'chrome_frame_helper_util.cc', | 163 'chrome_frame_helper_util.cc', |
179 'chrome_frame_helper_util.h', | 164 'chrome_frame_helper_util.h', |
180 'registry_watcher.cc', | 165 'registry_watcher.cc', |
181 'registry_watcher.h', | 166 'registry_watcher.h', |
182 '<(SHARED_INTERMEDIATE_DIR)/chrome_tab.h', | 167 '<(SHARED_INTERMEDIATE_DIR)/chrome_frame/chrome_tab.h', |
183 'chrome_tab.idl', | 168 'chrome_tab.idl', |
184 'iids.cc', | 169 'iids.cc', |
185 ], | 170 ], |
186 'msvs_settings': { | 171 'msvs_settings': { |
187 'VCLinkerTool': { | 172 'VCLinkerTool': { |
188 'AdditionalDependencies': [ | 173 'AdditionalDependencies': [ |
189 'shlwapi.lib', | 174 'shlwapi.lib', |
190 ], | 175 ], |
191 }, | 176 }, |
192 }, | 177 }, |
193 }, | 178 }, |
194 ], | 179 ], |
195 } | 180 } |
OLD | NEW |