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

Side by Side Diff: apps/apps.gypi

Issue 14607023: Add support for persistent file access in apps. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 7 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
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 24 matching lines...) Expand all
35 'app_shim/app_shim_host_mac.cc', 35 'app_shim/app_shim_host_mac.cc',
36 'app_shim/app_shim_host_mac.h', 36 'app_shim/app_shim_host_mac.h',
37 'app_shim/app_shim_host_manager_mac.h', 37 'app_shim/app_shim_host_manager_mac.h',
38 'app_shim/app_shim_host_manager_mac.mm', 38 'app_shim/app_shim_host_manager_mac.mm',
39 'field_trial_names.cc', 39 'field_trial_names.cc',
40 'field_trial_names.h', 40 'field_trial_names.h',
41 'pref_names.cc', 41 'pref_names.cc',
42 'pref_names.h', 42 'pref_names.h',
43 'prefs.cc', 43 'prefs.cc',
44 'prefs.h', 44 'prefs.h',
45 'saved_files_service.cc',
46 'saved_files_service.h',
47 'saved_files_service_factory.cc',
48 'saved_files_service_factory.h',
45 'shell_window_geometry_cache.cc', 49 'shell_window_geometry_cache.cc',
46 'shell_window_geometry_cache.h', 50 'shell_window_geometry_cache.h',
47 'shortcut_manager.cc', 51 'shortcut_manager.cc',
48 'shortcut_manager.h', 52 'shortcut_manager.h',
49 'shortcut_manager_factory.cc', 53 'shortcut_manager_factory.cc',
50 'shortcut_manager_factory.h', 54 'shortcut_manager_factory.h',
51 ], 55 ],
52 'conditions': [ 56 'conditions': [
53 ['enable_extensions==0', 57 ['enable_extensions==0',
54 { 58 {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 'VCLinkerTool': { 101 'VCLinkerTool': {
98 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 102 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
99 }, 103 },
100 }, 104 },
101 }, 105 },
102 ], 106 ],
103 }, 107 },
104 ], # 'OS=="win"' 108 ], # 'OS=="win"'
105 ], # 'conditions' 109 ], # 'conditions'
106 } 110 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698