naiveproxy/chrome/browser/web_applications/BUILD.gn

34 lines
832 B
Plaintext
Raw Normal View History

2018-08-15 01:19:20 +03:00
# Copyright 2018 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.
group("web_app_group") {
public_configs = [ "//build/config/compiler:wexit_time_destructors" ]
}
source_set("web_applications") {
sources = [
"web_app_provider.cc",
"web_app_provider.h",
"web_app_provider_factory.cc",
"web_app_provider_factory.h",
]
deps = [
":web_app_group",
"//chrome/browser/web_applications/bookmark_apps",
"//chrome/common",
]
}
source_set("unit_tests") {
testonly = true
deps = [
":web_app_group",
"//chrome/browser/web_applications/bookmark_apps:unit_tests",
"//chrome/browser/web_applications/components:unit_tests",
"//chrome/browser/web_applications/extensions:unit_tests",
]
}