OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 source_set("update_client") { | 5 source_set("update_client") { |
6 sources = [ | 6 sources = [ |
7 "action.cc", | 7 "action.cc", |
8 "action.h", | 8 "action.h", |
9 "action_update.cc", | 9 "action_update.cc", |
10 "action_update.h", | 10 "action_update.h", |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 ] | 51 ] |
52 | 52 |
53 deps = [ | 53 deps = [ |
54 "//base", | 54 "//base", |
55 "//components/crx_file", | 55 "//components/crx_file", |
56 "//courgette:courgette_lib", | 56 "//courgette:courgette_lib", |
57 "//crypto", | 57 "//crypto", |
58 "//net", | 58 "//net", |
59 "//third_party/libxml", | 59 "//third_party/libxml", |
60 "//third_party/zlib:zip", | 60 "//third_party/zlib:zip", |
61 "//ui/base", | |
62 "//url", | 61 "//url", |
63 ] | 62 ] |
64 } | 63 } |
65 | 64 |
66 source_set("test_support") { | 65 source_set("test_support") { |
67 testonly = true | 66 testonly = true |
68 sources = [ | 67 sources = [ |
69 "test_configurator.cc", | 68 "test_configurator.cc", |
70 "test_configurator.h", | 69 "test_configurator.h", |
71 "test_installer.cc", | 70 "test_installer.cc", |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 ":test_support", | 102 ":test_support", |
104 ":update_client", | 103 ":update_client", |
105 "//base", | 104 "//base", |
106 "//courgette:courgette_lib", | 105 "//courgette:courgette_lib", |
107 "//net:test_support", | 106 "//net:test_support", |
108 "//testing/gmock", | 107 "//testing/gmock", |
109 "//testing/gtest", | 108 "//testing/gtest", |
110 "//third_party/libxml", | 109 "//third_party/libxml", |
111 ] | 110 ] |
112 } | 111 } |
OLD | NEW |