Linux: Depend on liberation-fonts package for RPMs.
[chromium-blink-merge.git] / components / web_modal / BUILD.gn
blob77083a71fe79cb3120ac7ab4f13c8ab94ec68678
1 # Copyright 2014 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.
5 static_library("web_modal") {
6   sources = [
7     "modal_dialog_host.cc",
8     "modal_dialog_host.h",
9     "single_web_contents_dialog_manager.h",
10     "web_contents_modal_dialog_host.cc",
11     "web_contents_modal_dialog_host.h",
12     "web_contents_modal_dialog_manager.cc",
13     "web_contents_modal_dialog_manager.h",
14     "web_contents_modal_dialog_manager_delegate.cc",
15     "web_contents_modal_dialog_manager_delegate.h",
16   ]
18   deps = [
19     "//base",
20     "//content/public/browser",
21     "//net",
22     "//skia",
23     "//ui/gfx",
24     "//ui/gfx/geometry",
25   ]
28 static_library("test_support") {
29   testonly = true
30   sources = [
31     "test_web_contents_modal_dialog_host.cc",
32     "test_web_contents_modal_dialog_host.h",
33     "test_web_contents_modal_dialog_manager_delegate.cc",
34     "test_web_contents_modal_dialog_manager_delegate.h",
35   ]
37   public_deps = [
38     ":web_modal",
39   ]
40   deps = [
41     "//base",
42     "//ui/gfx",
43     "//ui/gfx/geometry",
44   ]