OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'installer_util_target': 0, | 8 'installer_util_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 'variables': { | 114 'variables': { |
115 'installer_util_target': 1, | 115 'installer_util_target': 1, |
116 }, | 116 }, |
117 'dependencies': [ | 117 'dependencies': [ |
118 'installer_util_strings', | 118 'installer_util_strings', |
119 '<(DEPTH)/base/base.gyp:base', | 119 '<(DEPTH)/base/base.gyp:base', |
120 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.g
yp:dynamic_annotations', | 120 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.g
yp:dynamic_annotations', |
121 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', | 121 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
122 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', | 122 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', |
123 '<(DEPTH)/chrome/common_constants.gyp:common_constants', | 123 '<(DEPTH)/chrome/common_constants.gyp:common_constants', |
| 124 '<(DEPTH)/components/components.gyp:metrics', |
124 '<(DEPTH)/courgette/courgette.gyp:courgette_lib', | 125 '<(DEPTH)/courgette/courgette.gyp:courgette_lib', |
125 '<(DEPTH)/crypto/crypto.gyp:crypto', | 126 '<(DEPTH)/crypto/crypto.gyp:crypto', |
126 '<(DEPTH)/third_party/bspatch/bspatch.gyp:bspatch', | 127 '<(DEPTH)/third_party/bspatch/bspatch.gyp:bspatch', |
127 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', | 128 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
128 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | 129 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
129 '<(DEPTH)/third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk', | 130 '<(DEPTH)/third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk', |
130 ], | 131 ], |
131 'sources': [ | 132 'sources': [ |
132 'installer/util/chrome_app_host_operations.cc', | 133 'installer/util/chrome_app_host_operations.cc', |
133 'installer/util/chrome_app_host_operations.h', | 134 'installer/util/chrome_app_host_operations.h', |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 'variables': { | 183 'variables': { |
183 'installer_util_target': 1, | 184 'installer_util_target': 1, |
184 }, | 185 }, |
185 'dependencies': [ | 186 'dependencies': [ |
186 'installer_util_strings', | 187 'installer_util_strings', |
187 ], | 188 ], |
188 'include_dirs': [ | 189 'include_dirs': [ |
189 '<(SHARED_INTERMEDIATE_DIR)', | 190 '<(SHARED_INTERMEDIATE_DIR)', |
190 ], | 191 ], |
191 'sources': [ | 192 'sources': [ |
| 193 # Include |client_info.cc| directly here to avoid having to create a |
| 194 # metrics_win64 target solely for this purpose. |
| 195 '../components/metrics/client_info.cc', |
| 196 '../components/metrics/client_info.h', |
192 'installer/util/google_chrome_distribution_dummy.cc', | 197 'installer/util/google_chrome_distribution_dummy.cc', |
193 'installer/util/master_preferences.h', | 198 'installer/util/master_preferences.h', |
194 'installer/util/master_preferences_dummy.cc', | 199 'installer/util/master_preferences_dummy.cc', |
195 ], | 200 ], |
196 'configurations': { | 201 'configurations': { |
197 'Common_Base': { | 202 'Common_Base': { |
198 'msvs_target_platform': 'x64', | 203 'msvs_target_platform': 'x64', |
199 }, | 204 }, |
200 }, | 205 }, |
201 }, | 206 }, |
(...skipping 19 matching lines...) Expand all Loading... |
221 ], | 226 ], |
222 'include_dirs': [ | 227 'include_dirs': [ |
223 '<(DEPTH)', | 228 '<(DEPTH)', |
224 ], | 229 ], |
225 } | 230 } |
226 ], | 231 ], |
227 }], | 232 }], |
228 | 233 |
229 ], | 234 ], |
230 } | 235 } |
OLD | NEW |