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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 "installation_validator.h", | 45 "installation_validator.h", |
46 "logging_installer.cc", | 46 "logging_installer.cc", |
47 "logging_installer.h", | 47 "logging_installer.h", |
48 "lzma_util.cc", | 48 "lzma_util.cc", |
49 "lzma_util.h", | 49 "lzma_util.h", |
50 "master_preferences.cc", | 50 "master_preferences.cc", |
51 "master_preferences.h", | 51 "master_preferences.h", |
52 "product.cc", | 52 "product.cc", |
53 "product.h", | 53 "product.h", |
54 "product_operations.h", | 54 "product_operations.h", |
| 55 "registry_entry.cc", |
| 56 "registry_entry.h", |
55 "self_cleaning_temp_dir.cc", | 57 "self_cleaning_temp_dir.cc", |
56 "self_cleaning_temp_dir.h", | 58 "self_cleaning_temp_dir.h", |
57 "shell_util.cc", | 59 "shell_util.cc", |
58 "shell_util.h", | 60 "shell_util.h", |
59 "uninstall_metrics.cc", | 61 "uninstall_metrics.cc", |
60 "uninstall_metrics.h", | 62 "uninstall_metrics.h", |
61 "user_experiment.cc", | 63 "user_experiment.cc", |
62 "user_experiment.h", | 64 "user_experiment.h", |
63 ] | 65 ] |
64 | 66 |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 "//chrome/installer/test:alternate_version_generator_lib", | 281 "//chrome/installer/test:alternate_version_generator_lib", |
280 "//components/variations", | 282 "//components/variations", |
281 "//content/public/common", | 283 "//content/public/common", |
282 "//testing/gmock", | 284 "//testing/gmock", |
283 "//testing/gtest", | 285 "//testing/gtest", |
284 ] | 286 ] |
285 | 287 |
286 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest | 288 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest |
287 } | 289 } |
288 } # is_win | 290 } # is_win |
OLD | NEW |