| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//mojo/public/tools/bindings/mojom.gni") | |
| 6 | |
| 7 source_set("fetcher") { | |
| 8 sources = [ | |
| 9 "about_fetcher.cc", | |
| 10 "about_fetcher.h", | |
| 11 "data_fetcher.cc", | |
| 12 "data_fetcher.h", | |
| 13 "local_fetcher.cc", | |
| 14 "local_fetcher.h", | |
| 15 "network_fetcher.cc", | |
| 16 "network_fetcher.h", | |
| 17 "switches.cc", | |
| 18 "switches.h", | |
| 19 "url_resolver.cc", | |
| 20 "url_resolver.h", | |
| 21 ] | |
| 22 | |
| 23 public_deps = [ | |
| 24 "//base", | |
| 25 "//mojo/common", | |
| 26 "//mojo/public/cpp/bindings", | |
| 27 "//mojo/services/network/public/interfaces", | |
| 28 "//mojo/services/updater", | |
| 29 "//mojo/shell/public/interfaces", | |
| 30 "//url", | |
| 31 ] | |
| 32 deps = [ | |
| 33 "//base/third_party/dynamic_annotations", | |
| 34 "//crypto:crypto", | |
| 35 "//mojo/edk/system", | |
| 36 "//mojo/environment:chromium", | |
| 37 "//mojo/shell", | |
| 38 "//mojo/shell/public/cpp:sources", | |
| 39 "//mojo/util:filename_util", | |
| 40 "//net", | |
| 41 "//url", | |
| 42 ] | |
| 43 } | |
| OLD | NEW |