Giovanni Ortuño Urquidi | 2874067 | 2018-06-20 01:03:01 | [diff] [blame^] | 1 | # 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 | |
| 5 | import("//extensions/buildflags/buildflags.gni") |
| 6 | |
| 7 | assert(enable_extensions) |
| 8 | |
| 9 | source_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 | } |