blob: b7bffe7282d8412fdca92a7cc7b09b8ddb25aa2c [file] [log] [blame]
Ben Murdoch116680a2014-07-20 18:25:52 -07001# 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.
4
5static_library("web_modal") {
6 sources = [
7 "modal_dialog_host.cc",
8 "modal_dialog_host.h",
9 "native_web_contents_modal_dialog.h",
Primiano Tucci1320f922014-09-30 14:45:55 +010010 "popup_manager.cc",
11 "popup_manager.h",
12 "single_popup_manager.h",
Ben Murdoch116680a2014-07-20 18:25:52 -070013 "single_web_contents_dialog_manager.h",
14 "web_contents_modal_dialog_host.cc",
15 "web_contents_modal_dialog_host.h",
16 "web_contents_modal_dialog_manager.cc",
17 "web_contents_modal_dialog_manager.h",
18 "web_contents_modal_dialog_manager_delegate.cc",
19 "web_contents_modal_dialog_manager_delegate.h",
20 ]
21
22 deps = [
23 "//base",
24 "//content/public/browser",
25 "//skia",
26 ]
27}
28
29static_library("test_support") {
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 ]
36
37 deps = [
38 ":web_modal",
39 ]
40}