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

Side by Side Diff: apps/apps.gypi

Issue 436503002: Moved CreateNativeAppWindow from AppWindow::Delegate to AppsClient. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 years, 4 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_registry.cc ('k') | apps/apps_client.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 28 matching lines...) Expand all
39 'app_window.cc', 39 'app_window.cc',
40 'app_window.h', 40 'app_window.h',
41 'app_window_contents.cc', 41 'app_window_contents.cc',
42 'app_window_contents.h', 42 'app_window_contents.h',
43 'app_window_geometry_cache.cc', 43 'app_window_geometry_cache.cc',
44 'app_window_geometry_cache.h', 44 'app_window_geometry_cache.h',
45 'app_window_registry.cc', 45 'app_window_registry.cc',
46 'app_window_registry.h', 46 'app_window_registry.h',
47 'app_web_contents_helper.cc', 47 'app_web_contents_helper.cc',
48 'app_web_contents_helper.h', 48 'app_web_contents_helper.h',
49 'apps_client.cc',
50 'apps_client.h',
51 'browser_context_keyed_service_factories.cc', 49 'browser_context_keyed_service_factories.cc',
52 'browser_context_keyed_service_factories.h', 50 'browser_context_keyed_service_factories.h',
53 'custom_launcher_page_contents.cc', 51 'custom_launcher_page_contents.cc',
54 'custom_launcher_page_contents.h', 52 'custom_launcher_page_contents.h',
55 'launcher.cc', 53 'launcher.cc',
56 'launcher.h', 54 'launcher.h',
57 'metrics_names.h', 55 'metrics_names.h',
58 'pref_names.cc', 56 'pref_names.cc',
59 'pref_names.h', 57 'pref_names.h',
60 'prefs.cc', 58 'prefs.cc',
61 'prefs.h', 59 'prefs.h',
62 'saved_files_service.cc', 60 'saved_files_service.cc',
63 'saved_files_service.h', 61 'saved_files_service.h',
64 'saved_files_service_factory.cc', 62 'saved_files_service_factory.cc',
65 'saved_files_service_factory.h', 63 'saved_files_service_factory.h',
66 'size_constraints.cc', 64 'size_constraints.cc',
67 'size_constraints.h', 65 'size_constraints.h',
68 'switches.cc', 66 'switches.cc',
69 'switches.h', 67 'switches.h',
68 'ui/apps_client.cc',
69 'ui/apps_client.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 'ui/web_contents_sizer.h',
76 ], 76 ],
77 'conditions': [ 77 'conditions': [
78 ['OS=="mac"', { 78 ['OS=="mac"', {
79 'sources': [ 79 'sources': [
(...skipping 29 matching lines...) Expand all
109 'sources/': [ 109 'sources/': [
110 ['exclude', 'ui/views/'], 110 ['exclude', 'ui/views/'],
111 ], 111 ],
112 }], 112 }],
113 ], 113 ],
114 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 114 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
115 'msvs_disabled_warnings': [ 4267, ], 115 'msvs_disabled_warnings': [ 4267, ],
116 }, 116 },
117 ], # targets 117 ], # targets
118 } 118 }
OLDNEW
« no previous file with comments | « apps/app_window_registry.cc ('k') | apps/apps_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698