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

Side by Side Diff: apps/apps.gypi

Issue 15947007: Move application restart and relaunch code out of ExtensionService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Pafooey Created 7 years, 6 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_load_service_factory.cc ('k') | apps/load_and_launch_browsertest.cc » ('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, },
11 # Since browser and browser_extensions actually depend on each other, 11 # Since browser and browser_extensions actually depend on each other,
12 # we must omit the dependency from browser_extensions to browser. 12 # we must omit the dependency from browser_extensions to browser.
13 # However, this means browser_extensions and browser should more or less 13 # However, this means browser_extensions and browser should more or less
14 # have the same dependencies. Once browser_extensions is untangled from 14 # have the same dependencies. Once browser_extensions is untangled from
15 # browser, then we can clean up these dependencies. 15 # browser, then we can clean up these dependencies.
16 'dependencies': [ 16 'dependencies': [
17 'browser_extensions', 17 'browser_extensions',
18 'common/extensions/api/api.gyp:api', 18 'common/extensions/api/api.gyp:api',
19 '../skia/skia.gyp:skia', 19 '../skia/skia.gyp:skia',
20 ], 20 ],
21 'include_dirs': [ 21 'include_dirs': [
22 '<(INTERMEDIATE_DIR)', 22 '<(INTERMEDIATE_DIR)',
23 ], 23 ],
24 'sources': [ 24 'sources': [
25 'app_launch_for_metro_restart_win.cc', 25 'app_launch_for_metro_restart_win.cc',
26 'app_launch_for_metro_restart_win.h', 26 'app_launch_for_metro_restart_win.h',
27 'app_launcher.cc', 27 'app_launcher.cc',
28 'app_launcher.h', 28 'app_launcher.h',
29 'app_load_service.cc',
30 'app_load_service.h',
31 'app_load_service_factory.cc',
32 'app_load_service_factory.h',
29 'app_restore_service.cc', 33 'app_restore_service.cc',
30 'app_restore_service.h', 34 'app_restore_service.h',
31 'app_restore_service_factory.cc', 35 'app_restore_service_factory.cc',
32 'app_restore_service_factory.h', 36 'app_restore_service_factory.h',
33 'app_shim/app_shim_handler_mac.cc', 37 'app_shim/app_shim_handler_mac.cc',
34 'app_shim/app_shim_handler_mac.h', 38 'app_shim/app_shim_handler_mac.h',
35 'app_shim/app_shim_host_mac.cc', 39 'app_shim/app_shim_host_mac.cc',
36 'app_shim/app_shim_host_mac.h', 40 'app_shim/app_shim_host_mac.h',
37 'app_shim/app_shim_host_manager_mac.h', 41 'app_shim/app_shim_host_manager_mac.h',
38 'app_shim/app_shim_host_manager_mac.mm', 42 'app_shim/app_shim_host_manager_mac.mm',
39 'field_trial_names.cc', 43 'field_trial_names.cc',
40 'field_trial_names.h', 44 'field_trial_names.h',
41 'pref_names.cc', 45 'pref_names.cc',
42 'pref_names.h', 46 'pref_names.h',
43 'prefs.cc', 47 'prefs.cc',
44 'prefs.h', 48 'prefs.h',
45 'saved_files_service.cc', 49 'saved_files_service.cc',
46 'saved_files_service.h', 50 'saved_files_service.h',
47 'saved_files_service_factory.cc', 51 'saved_files_service_factory.cc',
48 'saved_files_service_factory.h', 52 'saved_files_service_factory.h',
49 'shell_window_geometry_cache.cc', 53 'shell_window_geometry_cache.cc',
50 'shell_window_geometry_cache.h', 54 'shell_window_geometry_cache.h',
51 'shortcut_manager.cc', 55 'shortcut_manager.cc',
52 'shortcut_manager.h', 56 'shortcut_manager.h',
53 'shortcut_manager_factory.cc', 57 'shortcut_manager_factory.cc',
54 'shortcut_manager_factory.h', 58 'shortcut_manager_factory.h',
59 'switches.cc',
60 'switches.h',
55 ], 61 ],
56 'conditions': [ 62 'conditions': [
57 ['enable_extensions==0', 63 ['enable_extensions==0',
58 { 64 {
59 'sources/': [ 65 'sources/': [
60 ['exclude', '^apps/'], 66 ['exclude', '^apps/'],
61 ], 67 ],
62 } 68 }
63 ], 69 ],
64 ], 70 ],
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 'VCLinkerTool': { 107 'VCLinkerTool': {
102 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 108 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
103 }, 109 },
104 }, 110 },
105 }, 111 },
106 ], 112 ],
107 }, 113 },
108 ], # 'OS=="win"' 114 ], # 'OS=="win"'
109 ], # 'conditions' 115 ], # 'conditions'
110 } 116 }
OLDNEW
« no previous file with comments | « apps/app_load_service_factory.cc ('k') | apps/load_and_launch_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698