blob: 9e5bdb5cd85979afe856d44fdc6ed7af0fd97111 [file] [log] [blame]
oshima82f72482014-10-24 14:14:321# 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
5import("//build/config/ui.gni")
6
oshimaf65398422014-11-18 23:30:427static_library("app_modal") {
oshima82f72482014-10-24 14:14:328 sources = [
9 "app_modal_dialog.cc",
10 "app_modal_dialog.h",
oshima82f72482014-10-24 14:14:3211 "app_modal_dialog_queue.cc",
12 "app_modal_dialog_queue.h",
13 "javascript_app_modal_dialog.cc",
14 "javascript_app_modal_dialog.h",
tfarina4a0c594882015-07-02 14:39:4115 "javascript_dialog_extensions_client.h",
oshima758abebc2014-11-06 10:55:5016 "javascript_dialog_manager.cc",
17 "javascript_dialog_manager.h",
oshima758abebc2014-11-06 10:55:5018 "javascript_native_dialog_factory.h",
scottmgac0ea0312014-12-03 19:21:0519 "native_app_modal_dialog.h",
oshima82f72482014-10-24 14:14:3220 ]
21
22 deps = [
tfarina4a0c594882015-07-02 14:39:4123 "//base",
24 "//base:i18n",
oshima82f72482014-10-24 14:14:3225 "//components/strings",
rsleevi24f64dc22015-08-07 21:39:2126 "//components/url_formatter",
oshima82f72482014-10-24 14:14:3227 "//content/public/browser",
oshima758abebc2014-11-06 10:55:5028 "//content/public/common",
tfarina4a0c594882015-07-02 14:39:4129 "//net",
oshima82f72482014-10-24 14:14:3230 "//skia",
tfarina4a0c594882015-07-02 14:39:4131 "//ui/base",
oshima82f72482014-10-24 14:14:3232 ]
33
34 if (use_aura) {
35 deps += [ "//ui/aura" ]
36 }
oshima758abebc2014-11-06 10:55:5037
andresantoso28362972015-03-31 20:43:5238 if (toolkit_views) {
oshima758abebc2014-11-06 10:55:5039 sources += [
oshima758abebc2014-11-06 10:55:5040 "views/javascript_app_modal_dialog_views.cc",
satoruxea51ccc2015-02-16 10:14:2441 "views/javascript_app_modal_dialog_views.h",
oshima758abebc2014-11-06 10:55:5042 ]
tfarina4a0c594882015-07-02 14:39:4143
44 deps += [
45 "//components/constrained_window",
46 "//ui/views",
47 ]
oshima758abebc2014-11-06 10:55:5048 }
oshima82f72482014-10-24 14:14:3249}