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

Side by Side Diff: apps/apps.gypi

Issue 209023003: Remove references to WebContentsView::SizeContents from chrome/ and app/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Alphabetization. Created 6 years, 8 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'apps', 8 'target_name': 'apps',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 'saved_files_service_factory.h', 60 'saved_files_service_factory.h',
61 'size_constraints.cc', 61 'size_constraints.cc',
62 'size_constraints.h', 62 'size_constraints.h',
63 'switches.cc', 63 'switches.cc',
64 'switches.h', 64 'switches.h',
65 'ui/native_app_window.h', 65 'ui/native_app_window.h',
66 'ui/views/app_window_frame_view.cc', 66 'ui/views/app_window_frame_view.cc',
67 'ui/views/app_window_frame_view.h', 67 'ui/views/app_window_frame_view.h',
68 'ui/views/native_app_window_views.cc', 68 'ui/views/native_app_window_views.cc',
69 'ui/views/native_app_window_views.h', 69 'ui/views/native_app_window_views.h',
70 'ui/web_contents_sizer.h',
70 ], 71 ],
71 'conditions': [ 72 'conditions': [
73 ['OS=="mac"', {
74 'sources': [
75 'ui/web_contents_sizer.mm',
76 ],
77 }, { # OS!=mac
78 'sources': [
79 'ui/web_contents_sizer.cc',
80 ],
81 }],
72 ['chromeos==1', 82 ['chromeos==1',
73 { 83 {
74 'dependencies': [ 84 'dependencies': [
75 'browser_chromeos', 85 'browser_chromeos',
76 ] 86 ]
77 } 87 }
78 ], 88 ],
79 ['enable_extensions==0', 89 ['enable_extensions==0',
80 { 90 {
81 'sources/': [ 91 'sources/': [
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 'test/app_shell_test.cc', 274 'test/app_shell_test.cc',
265 'test/apps_test_launcher_delegate.cc', 275 'test/apps_test_launcher_delegate.cc',
266 'test/apps_test_launcher_delegate.h', 276 'test/apps_test_launcher_delegate.h',
267 'test/apps_tests_main.cc', 277 'test/apps_tests_main.cc',
268 ], 278 ],
269 }, 279 },
270 ], # targets 280 ], # targets
271 }], # chromeos==1 or linux aura or win aura 281 }], # chromeos==1 or linux aura or win aura
272 ], # conditions 282 ], # conditions
273 } 283 }
OLDNEW
« no previous file with comments | « apps/app_window.cc ('k') | apps/ui/web_contents_sizer.h » ('j') | apps/ui/web_contents_sizer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698