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

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: 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
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 26 matching lines...) Expand all
37 'app_restore_service_factory.cc', 37 'app_restore_service_factory.cc',
38 'app_restore_service_factory.h', 38 'app_restore_service_factory.h',
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 'apps_client.cc',
48 'apps_client.h',
49 'browser_context_keyed_service_factories.cc', 47 'browser_context_keyed_service_factories.cc',
50 'browser_context_keyed_service_factories.h', 48 'browser_context_keyed_service_factories.h',
51 'custom_launcher_page_contents.cc', 49 'custom_launcher_page_contents.cc',
52 'custom_launcher_page_contents.h', 50 'custom_launcher_page_contents.h',
53 'launcher.cc', 51 'launcher.cc',
54 'launcher.h', 52 'launcher.h',
55 'metrics_names.h', 53 'metrics_names.h',
56 'pref_names.cc', 54 'pref_names.cc',
57 'pref_names.h', 55 'pref_names.h',
58 'prefs.cc', 56 'prefs.cc',
59 'prefs.h', 57 'prefs.h',
60 'saved_files_service.cc', 58 'saved_files_service.cc',
61 'saved_files_service.h', 59 'saved_files_service.h',
62 'saved_files_service_factory.cc', 60 'saved_files_service_factory.cc',
63 'saved_files_service_factory.h', 61 'saved_files_service_factory.h',
64 'size_constraints.cc', 62 'size_constraints.cc',
65 'size_constraints.h', 63 'size_constraints.h',
66 'switches.cc', 64 'switches.cc',
67 'switches.h', 65 'switches.h',
66 'ui/apps_client.cc',
67 'ui/apps_client.h',
68 'ui/native_app_window.h', 68 'ui/native_app_window.h',
69 'ui/views/app_window_frame_view.cc', 69 'ui/views/app_window_frame_view.cc',
70 'ui/views/app_window_frame_view.h', 70 'ui/views/app_window_frame_view.h',
71 'ui/views/native_app_window_views.cc', 71 'ui/views/native_app_window_views.cc',
72 'ui/views/native_app_window_views.h', 72 'ui/views/native_app_window_views.h',
73 'ui/web_contents_sizer.h', 73 'ui/web_contents_sizer.h',
74 ], 74 ],
75 'conditions': [ 75 'conditions': [
76 ['OS=="mac"', { 76 ['OS=="mac"', {
77 'sources': [ 77 'sources': [
(...skipping 29 matching lines...) Expand all
107 'sources/': [ 107 'sources/': [
108 ['exclude', 'ui/views/'], 108 ['exclude', 'ui/views/'],
109 ], 109 ],
110 }], 110 }],
111 ], 111 ],
112 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 112 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
113 'msvs_disabled_warnings': [ 4267, ], 113 'msvs_disabled_warnings': [ 4267, ],
114 }, 114 },
115 ], # targets 115 ], # targets
116 } 116 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698