Roll src/third_party/WebKit 8ea8f1a:8a69bd1 (svn 193559:193579)
[chromium-blink-merge.git] / ui / web_dialogs / BUILD.gn
blob3f8f4cd7bc111edfa02457b45d2b47e67e7bb903
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 component("web_dialogs") {
6   sources = [
7     "web_dialog_delegate.cc",
8     "web_dialog_delegate.h",
9     "web_dialog_ui.cc",
10     "web_dialog_ui.h",
11     "web_dialog_web_contents_delegate.cc",
12     "web_dialog_web_contents_delegate.h",
13     "web_dialogs_export.h",
14   ]
16   defines = [ "WEB_DIALOGS_IMPLEMENTATION" ]
18   deps = [
19     "//base",
20     "//base/third_party/dynamic_annotations",
21     "//content/public/browser",
22     "//content/public/common",
23     "//skia",
24     "//ui/base",
25     "//url",
26     "//third_party/WebKit/public:blink_minimal",
27   ]
30 static_library("test_support") {
31   sources = [
32     "test/test_web_contents_handler.cc",
33     "test/test_web_contents_handler.h",
34     "test/test_web_dialog_delegate.cc",
35     "test/test_web_dialog_delegate.h",
36   ]
38   public_deps = [
39     ":web_dialogs",
40   ]
41   deps = [
42     "//base",
43     "//content/public/browser",
44     "//skia",
45     "//ui/gfx/geometry",
46     "//url",
47   ]