Chromium Code Reviews| Index: components/constrained_window.gypi |
| diff --git a/components/constrained_window.gypi b/components/constrained_window.gypi |
| index 9abba05d18bdc223692a542f6ad9226382e35421..05250ee090ebb35d7dfb1f141d91e0a37b9ecf3c 100644 |
| --- a/components/constrained_window.gypi |
| +++ b/components/constrained_window.gypi |
| @@ -8,8 +8,9 @@ |
| 'type': 'static_library', |
| 'dependencies': [ |
| '<(DEPTH)/components/components.gyp:web_modal', |
| - '<(DEPTH)/ui/views/views.gyp:views', |
| + '<(DEPTH)/content/content.gyp:content_browser', |
| '<(DEPTH)/skia/skia.gyp:skia', |
| + '<(DEPTH)/ui/views/views.gyp:views', |
| ], |
| 'include_dirs': [ |
| '..', |
| @@ -18,6 +19,21 @@ |
| 'constrained_window/constrained_window_views.cc', |
| 'constrained_window/constrained_window_views.h', |
| 'constrained_window/constrained_window_views_client.h', |
| + 'constrained_window/native_web_contents_modal_dialog_manager_views.cc', |
| + 'constrained_window/native_web_contents_modal_dialog_manager_views.h', |
| + ], |
| + 'conditions': [ |
| + ['use_aura==1', { |
| + 'sources': [ |
|
tapted
2016/06/29 03:02:45
dependencies?
Patti Lor
2016/07/13 03:09:41
Done, thanks!
|
| + '<(DEPTH)/ui/aura/aura.gyp:aura', |
| + '<(DEPTH)/ui/wm/wm.gyp:wm', |
| + ], |
| + }], |
| + ['OS!="mac" or mac_views_browser==1', { |
|
tapted
2016/06/29 03:02:45
This is all views, so this condition probably belo
Patti Lor
2016/07/13 03:09:41
Done, moved back into chrome_browser_ui.gypi.
|
| + 'sources': [ |
| + 'constrained_window/web_contents_modal_dialog_manager_views.cc', |
| + ] |
| + }], |
| ], |
| }, |
| ], |