blob: 8b49ffa953912d094c360a6198f8978e9b735f13 [file] [log] [blame]
Giovanni Ortuño Urquidi28740672018-06-20 01:03:011# Copyright 2018 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
5import("//extensions/buildflags/buildflags.gni")
6
7assert(enable_extensions)
8
9source_set("web_applications") {
10 sources = [
11 "extensions/pending_bookmark_app_manager.cc",
12 "extensions/pending_bookmark_app_manager.h",
13 "policy/web_app_policy_constants.cc",
14 "policy/web_app_policy_constants.h",
15 "policy/web_app_policy_manager.cc",
16 "policy/web_app_policy_manager.h",
17 "policy/web_app_policy_manager_factory.cc",
18 "policy/web_app_policy_manager_factory.h",
19 ]
20
21 configs += [ "//build/config/compiler:wexit_time_destructors" ]
22
23 deps = [
24 "//base",
25 "//chrome/browser/extensions",
26 "//chrome/common",
27 "//components/keyed_service/content",
28 "//components/prefs",
29 "//extensions/browser",
30 "//url",
31 ]
32}