OLD | NEW |
(Empty) | |
| 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. |
| 4 |
| 5 static_library("web_modal") { |
| 6 sources = [ |
| 7 "modal_dialog_host.cc", |
| 8 "modal_dialog_host.h", |
| 9 "native_web_contents_modal_dialog.h", |
| 10 "single_web_contents_dialog_manager.h", |
| 11 "web_contents_modal_dialog_host.cc", |
| 12 "web_contents_modal_dialog_host.h", |
| 13 "web_contents_modal_dialog_manager.cc", |
| 14 "web_contents_modal_dialog_manager.h", |
| 15 "web_contents_modal_dialog_manager_delegate.cc", |
| 16 "web_contents_modal_dialog_manager_delegate.h", |
| 17 ] |
| 18 |
| 19 deps = [ |
| 20 "//base", |
| 21 "//content/public/browser", |
| 22 "//skia", |
| 23 ] |
| 24 } |
| 25 |
| 26 static_library("test_support") { |
| 27 sources = [ |
| 28 "test_web_contents_modal_dialog_host.cc", |
| 29 "test_web_contents_modal_dialog_host.h", |
| 30 "test_web_contents_modal_dialog_manager_delegate.cc", |
| 31 "test_web_contents_modal_dialog_manager_delegate.h", |
| 32 ] |
| 33 |
| 34 deps = [ |
| 35 ":web_modal", |
| 36 ] |
| 37 } |
OLD | NEW |