[Media Router] Add integration tests and e2e tests for media router and presentation...
[chromium-blink-merge.git] / components / web_modal / BUILD.gn
blob8250c4af7cfa7cb9a80cd3850fae1ffb2ea1d003
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     "popup_manager.cc",
10     "popup_manager.h",
11     "single_web_contents_dialog_manager.h",
12     "web_contents_modal_dialog_host.cc",
13     "web_contents_modal_dialog_host.h",
14     "web_contents_modal_dialog_manager.cc",
15     "web_contents_modal_dialog_manager.h",
16     "web_contents_modal_dialog_manager_delegate.cc",
17     "web_contents_modal_dialog_manager_delegate.h",
18   ]
20   deps = [
21     "//base",
22     "//content/public/browser",
23     "//skia",
24   ]
27 static_library("test_support") {
28   sources = [
29     "test_web_contents_modal_dialog_host.cc",
30     "test_web_contents_modal_dialog_host.h",
31     "test_web_contents_modal_dialog_manager_delegate.cc",
32     "test_web_contents_modal_dialog_manager_delegate.h",
33   ]
35   deps = [
36     ":web_modal",
37   ]