| 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", |
| 11 "setup.rc", | 11 "setup.rc", |
| 12 "setup_exe_version.rc.version", | 12 "setup_exe_version.rc.version", |
| 13 "setup_main.cc", | 13 "setup_main.cc", |
| 14 "setup_main.h", | 14 "setup_main.h", |
| 15 "setup_resource.h", | 15 "setup_resource.h", |
| 16 "uninstall.cc", | 16 "uninstall.cc", |
| 17 "uninstall.h", | 17 "uninstall.h", |
| 18 ] | 18 ] |
| 19 | 19 |
| 20 configs -= [ "//build/config/win:console" ] | 20 configs -= [ "//build/config/win:console" ] |
| 21 configs += [ "//build/config/win:windowed" ] | 21 configs += [ "//build/config/win:windowed" ] |
| 22 | 22 |
| 23 deps = [ | 23 deps = [ |
| 24 ":lib", | 24 ":lib", |
| 25 "//base/allocator", | |
| 26 "//build/config/sanitizers:deps", | 25 "//build/config/sanitizers:deps", |
| 27 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", | 26 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", |
| 28 ] | 27 ] |
| 29 } | 28 } |
| 30 | 29 |
| 31 source_set("lib") { | 30 source_set("lib") { |
| 32 sources = [ | 31 sources = [ |
| 33 "app_launcher_installer.cc", | 32 "app_launcher_installer.cc", |
| 34 "app_launcher_installer.h", | 33 "app_launcher_installer.h", |
| 35 "archive_patch_helper.cc", | 34 "archive_patch_helper.cc", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "run_all_unittests.cc", | 75 "run_all_unittests.cc", |
| 77 "setup_util_unittest.cc", | 76 "setup_util_unittest.cc", |
| 78 "setup_util_unittest.h", | 77 "setup_util_unittest.h", |
| 79 "update_active_setup_version_work_item_unittest.cc", | 78 "update_active_setup_version_work_item_unittest.cc", |
| 80 ] | 79 ] |
| 81 | 80 |
| 82 deps = [ | 81 deps = [ |
| 83 ":lib", | 82 ":lib", |
| 84 "//base", | 83 "//base", |
| 85 "//base:i18n", | 84 "//base:i18n", |
| 86 "//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 |