| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "update_query_params_delegate.h", | 49 "update_query_params_delegate.h", |
| 50 "update_response.cc", | 50 "update_response.cc", |
| 51 "update_response.h", | 51 "update_response.h", |
| 52 "updater_state.cc", | 52 "updater_state.cc", |
| 53 "updater_state.h", | 53 "updater_state.h", |
| 54 "updater_state_win.cc", | 54 "updater_state_win.cc", |
| 55 "url_fetcher_downloader.cc", | 55 "url_fetcher_downloader.cc", |
| 56 "url_fetcher_downloader.h", | 56 "url_fetcher_downloader.h", |
| 57 "utils.cc", | 57 "utils.cc", |
| 58 "utils.h", | 58 "utils.h", |
| 59 "utils_win.cc", |
| 60 "utils_win.h", |
| 59 ] | 61 ] |
| 60 | 62 |
| 61 deps = [ | 63 deps = [ |
| 62 "//base", | 64 "//base", |
| 63 "//components/client_update_protocol", | 65 "//components/client_update_protocol", |
| 64 "//components/crx_file", | 66 "//components/crx_file", |
| 65 "//components/prefs", | 67 "//components/prefs", |
| 66 "//courgette:courgette_lib", | 68 "//courgette:courgette_lib", |
| 67 "//crypto", | 69 "//crypto", |
| 68 "//net", | 70 "//net", |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 "//base", | 146 "//base", |
| 145 "//components/prefs", | 147 "//components/prefs", |
| 146 "//components/prefs:test_support", | 148 "//components/prefs:test_support", |
| 147 "//courgette:courgette_lib", | 149 "//courgette:courgette_lib", |
| 148 "//net:test_support", | 150 "//net:test_support", |
| 149 "//testing/gmock", | 151 "//testing/gmock", |
| 150 "//testing/gtest", | 152 "//testing/gtest", |
| 151 "//third_party/libxml", | 153 "//third_party/libxml", |
| 152 ] | 154 ] |
| 153 } | 155 } |
| OLD | NEW |