| 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 import("//ui/base/ui_features.gni") |
| 6 | 7 |
| 7 static_library("constrained_window") { | 8 static_library("constrained_window") { |
| 8 sources = [ | 9 sources = [ |
| 9 "constrained_window_views.cc", | 10 "constrained_window_views.cc", |
| 10 "constrained_window_views.h", | 11 "constrained_window_views.h", |
| 11 "constrained_window_views_client.h", | 12 "constrained_window_views_client.h", |
| 12 "native_web_contents_modal_dialog_manager_views.cc", | 13 "native_web_contents_modal_dialog_manager_views.cc", |
| 13 "native_web_contents_modal_dialog_manager_views.h", | 14 "native_web_contents_modal_dialog_manager_views.h", |
| 14 "native_web_contents_modal_dialog_manager_views_mac.mm", | 15 "native_web_contents_modal_dialog_manager_views_mac.mm", |
| 15 ] | 16 ] |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 if (is_mac && !mac_views_browser) { | 49 if (is_mac && !mac_views_browser) { |
| 49 sources += [ "test_create_native_web_modal_manager_cocoa.cc" ] | 50 sources += [ "test_create_native_web_modal_manager_cocoa.cc" ] |
| 50 } | 51 } |
| 51 | 52 |
| 52 deps = [ | 53 deps = [ |
| 53 ":constrained_window", | 54 ":constrained_window", |
| 54 "//components/web_modal:test_support", | 55 "//components/web_modal:test_support", |
| 55 "//ui/views:test_support", | 56 "//ui/views:test_support", |
| 56 ] | 57 ] |
| 57 } | 58 } |
| OLD | NEW |