| 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") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 static_library("app_modal") { | 7 static_library("app_modal") { |
| 8 sources = [ | 8 sources = [ |
| 9 "app_modal_dialog.cc", | |
| 10 "app_modal_dialog.h", | |
| 11 "app_modal_dialog_queue.cc", | 9 "app_modal_dialog_queue.cc", |
| 12 "app_modal_dialog_queue.h", | 10 "app_modal_dialog_queue.h", |
| 13 "javascript_app_modal_dialog.cc", | 11 "javascript_app_modal_dialog.cc", |
| 14 "javascript_app_modal_dialog.h", | 12 "javascript_app_modal_dialog.h", |
| 15 "javascript_dialog_extensions_client.h", | 13 "javascript_dialog_extensions_client.h", |
| 16 "javascript_dialog_manager.cc", | 14 "javascript_dialog_manager.cc", |
| 17 "javascript_dialog_manager.h", | 15 "javascript_dialog_manager.h", |
| 18 "javascript_native_dialog_factory.h", | 16 "javascript_native_dialog_factory.h", |
| 19 "native_app_modal_dialog.h", | 17 "native_app_modal_dialog.h", |
| 20 ] | 18 ] |
| (...skipping 16 matching lines...) Expand all Loading... |
| 37 | 35 |
| 38 if (toolkit_views) { | 36 if (toolkit_views) { |
| 39 sources += [ | 37 sources += [ |
| 40 "views/javascript_app_modal_dialog_views.cc", | 38 "views/javascript_app_modal_dialog_views.cc", |
| 41 "views/javascript_app_modal_dialog_views.h", | 39 "views/javascript_app_modal_dialog_views.h", |
| 42 ] | 40 ] |
| 43 | 41 |
| 44 deps += [ "//ui/views" ] | 42 deps += [ "//ui/views" ] |
| 45 } | 43 } |
| 46 } | 44 } |
| OLD | NEW |