Chromium Code Reviews| 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 | |
|
grt (UTC plus 2)
2014/07/21 22:27:32
hmm. i'm wondering if it's better to keep this hac
gab
2014/07/22 16:18:38
Looking at the sources for chrome_nacl_win64 targe
| |
| 194 # metrics_win64 target solely for this purpose... | |
|
grt (UTC plus 2)
2014/07/22 16:47:12
nit: ... -> .
gab
2014/07/22 19:09:40
Done.
| |
| 195 '../components/metrics/client_info.cc', | |
| 196 '../components/metrics/client_info.h', | |
| 197 | |
|
grt (UTC plus 2)
2014/07/22 16:47:11
nit: remove newline
gab
2014/07/22 19:09:40
Done.
| |
| 192 'installer/util/google_chrome_distribution_dummy.cc', | 198 'installer/util/google_chrome_distribution_dummy.cc', |
| 193 'installer/util/master_preferences.h', | 199 'installer/util/master_preferences.h', |
| 194 'installer/util/master_preferences_dummy.cc', | 200 'installer/util/master_preferences_dummy.cc', |
| 195 ], | 201 ], |
| 196 'configurations': { | 202 'configurations': { |
| 197 'Common_Base': { | 203 'Common_Base': { |
| 198 'msvs_target_platform': 'x64', | 204 'msvs_target_platform': 'x64', |
| 199 }, | 205 }, |
| 200 }, | 206 }, |
| 201 }, | 207 }, |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 221 ], | 227 ], |
| 222 'include_dirs': [ | 228 'include_dirs': [ |
| 223 '<(DEPTH)', | 229 '<(DEPTH)', |
| 224 ], | 230 ], |
| 225 } | 231 } |
| 226 ], | 232 ], |
| 227 }], | 233 }], |
| 228 | 234 |
| 229 ], | 235 ], |
| 230 } | 236 } |
| OLD | NEW |