| 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 "background_downloader_win.cc", | 9 "background_downloader_win.cc", |
| 10 "background_downloader_win.h", | 10 "background_downloader_win.h", |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 "//components/test/data/update_client/binary_bsdiff_patch.bin", | 101 "//components/test/data/update_client/binary_bsdiff_patch.bin", |
| 102 "//components/test/data/update_client/binary_courgette_patch.bin", | 102 "//components/test/data/update_client/binary_courgette_patch.bin", |
| 103 "//components/test/data/update_client/binary_input.bin", | 103 "//components/test/data/update_client/binary_input.bin", |
| 104 "//components/test/data/update_client/binary_output.bin", | 104 "//components/test/data/update_client/binary_output.bin", |
| 105 "//components/test/data/update_client/ihfokbkgjpifnbbojhneepfflplebdkc_1.crx
", | 105 "//components/test/data/update_client/ihfokbkgjpifnbbojhneepfflplebdkc_1.crx
", |
| 106 "//components/test/data/update_client/ihfokbkgjpifnbbojhneepfflplebdkc_1to2.
crx", | 106 "//components/test/data/update_client/ihfokbkgjpifnbbojhneepfflplebdkc_1to2.
crx", |
| 107 "//components/test/data/update_client/ihfokbkgjpifnbbojhneepfflplebdkc_2.crx
", | 107 "//components/test/data/update_client/ihfokbkgjpifnbbojhneepfflplebdkc_2.crx
", |
| 108 "//components/test/data/update_client/jebgalgnebhfojomionfpkfelancnnkf.crx", | 108 "//components/test/data/update_client/jebgalgnebhfojomionfpkfelancnnkf.crx", |
| 109 "//components/test/data/update_client/updatecheck_reply_1.xml", | 109 "//components/test/data/update_client/updatecheck_reply_1.xml", |
| 110 "//components/test/data/update_client/updatecheck_reply_4.xml", | 110 "//components/test/data/update_client/updatecheck_reply_4.xml", |
| 111 "//components/test/data/update_client/updatecheck_reply_noupdate.xml", |
| 111 ] | 112 ] |
| 112 outputs = [ | 113 outputs = [ |
| 113 "{{bundle_resources_dir}}/" + | 114 "{{bundle_resources_dir}}/" + |
| 114 "{{source_root_relative_dir}}/{{source_file_part}}", | 115 "{{source_root_relative_dir}}/{{source_file_part}}", |
| 115 ] | 116 ] |
| 116 } | 117 } |
| 117 | 118 |
| 118 source_set("unit_tests") { | 119 source_set("unit_tests") { |
| 119 testonly = true | 120 testonly = true |
| 120 sources = [ | 121 sources = [ |
| (...skipping 23 matching lines...) Expand all Loading... |
| 144 "//components/prefs", | 145 "//components/prefs", |
| 145 "//components/prefs:test_support", | 146 "//components/prefs:test_support", |
| 146 "//components/version_info:version_info", | 147 "//components/version_info:version_info", |
| 147 "//courgette:courgette_lib", | 148 "//courgette:courgette_lib", |
| 148 "//net:test_support", | 149 "//net:test_support", |
| 149 "//testing/gmock", | 150 "//testing/gmock", |
| 150 "//testing/gtest", | 151 "//testing/gtest", |
| 151 "//third_party/libxml", | 152 "//third_party/libxml", |
| 152 ] | 153 ] |
| 153 } | 154 } |
| OLD | NEW |