summaryrefslogtreecommitdiffstats
path: root/mojo/shell/fetcher/BUILD.gn
blob: 48cfe0f56826e2a6bbcda07a104a2f33298bb823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//mojo/public/tools/bindings/mojom.gni")

source_set("fetcher") {
  sources = [
    "about_fetcher.cc",
    "about_fetcher.h",
    "data_fetcher.cc",
    "data_fetcher.h",
    "local_fetcher.cc",
    "local_fetcher.h",
    "network_fetcher.cc",
    "network_fetcher.h",
    "switches.cc",
    "switches.h",
    "url_resolver.cc",
    "url_resolver.h",
  ]

  public_deps = [
    "//base",
    "//mojo/common",
    "//mojo/public/cpp/bindings",
    "//mojo/services/network/public/interfaces",
    "//mojo/services/updater",
    "//mojo/shell/public/interfaces",
    "//url",
  ]
  deps = [
    "//base/third_party/dynamic_annotations",
    "//crypto:crypto",
    "//mojo/environment:chromium",
    "//mojo/shell",
    "//mojo/shell/public/cpp:sources",
    "//mojo/util:filename_util",
    "//net",
    "//third_party/mojo/src/mojo/edk/system",
    "//url",
  ]
}