naiveproxy/chrome/browser/web_applications/BUILD.gn
2018-08-14 22:19:20 +00:00

34 lines
832 B
Plaintext

# 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",
]
}