| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 if (is_win) { | 7 if (is_win) { |
| 8 executable("setup") { | 8 executable("setup") { |
| 9 sources = [ | 9 sources = [ |
| 10 "setup.ico", | 10 "setup.ico", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 "app_launcher_installer.cc", | 33 "app_launcher_installer.cc", |
| 34 "app_launcher_installer.h", | 34 "app_launcher_installer.h", |
| 35 "archive_patch_helper.cc", | 35 "archive_patch_helper.cc", |
| 36 "archive_patch_helper.h", | 36 "archive_patch_helper.h", |
| 37 "install.cc", | 37 "install.cc", |
| 38 "install.h", | 38 "install.h", |
| 39 "install_worker.cc", | 39 "install_worker.cc", |
| 40 "install_worker.h", | 40 "install_worker.h", |
| 41 "installer_crash_reporter_client.cc", | 41 "installer_crash_reporter_client.cc", |
| 42 "installer_crash_reporter_client.h", | 42 "installer_crash_reporter_client.h", |
| 43 "installer_crash_reporting.cc", | |
| 44 "installer_crash_reporting.h", | |
| 45 "setup_constants.cc", | 43 "setup_constants.cc", |
| 46 "setup_constants.h", | 44 "setup_constants.h", |
| 47 "setup_util.cc", | 45 "setup_util.cc", |
| 48 "setup_util.h", | 46 "setup_util.h", |
| 49 "update_active_setup_version_work_item.cc", | 47 "update_active_setup_version_work_item.cc", |
| 50 "update_active_setup_version_work_item.h", | 48 "update_active_setup_version_work_item.h", |
| 51 ] | 49 ] |
| 52 | 50 |
| 53 public_deps = [ | 51 public_deps = [ |
| 54 "//base", | 52 "//base", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 84 "//base", | 82 "//base", |
| 85 "//base:i18n", | 83 "//base:i18n", |
| 86 "//base/allocator", | 84 "//base/allocator", |
| 87 "//base/test:test_support", | 85 "//base/test:test_support", |
| 88 "//chrome/installer/mini_installer:unit_tests", | 86 "//chrome/installer/mini_installer:unit_tests", |
| 89 "//testing/gmock", | 87 "//testing/gmock", |
| 90 "//testing/gtest", | 88 "//testing/gtest", |
| 91 ] | 89 ] |
| 92 } | 90 } |
| 93 } | 91 } |
| OLD | NEW |