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

Side by Side Diff: apps/apps.gypi

Issue 244643008: Merge 262276 "Remove references to WebContentsView::SizeContents..." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1916/src/
Patch Set: 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 | Annotate | Revision Log
« no previous file with comments | « apps/app_window.cc ('k') | apps/ui/web_contents_sizer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 'test/app_shell_test.cc', 264 'test/app_shell_test.cc',
255 'test/apps_test_launcher_delegate.cc', 265 'test/apps_test_launcher_delegate.cc',
256 'test/apps_test_launcher_delegate.h', 266 'test/apps_test_launcher_delegate.h',
257 'test/apps_tests_main.cc', 267 'test/apps_tests_main.cc',
258 ], 268 ],
259 }, 269 },
260 ], # targets 270 ], # targets
261 }], # chromeos==1 or linux aura or win aura 271 }], # chromeos==1 or linux aura or win aura
262 ], # conditions 272 ], # conditions
263 } 273 }
OLDNEW
« no previous file with comments | « apps/app_window.cc ('k') | apps/ui/web_contents_sizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698