| 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 23 matching lines...) Expand all Loading... |
| 34 "archive_patch_helper.cc", | 34 "archive_patch_helper.cc", |
| 35 "archive_patch_helper.h", | 35 "archive_patch_helper.h", |
| 36 "install.cc", | 36 "install.cc", |
| 37 "install.h", | 37 "install.h", |
| 38 "install_worker.cc", | 38 "install_worker.cc", |
| 39 "install_worker.h", | 39 "install_worker.h", |
| 40 "installer_crash_reporter_client.cc", | 40 "installer_crash_reporter_client.cc", |
| 41 "installer_crash_reporter_client.h", | 41 "installer_crash_reporter_client.h", |
| 42 "installer_crash_reporting.cc", | 42 "installer_crash_reporting.cc", |
| 43 "installer_crash_reporting.h", | 43 "installer_crash_reporting.h", |
| 44 "installer_metrics.cc", |
| 45 "installer_metrics.h", |
| 44 "setup_constants.cc", | 46 "setup_constants.cc", |
| 45 "setup_constants.h", | 47 "setup_constants.h", |
| 46 "setup_util.cc", | 48 "setup_util.cc", |
| 47 "setup_util.h", | 49 "setup_util.h", |
| 48 "update_active_setup_version_work_item.cc", | 50 "update_active_setup_version_work_item.cc", |
| 49 "update_active_setup_version_work_item.h", | 51 "update_active_setup_version_work_item.h", |
| 50 ] | 52 ] |
| 51 | 53 |
| 52 public_deps = [ | 54 public_deps = [ |
| 53 "//base", | 55 "//base", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "//testing/gmock", | 90 "//testing/gmock", |
| 89 "//testing/gtest", | 91 "//testing/gtest", |
| 90 ] | 92 ] |
| 91 | 93 |
| 92 data = [ | 94 data = [ |
| 93 "//chrome/installer/test/data/", | 95 "//chrome/installer/test/data/", |
| 94 "//chrome/test/data/installer/", | 96 "//chrome/test/data/installer/", |
| 95 ] | 97 ] |
| 96 } | 98 } |
| 97 } | 99 } |
| OLD | NEW |