Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: components/constrained_window.gypi

Issue 2087643003: Move web modal dialog manager files into the constrained_window component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase? Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 'targets': [ 5 'targets': [
6 { 6 {
7 'target_name': 'constrained_window', 7 'target_name': 'constrained_window',
8 'type': 'static_library', 8 'type': 'static_library',
9 'dependencies': [ 9 'dependencies': [
10 '<(DEPTH)/components/components.gyp:web_modal', 10 '<(DEPTH)/components/components.gyp:web_modal',
11 '<(DEPTH)/content/content.gyp:content_browser',
12 '<(DEPTH)/skia/skia.gyp:skia',
11 '<(DEPTH)/ui/views/views.gyp:views', 13 '<(DEPTH)/ui/views/views.gyp:views',
12 '<(DEPTH)/skia/skia.gyp:skia',
13 ], 14 ],
14 'include_dirs': [ 15 'include_dirs': [
15 '..', 16 '..',
16 ], 17 ],
17 'sources': [ 18 'sources': [
18 'constrained_window/constrained_window_views.cc', 19 'constrained_window/constrained_window_views.cc',
19 'constrained_window/constrained_window_views.h', 20 'constrained_window/constrained_window_views.h',
20 'constrained_window/constrained_window_views_client.h', 21 'constrained_window/constrained_window_views_client.h',
22 'constrained_window/native_web_contents_modal_dialog_manager_views.cc',
23 'constrained_window/native_web_contents_modal_dialog_manager_views.h',
24 ],
25 'conditions': [
26 ['use_aura==1', {
27 'sources': [
tapted 2016/06/29 03:02:45 dependencies?
Patti Lor 2016/07/13 03:09:41 Done, thanks!
28 '<(DEPTH)/ui/aura/aura.gyp:aura',
29 '<(DEPTH)/ui/wm/wm.gyp:wm',
30 ],
31 }],
32 ['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.
33 'sources': [
34 'constrained_window/web_contents_modal_dialog_manager_views.cc',
35 ]
36 }],
21 ], 37 ],
22 }, 38 },
23 ], 39 ],
24 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698