| 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 "//third_party/libxml", | 58 "//third_party/libxml", |
| 59 "//third_party/zlib:zip", | 59 "//third_party/zlib:zip", |
| 60 "//net", | 60 "//net", |
| 61 "//ui/base", |
| 61 "//url", | 62 "//url", |
| 62 ] | 63 ] |
| 63 } | 64 } |
| 64 | 65 |
| 65 source_set("test_support") { | 66 source_set("test_support") { |
| 66 testonly = true | 67 testonly = true |
| 67 sources = [ | 68 sources = [ |
| 68 "test_configurator.cc", | 69 "test_configurator.cc", |
| 69 "test_configurator.h", | 70 "test_configurator.h", |
| 70 "test_installer.cc", | 71 "test_installer.cc", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 100 ":update_client", | 101 ":update_client", |
| 101 ":test_support", | 102 ":test_support", |
| 102 "//base", | 103 "//base", |
| 103 "//courgette:courgette_lib", | 104 "//courgette:courgette_lib", |
| 104 "//net:test_support", | 105 "//net:test_support", |
| 105 "//testing/gtest", | 106 "//testing/gtest", |
| 106 "//testing/gmock", | 107 "//testing/gmock", |
| 107 "//third_party/libxml", | 108 "//third_party/libxml", |
| 108 ] | 109 ] |
| 109 } | 110 } |
| OLD | NEW |