• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2014 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
5assert(is_linux)
6
7# GYP version: mojo/mojo.gyp:mojo_dbus_service
8source_set("dbus") {
9  sources = [
10    "dbus_external_service.cc",
11    "dbus_external_service.h",
12  ]
13
14  deps = [
15    "//base",
16    "//dbus",
17    "//mojo/application",
18    "//mojo/common",
19    "//mojo/shell:external_service_bindings",
20    "//mojo/system",
21  ]
22}
23