| 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 # This file deliberately has no default "util" target so dependants have to | 8 # This file deliberately has no default "util" target so dependants have to |
| 9 # specify with the ":with_no_strings" or ":with_rc_strings" variants. Random | 9 # specify with the ":with_no_strings" or ":with_rc_strings" variants. Random |
| 10 # code that ends up getting linked into chrome proper should depend on the | 10 # code that ends up getting linked into chrome proper should depend on the |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 "google_update_settings.cc", | 173 "google_update_settings.cc", |
| 174 "google_update_settings.h", | 174 "google_update_settings.h", |
| 175 "google_update_util.cc", | 175 "google_update_util.cc", |
| 176 "google_update_util.h", | 176 "google_update_util.h", |
| 177 "helper.cc", | 177 "helper.cc", |
| 178 "helper.h", | 178 "helper.h", |
| 179 "install_util.cc", | 179 "install_util.cc", |
| 180 "install_util.h", | 180 "install_util.h", |
| 181 "installation_state.cc", | 181 "installation_state.cc", |
| 182 "installation_state.h", | 182 "installation_state.h", |
| 183 "installer_crash_reporting.cc", |
| 184 "installer_crash_reporting.h", |
| 183 "installer_state.cc", | 185 "installer_state.cc", |
| 184 "installer_state.h", | 186 "installer_state.h", |
| 185 "l10n_string_util.cc", | 187 "l10n_string_util.cc", |
| 186 "l10n_string_util.h", | 188 "l10n_string_util.h", |
| 187 "language_selector.cc", | 189 "language_selector.cc", |
| 188 "language_selector.h", | 190 "language_selector.h", |
| 189 "legacy_firewall_manager_win.cc", | 191 "legacy_firewall_manager_win.cc", |
| 190 "legacy_firewall_manager_win.h", | 192 "legacy_firewall_manager_win.h", |
| 191 "master_preferences_constants.cc", | 193 "master_preferences_constants.cc", |
| 192 "master_preferences_constants.h", | 194 "master_preferences_constants.h", |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 "//chrome/installer/test:alternate_version_generator_lib", | 337 "//chrome/installer/test:alternate_version_generator_lib", |
| 336 "//components/variations", | 338 "//components/variations", |
| 337 "//content/public/common", | 339 "//content/public/common", |
| 338 "//testing/gmock", | 340 "//testing/gmock", |
| 339 "//testing/gtest", | 341 "//testing/gtest", |
| 340 ] | 342 ] |
| 341 | 343 |
| 342 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest | 344 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest |
| 343 } | 345 } |
| 344 } # is_win | 346 } # is_win |
| OLD | NEW |