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

Side by Side Diff: apps/apps.gypi

Issue 166573005: Rename apps::ShellWindow to apps::AppWindow (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix more shell and Shell refs 2 Created 6 years, 10 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 'launcher.h', 47 'launcher.h',
48 'metrics_names.h', 48 'metrics_names.h',
49 'pref_names.cc', 49 'pref_names.cc',
50 'pref_names.h', 50 'pref_names.h',
51 'prefs.cc', 51 'prefs.cc',
52 'prefs.h', 52 'prefs.h',
53 'saved_files_service.cc', 53 'saved_files_service.cc',
54 'saved_files_service.h', 54 'saved_files_service.h',
55 'saved_files_service_factory.cc', 55 'saved_files_service_factory.cc',
56 'saved_files_service_factory.h', 56 'saved_files_service_factory.h',
57 'shell_window.cc', 57 'app_window.cc',
scheib 2014/02/15 00:02:15 sort
58 'shell_window.h', 58 'app_window.h',
59 'shell_window_geometry_cache.cc', 59 'app_window_geometry_cache.cc',
60 'shell_window_geometry_cache.h', 60 'app_window_geometry_cache.h',
61 'shell_window_registry.cc', 61 'app_window_registry.cc',
62 'shell_window_registry.h', 62 'app_window_registry.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/shell_window_frame_view.cc', 66 'ui/views/app_window_frame_view.cc',
67 'ui/views/shell_window_frame_view.h', 67 'ui/views/app_window_frame_view.h',
68 ], 68 ],
69 'conditions': [ 69 'conditions': [
70 ['chromeos==1', 70 ['chromeos==1',
71 { 71 {
72 'dependencies': [ 72 'dependencies': [
73 'browser_chromeos', 73 'browser_chromeos',
74 ] 74 ]
75 } 75 }
76 ], 76 ],
77 ['enable_extensions==0', 77 ['enable_extensions==0',
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 'dependencies': [ 160 'dependencies': [
161 '../sandbox/sandbox.gyp:sandbox', 161 '../sandbox/sandbox.gyp:sandbox',
162 ], 162 ],
163 }], 163 }],
164 ], 164 ],
165 }, 165 },
166 ], # targets 166 ], # targets
167 }], # chromeos==1 167 }], # chromeos==1
168 ], # conditions 168 ], # conditions
169 } 169 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698