OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 source_set("updater") { | |
6 sources = [ | |
7 "extension_cache.h", | |
8 "extension_downloader.cc", | |
9 "extension_downloader.h", | |
10 "extension_downloader_delegate.cc", | |
11 "extension_downloader_delegate.h", | |
12 "extension_downloader_test_delegate.h", | |
13 "manifest_fetch_data.cc", | |
14 "manifest_fetch_data.h", | |
15 "null_extension_cache.cc", | |
16 "null_extension_cache.h", | |
17 "request_queue.h", | |
18 "request_queue_impl.h", | |
19 "safe_manifest_parser.cc", | |
20 "safe_manifest_parser.h", | |
21 "update_client_config.cc", | |
22 "update_client_config.h", | |
23 "update_data_provider.cc", | |
24 "update_data_provider.h", | |
25 "update_install_shim.cc", | |
26 "update_install_shim.h", | |
27 "update_service.cc", | |
28 "update_service.h", | |
29 "update_service_factory.cc", | |
30 "update_service_factory.h", | |
31 ] | |
32 | |
33 deps = [ | |
34 "//extensions/strings", | |
35 "//skia", | |
Devlin
2016/09/14 21:06:52
Does this need skia?
Rahul Chaturvedi
2016/09/14 21:40:17
Yep.
//extensions/browser/updater/safe_manifest_pa
brettw
2016/09/14 21:42:21
If extensions/common uses skia in its public heade
Rahul Chaturvedi
2016/09/14 22:23:41
I was hoping to keep this change contained to //ex
| |
36 ] | |
37 } | |
OLD | NEW |