| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 "//third_party/libxml", | 58 "//third_party/libxml", |
| 59 "//third_party/zlib:zip", | 59 "//third_party/zlib:zip", |
| 60 "//net", | 60 "//net", |
| 61 "//url", | 61 "//url", |
| 62 ] | 62 ] |
| 63 } | 63 } |
| 64 | 64 |
| 65 source_set("test_support") { | 65 source_set("test_support") { |
| 66 testonly = true | 66 testonly = true |
| 67 sources = [ | 67 sources = [ |
| 68 "test/test_configurator.cc", | 68 "test_configurator.cc", |
| 69 "test/test_configurator.h", | 69 "test_configurator.h", |
| 70 "test/test_installer.cc", | 70 "test_installer.cc", |
| 71 "test/test_installer.h", | 71 "test_installer.h", |
| 72 "test/url_request_post_interceptor.cc", | 72 "url_request_post_interceptor.cc", |
| 73 "test/url_request_post_interceptor.h", | 73 "url_request_post_interceptor.h", |
| 74 ] | 74 ] |
| 75 | 75 |
| 76 deps = [ | 76 deps = [ |
| 77 ":update_client", | 77 ":update_client", |
| 78 "//base", | 78 "//base", |
| 79 "//net:test_support", | 79 "//net:test_support", |
| 80 "//testing/gtest", | 80 "//testing/gtest", |
| 81 "//testing/gmock", | 81 "//testing/gmock", |
| 82 "//url", | 82 "//url", |
| 83 ] | 83 ] |
| 84 } | 84 } |
| 85 | 85 |
| 86 source_set("unit_tests") { | 86 source_set("unit_tests") { |
| 87 testonly = true | 87 testonly = true |
| 88 sources = [ | 88 sources = [ |
| 89 "test/component_patcher_unittest.cc", | 89 "component_patcher_unittest.cc", |
| 90 "test/crx_downloader_unittest.cc", | 90 "crx_downloader_unittest.cc", |
| 91 "test/ping_manager_unittest.cc", | 91 "ping_manager_unittest.cc", |
| 92 "test/request_sender_unittest.cc", | 92 "request_sender_unittest.cc", |
| 93 "test/update_checker_unittest.cc", | 93 "update_checker_unittest.cc", |
| 94 "test/update_client_unittest.cc", | 94 "update_client_unittest.cc", |
| 95 "test/update_response_unittest.cc", | 95 "update_response_unittest.cc", |
| 96 ] | 96 ] |
| 97 | 97 |
| 98 deps = [ | 98 deps = [ |
| 99 ":update_client", | 99 ":update_client", |
| 100 ":test_support", | 100 ":test_support", |
| 101 "//base", | 101 "//base", |
| 102 "//courgette:courgette_lib", | 102 "//courgette:courgette_lib", |
| 103 "//net:test_support", | 103 "//net:test_support", |
| 104 "//testing/gtest", | 104 "//testing/gtest", |
| 105 "//testing/gmock", | 105 "//testing/gmock", |
| 106 "//third_party/libxml", | 106 "//third_party/libxml", |
| 107 ] | 107 ] |
| 108 } | 108 } |
| OLD | NEW |