| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "installer_crash_reporting.cc", | 42 "installer_crash_reporting.cc", |
| 43 "installer_crash_reporting.h", | 43 "installer_crash_reporting.h", |
| 44 "installer_metrics.cc", | 44 "installer_metrics.cc", |
| 45 "installer_metrics.h", | 45 "installer_metrics.h", |
| 46 "setup_constants.cc", | 46 "setup_constants.cc", |
| 47 "setup_constants.h", | 47 "setup_constants.h", |
| 48 "setup_util.cc", | 48 "setup_util.cc", |
| 49 "setup_util.h", | 49 "setup_util.h", |
| 50 "update_active_setup_version_work_item.cc", | 50 "update_active_setup_version_work_item.cc", |
| 51 "update_active_setup_version_work_item.h", | 51 "update_active_setup_version_work_item.h", |
| 52 "update_shortcuts.cc", |
| 53 "update_shortcuts.h", |
| 52 ] | 54 ] |
| 53 | 55 |
| 54 public_deps = [ | 56 public_deps = [ |
| 55 "//base", | 57 "//base", |
| 56 "//chrome/common:constants", | 58 "//chrome/common:constants", |
| 57 "//chrome/common:version_header", | 59 "//chrome/common:version_header", |
| 58 "//chrome/installer/util:with_rc_strings", | 60 "//chrome/installer/util:with_rc_strings", |
| 59 "//chrome_elf:constants", | 61 "//chrome_elf:constants", |
| 60 "//components/crash/content/app:app", | 62 "//components/crash/content/app:app", |
| 61 "//components/crash/content/app:lib", | 63 "//components/crash/content/app:lib", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 90 "//testing/gmock", | 92 "//testing/gmock", |
| 91 "//testing/gtest", | 93 "//testing/gtest", |
| 92 ] | 94 ] |
| 93 | 95 |
| 94 data = [ | 96 data = [ |
| 95 "//chrome/installer/test/data/", | 97 "//chrome/installer/test/data/", |
| 96 "//chrome/test/data/installer/", | 98 "//chrome/test/data/installer/", |
| 97 ] | 99 ] |
| 98 } | 100 } |
| 99 } | 101 } |
| OLD | NEW |