| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/ui.gni") |
| 6 |
| 5 assert(!is_android && !is_ios) | 7 assert(!is_android && !is_ios) |
| 6 | 8 |
| 7 static_library("web_modal") { | 9 static_library("web_modal") { |
| 8 sources = [ | 10 sources = [ |
| 9 "modal_dialog_host.cc", | 11 "modal_dialog_host.cc", |
| 10 "modal_dialog_host.h", | 12 "modal_dialog_host.h", |
| 11 "single_web_contents_dialog_manager.h", | 13 "single_web_contents_dialog_manager.h", |
| 12 "web_contents_modal_dialog_host.cc", | 14 "web_contents_modal_dialog_host.cc", |
| 13 "web_contents_modal_dialog_host.h", | 15 "web_contents_modal_dialog_host.h", |
| 14 "web_contents_modal_dialog_manager.cc", | 16 "web_contents_modal_dialog_manager.cc", |
| 15 "web_contents_modal_dialog_manager.h", | 17 "web_contents_modal_dialog_manager.h", |
| 16 "web_contents_modal_dialog_manager_delegate.cc", | 18 "web_contents_modal_dialog_manager_delegate.cc", |
| 17 "web_contents_modal_dialog_manager_delegate.h", | 19 "web_contents_modal_dialog_manager_delegate.h", |
| 18 ] | 20 ] |
| 19 | |
| 20 deps = [ | 21 deps = [ |
| 21 "//base", | 22 "//base", |
| 22 "//content/public/browser", | 23 "//content/public/browser", |
| 23 "//net", | 24 "//net", |
| 24 "//skia", | 25 "//skia", |
| 25 "//ui/gfx", | 26 "//ui/gfx", |
| 26 "//ui/gfx/geometry", | 27 "//ui/gfx/geometry", |
| 27 ] | 28 ] |
| 28 } | 29 } |
| 29 | 30 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 54 ] | 55 ] |
| 55 | 56 |
| 56 deps = [ | 57 deps = [ |
| 57 ":test_support", | 58 ":test_support", |
| 58 ":web_modal", | 59 ":web_modal", |
| 59 "//base", | 60 "//base", |
| 60 "//content/test:test_support", | 61 "//content/test:test_support", |
| 61 "//testing/gtest", | 62 "//testing/gtest", |
| 62 ] | 63 ] |
| 63 } | 64 } |
| OLD | NEW |