summaryrefslogtreecommitdiffstats
path: root/mandoline/services/updater/BUILD.gn
blob: 31edf861e337cfc8f3abd31d7db6420111e88977 (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
# 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/mojo_application.gni")
import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")

mojo_native_application("updater") {
  sources = [
    "updater_app.cc",
    "updater_app.h",
    "updater_impl.cc",
    "updater_impl.h",
  ]

  deps = [
    "//base",
    "//components/update_client",
    "//mojo/application/public/cpp",
    "//mojo/services/updater",
    "//third_party/mojo/src/mojo/public/cpp/system",
    "//url",
  ]
}