OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 static_library("util") { | 8 static_library("util") { |
9 deps = [ | 9 deps = [ |
10 "//base", | 10 "//base", |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 "duplicate_tree_detector.cc", | 115 "duplicate_tree_detector.cc", |
116 "duplicate_tree_detector.h", | 116 "duplicate_tree_detector.h", |
117 "firewall_manager_win.cc", | 117 "firewall_manager_win.cc", |
118 "firewall_manager_win.h", | 118 "firewall_manager_win.h", |
119 "google_chrome_binaries_distribution.cc", | 119 "google_chrome_binaries_distribution.cc", |
120 "google_chrome_binaries_distribution.h", | 120 "google_chrome_binaries_distribution.h", |
121 "google_chrome_sxs_distribution.cc", | 121 "google_chrome_sxs_distribution.cc", |
122 "google_chrome_sxs_distribution.h", | 122 "google_chrome_sxs_distribution.h", |
123 "google_update_constants.cc", | 123 "google_update_constants.cc", |
124 "google_update_constants.h", | 124 "google_update_constants.h", |
125 "google_update_experiment_util.cc", | |
126 "google_update_experiment_util.h", | |
127 "google_update_settings.cc", | 125 "google_update_settings.cc", |
128 "google_update_settings.h", | 126 "google_update_settings.h", |
129 "google_update_util.cc", | 127 "google_update_util.cc", |
130 "google_update_util.h", | 128 "google_update_util.h", |
131 "helper.cc", | 129 "helper.cc", |
132 "helper.h", | 130 "helper.h", |
133 "install_util.cc", | 131 "install_util.cc", |
134 "install_util.h", | 132 "install_util.h", |
135 "installation_state.cc", | 133 "installation_state.cc", |
136 "installation_state.h", | 134 "installation_state.h", |
(...skipping 23 matching lines...) Expand all Loading... |
160 "util_constants.h", | 158 "util_constants.h", |
161 "wmi.cc", | 159 "wmi.cc", |
162 "wmi.h", | 160 "wmi.h", |
163 "work_item.cc", | 161 "work_item.cc", |
164 "work_item.h", | 162 "work_item.h", |
165 "work_item_list.cc", | 163 "work_item_list.cc", |
166 "work_item_list.h", | 164 "work_item_list.h", |
167 ] | 165 ] |
168 } else { | 166 } else { |
169 sources = [ | 167 sources = [ |
170 "google_update_experiment_util.cc", | |
171 "google_update_experiment_util.h", | |
172 "master_preferences.cc", | 168 "master_preferences.cc", |
173 "master_preferences.h", | 169 "master_preferences.h", |
174 "master_preferences_constants.cc", | 170 "master_preferences_constants.cc", |
175 "master_preferences_constants.h", | 171 "master_preferences_constants.h", |
176 ] | 172 ] |
177 } | 173 } |
178 } | 174 } |
179 | 175 |
180 action("generate_strings") { | 176 action("generate_strings") { |
181 visibility = [ ":strings" ] | 177 visibility = [ ":strings" ] |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 | 262 |
267 deps = [ | 263 deps = [ |
268 ":strings", | 264 ":strings", |
269 ":util", | 265 ":util", |
270 "//base", | 266 "//base", |
271 "//base:i18n", | 267 "//base:i18n", |
272 "//base/test:test_support", | 268 "//base/test:test_support", |
273 "//chrome:other_version", | 269 "//chrome:other_version", |
274 "//chrome/common", | 270 "//chrome/common", |
275 "//chrome/installer/test:alternate_version_generator_lib", | 271 "//chrome/installer/test:alternate_version_generator_lib", |
| 272 "//components/variations", |
276 "//content/public/common", | 273 "//content/public/common", |
277 | 274 |
278 # TODO(rockot): Remove this hack when we fix mojo environment deps. | 275 # TODO(rockot): Remove this hack when we fix mojo environment deps. |
279 # See http://crbug.com/501385 | 276 # See http://crbug.com/501385 |
280 "//mojo/environment:chromium", | 277 "//mojo/environment:chromium", |
281 "//testing/gmock", | 278 "//testing/gmock", |
282 "//testing/gtest", | 279 "//testing/gtest", |
283 ] | 280 ] |
284 | 281 |
285 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest | 282 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest |
286 } | 283 } |
287 } # is_win | 284 } # is_win |
OLD | NEW |