summaryrefslogtreecommitdiffstats
path: root/components/profile_service/BUILD.gn
blob: cdde7a02c388e27aed2c95d570b2962b17e77ee7 (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
# Copyright 2016 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")

source_set("lib") {
  sources = [
    "profile_app.cc",
    "profile_app.h",
    "profile_service_impl.cc",
    "profile_service_impl.h",
  ]

  deps = [
    "//base",
    "//components/filesystem:lib",
    "//components/filesystem/public/interfaces",
    "//components/leveldb:lib",
    "//components/leveldb/public/interfaces",
    "//components/profile_service/public/interfaces",
    "//mojo/common",
    "//mojo/common:common_base",
    "//mojo/platform_handle",
    "//mojo/services/tracing/public/cpp",
    "//mojo/shell/public/cpp",
    "//mojo/shell/public/interfaces",
    "//url",
  ]
}