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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 "setup_util.cc", | 47 "setup_util.cc", |
48 "setup_util.h", | 48 "setup_util.h", |
49 "update_active_setup_version_work_item.cc", | 49 "update_active_setup_version_work_item.cc", |
50 "update_active_setup_version_work_item.h", | 50 "update_active_setup_version_work_item.h", |
51 ] | 51 ] |
52 | 52 |
53 public_deps = [ | 53 public_deps = [ |
54 "//base", | 54 "//base", |
55 "//chrome/common:constants", | 55 "//chrome/common:constants", |
56 "//chrome/common:version_header", | 56 "//chrome/common:version_header", |
57 "//chrome/installer/util", | 57 "//chrome/installer/util:with_rc_strings", |
58 "//chrome_elf:constants", | 58 "//chrome_elf:constants", |
59 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", | 59 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", |
60 "//components/crash/content/app:lib", | 60 "//components/crash/content/app:lib", |
61 "//components/crash/core/common", | 61 "//components/crash/core/common", |
62 "//courgette:courgette_lib", | 62 "//courgette:courgette_lib", |
63 "//rlz:rlz_lib", | 63 "//rlz:rlz_lib", |
64 "//third_party/bspatch", | 64 "//third_party/bspatch", |
65 "//third_party/zlib", | 65 "//third_party/zlib", |
66 ] | 66 ] |
67 } | 67 } |
(...skipping 11 matching lines...) Expand all Loading... |
79 "update_active_setup_version_work_item_unittest.cc", | 79 "update_active_setup_version_work_item_unittest.cc", |
80 ] | 80 ] |
81 | 81 |
82 deps = [ | 82 deps = [ |
83 ":lib", | 83 ":lib", |
84 "//base", | 84 "//base", |
85 "//base:i18n", | 85 "//base:i18n", |
86 "//base/allocator", | 86 "//base/allocator", |
87 "//base/test:test_support", | 87 "//base/test:test_support", |
88 "//chrome/installer/mini_installer:unit_tests", | 88 "//chrome/installer/mini_installer:unit_tests", |
89 "//chrome/installer/util:strings", | |
90 "//chrome/installer/util:util", | |
91 "//testing/gmock", | 89 "//testing/gmock", |
92 "//testing/gtest", | 90 "//testing/gtest", |
93 ] | 91 ] |
94 } | 92 } |
95 } | 93 } |
OLD | NEW |