| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "master_preferences.h", | 86 "master_preferences.h", |
| 87 "product.cc", | 87 "product.cc", |
| 88 "product.h", | 88 "product.h", |
| 89 "product_operations.h", | 89 "product_operations.h", |
| 90 "registry_entry.cc", | 90 "registry_entry.cc", |
| 91 "registry_entry.h", | 91 "registry_entry.h", |
| 92 "scoped_user_protocol_entry.cc", | 92 "scoped_user_protocol_entry.cc", |
| 93 "scoped_user_protocol_entry.h", | 93 "scoped_user_protocol_entry.h", |
| 94 "self_cleaning_temp_dir.cc", | 94 "self_cleaning_temp_dir.cc", |
| 95 "self_cleaning_temp_dir.h", | 95 "self_cleaning_temp_dir.h", |
| 96 "shell_registry_util.cc", |
| 97 "shell_registry_util.h", |
| 96 "shell_util.cc", | 98 "shell_util.cc", |
| 97 "shell_util.h", | 99 "shell_util.h", |
| 98 "uninstall_metrics.cc", | 100 "uninstall_metrics.cc", |
| 99 "uninstall_metrics.h", | 101 "uninstall_metrics.h", |
| 100 "user_experiment.cc", | 102 "user_experiment.cc", |
| 101 "user_experiment.h", | 103 "user_experiment.h", |
| 102 ] | 104 ] |
| 103 | 105 |
| 104 deps += [ | 106 deps += [ |
| 105 # Need to depend on the generated strings target since files here | 107 # Need to depend on the generated strings target since files here |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 "//chrome/installer/test:alternate_version_generator_lib", | 338 "//chrome/installer/test:alternate_version_generator_lib", |
| 337 "//components/variations", | 339 "//components/variations", |
| 338 "//content/public/common", | 340 "//content/public/common", |
| 339 "//testing/gmock", | 341 "//testing/gmock", |
| 340 "//testing/gtest", | 342 "//testing/gtest", |
| 341 ] | 343 ] |
| 342 | 344 |
| 343 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest | 345 # TODO(GYP) manifest: $(ProjectDir)\\installer\\mini_installer\\mini_install
er.exe.manifest |
| 344 } | 346 } |
| 345 } # is_win | 347 } # is_win |
| OLD | NEW |