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", | 25 "//base/allocator", |
26 "//build/config/sanitizers:deps", | 26 "//build/config/sanitizers:deps", |
| 27 "//components/crash/content/app", |
| 28 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", |
27 ] | 29 ] |
28 } | 30 } |
29 | 31 |
30 source_set("lib") { | 32 source_set("lib") { |
31 sources = [ | 33 sources = [ |
32 "app_launcher_installer.cc", | 34 "app_launcher_installer.cc", |
33 "app_launcher_installer.h", | 35 "app_launcher_installer.h", |
34 "archive_patch_helper.cc", | 36 "archive_patch_helper.cc", |
35 "archive_patch_helper.h", | 37 "archive_patch_helper.h", |
36 "install.cc", | 38 "install.cc", |
(...skipping 12 matching lines...) Expand all Loading... |
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", |
54 "//chrome/common:constants", | 56 "//chrome/common:constants", |
55 "//chrome/common:version_header", | 57 "//chrome/common:version_header", |
56 "//chrome/installer/util", | 58 "//chrome/installer/util", |
57 "//chrome_elf:constants", | 59 "//chrome_elf:constants", |
58 "//components/crash/content/app", | 60 "//components/crash/content/app", |
| 61 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", |
59 "//components/crash/content/app:lib", | 62 "//components/crash/content/app:lib", |
60 "//components/crash/core/common", | 63 "//components/crash/core/common", |
61 "//courgette:courgette_lib", | 64 "//courgette:courgette_lib", |
62 "//rlz:rlz_lib", | 65 "//rlz:rlz_lib", |
63 "//third_party/bspatch", | 66 "//third_party/bspatch", |
64 "//third_party/zlib", | 67 "//third_party/zlib", |
65 ] | 68 ] |
66 } | 69 } |
67 | 70 |
68 # This test covers the mini installer and setup tests. | 71 # This test covers the mini installer and setup tests. |
(...skipping 16 matching lines...) Expand all Loading... |
85 "//base/allocator", | 88 "//base/allocator", |
86 "//base/test:test_support", | 89 "//base/test:test_support", |
87 "//chrome/installer/mini_installer:unit_tests", | 90 "//chrome/installer/mini_installer:unit_tests", |
88 "//chrome/installer/util:strings", | 91 "//chrome/installer/util:strings", |
89 "//chrome/installer/util:util", | 92 "//chrome/installer/util:util", |
90 "//testing/gmock", | 93 "//testing/gmock", |
91 "//testing/gtest", | 94 "//testing/gtest", |
92 ] | 95 ] |
93 } | 96 } |
94 } | 97 } |
OLD | NEW |