OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 5 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
6 | 6 |
7 source_set("fetcher") { | 7 source_set("fetcher") { |
8 sources = [ | 8 sources = [ |
9 "about_fetcher.cc", | 9 "about_fetcher.cc", |
10 "about_fetcher.h", | 10 "about_fetcher.h", |
11 "base_application_fetcher.cc", | 11 "base_application_fetcher.cc", |
12 "base_application_fetcher.h", | 12 "base_application_fetcher.h", |
| 13 "data_fetcher.cc", |
| 14 "data_fetcher.h", |
13 "local_fetcher.cc", | 15 "local_fetcher.cc", |
14 "local_fetcher.h", | 16 "local_fetcher.h", |
15 "network_fetcher.cc", | 17 "network_fetcher.cc", |
16 "network_fetcher.h", | 18 "network_fetcher.h", |
17 "switches.cc", | 19 "switches.cc", |
18 "switches.h", | 20 "switches.h", |
19 "update_fetcher.cc", | 21 "update_fetcher.cc", |
20 "update_fetcher.h", | 22 "update_fetcher.h", |
21 "url_resolver.cc", | 23 "url_resolver.cc", |
22 "url_resolver.h", | 24 "url_resolver.h", |
(...skipping 10 matching lines...) Expand all Loading... |
33 ] | 35 ] |
34 deps = [ | 36 deps = [ |
35 "//base/third_party/dynamic_annotations", | 37 "//base/third_party/dynamic_annotations", |
36 "//crypto:crypto", | 38 "//crypto:crypto", |
37 "//mojo/application/public/cpp:sources", | 39 "//mojo/application/public/cpp:sources", |
38 "//url", | 40 "//url", |
39 "//third_party/mojo/src/mojo/edk/system", | 41 "//third_party/mojo/src/mojo/edk/system", |
40 "//mojo/environment:chromium", | 42 "//mojo/environment:chromium", |
41 "//mojo/shell", | 43 "//mojo/shell", |
42 "//mojo/util:filename_util", | 44 "//mojo/util:filename_util", |
| 45 "//net", |
43 ] | 46 ] |
44 } | 47 } |
OLD | NEW |