| 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 import("//net/features.gni") | 5 import("//net/features.gni") |
| 6 | 6 |
| 7 static_library("update_client") { | 7 static_library("update_client") { |
| 8 sources = [ | 8 sources = [ |
| 9 "action.cc", | 9 "action.cc", |
| 10 "action.h", | 10 "action.h", |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 outputs = [ | 115 outputs = [ |
| 116 "{{bundle_resources_dir}}/" + | 116 "{{bundle_resources_dir}}/" + |
| 117 "{{source_root_relative_dir}}/{{source_file_part}}", | 117 "{{source_root_relative_dir}}/{{source_file_part}}", |
| 118 ] | 118 ] |
| 119 } | 119 } |
| 120 | 120 |
| 121 source_set("unit_tests") { | 121 source_set("unit_tests") { |
| 122 testonly = true | 122 testonly = true |
| 123 sources = [ | 123 sources = [ |
| 124 "component_patcher_unittest.cc", | 124 "component_patcher_unittest.cc", |
| 125 "component_patcher_unittest.h", |
| 125 "component_unpacker_unittest.cc", | 126 "component_unpacker_unittest.cc", |
| 126 "persisted_data_unittest.cc", | 127 "persisted_data_unittest.cc", |
| 127 "ping_manager_unittest.cc", | 128 "ping_manager_unittest.cc", |
| 128 "request_sender_unittest.cc", | 129 "request_sender_unittest.cc", |
| 129 "update_checker_unittest.cc", | 130 "update_checker_unittest.cc", |
| 130 "update_client_unittest.cc", | 131 "update_client_unittest.cc", |
| 131 "update_query_params_unittest.cc", | 132 "update_query_params_unittest.cc", |
| 132 "update_response_unittest.cc", | 133 "update_response_unittest.cc", |
| 133 "updater_state_unittest.cc", | 134 "updater_state_unittest.cc", |
| 134 "utils_unittest.cc", | 135 "utils_unittest.cc", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 145 "//base", | 146 "//base", |
| 146 "//components/prefs", | 147 "//components/prefs", |
| 147 "//components/prefs:test_support", | 148 "//components/prefs:test_support", |
| 148 "//courgette:courgette_lib", | 149 "//courgette:courgette_lib", |
| 149 "//net:test_support", | 150 "//net:test_support", |
| 150 "//testing/gmock", | 151 "//testing/gmock", |
| 151 "//testing/gtest", | 152 "//testing/gtest", |
| 152 "//third_party/libxml", | 153 "//third_party/libxml", |
| 153 ] | 154 ] |
| 154 } | 155 } |
| OLD | NEW |