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

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: Add a missing NULL pointer check to android code. 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
« 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 'saved_files_service_factory.h', 65 'saved_files_service_factory.h',
66 'size_constraints.cc', 66 'size_constraints.cc',
67 'size_constraints.h', 67 'size_constraints.h',
68 'switches.cc', 68 'switches.cc',
69 'switches.h', 69 'switches.h',
70 'ui/native_app_window.h', 70 'ui/native_app_window.h',
71 'ui/views/app_window_frame_view.cc', 71 'ui/views/app_window_frame_view.cc',
72 'ui/views/app_window_frame_view.h', 72 'ui/views/app_window_frame_view.h',
73 'ui/views/native_app_window_views.cc', 73 'ui/views/native_app_window_views.cc',
74 'ui/views/native_app_window_views.h', 74 'ui/views/native_app_window_views.h',
75 'ui/web_contents_sizer.h',
75 ], 76 ],
76 'conditions': [ 77 'conditions': [
78 ['OS=="mac"', {
79 'sources': [
80 'ui/web_contents_sizer.mm',
81 ],
82 }, { # OS!=mac
83 'sources': [
84 'ui/web_contents_sizer.cc',
85 ],
86 }],
77 ['chromeos==1', 87 ['chromeos==1',
78 { 88 {
79 'dependencies': [ 89 'dependencies': [
80 'browser_chromeos', 90 'browser_chromeos',
81 ] 91 ]
82 } 92 }
83 ], 93 ],
84 ['enable_extensions==0', 94 ['enable_extensions==0',
85 { 95 {
86 'sources/': [ 96 'sources/': [
(...skipping 10 matching lines...) Expand all
97 'sources/': [ 107 'sources/': [
98 ['exclude', 'ui/views/'], 108 ['exclude', 'ui/views/'],
99 ], 109 ],
100 }], 110 }],
101 ], 111 ],
102 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 112 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
103 'msvs_disabled_warnings': [ 4267, ], 113 'msvs_disabled_warnings': [ 4267, ],
104 }, 114 },
105 ], # targets 115 ], # targets
106 } 116 }
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