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

Side by Side Diff: apps/apps.gypi

Issue 13940006: Remove --show-app-list-shortcut flag and implement new app launcher enable logic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 8 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 26 matching lines...) Expand all
37 'field_trial_names.cc', 37 'field_trial_names.cc',
38 'field_trial_names.h', 38 'field_trial_names.h',
39 'pref_names.cc', 39 'pref_names.cc',
40 'pref_names.h', 40 'pref_names.h',
41 'prefs.cc', 41 'prefs.cc',
42 'prefs.h', 42 'prefs.h',
43 'shortcut_manager.cc', 43 'shortcut_manager.cc',
44 'shortcut_manager.h', 44 'shortcut_manager.h',
45 'shortcut_manager_factory.cc', 45 'shortcut_manager_factory.cc',
46 'shortcut_manager_factory.h', 46 'shortcut_manager_factory.h',
47 'switches.cc',
48 'switches.h',
49 ], 47 ],
50 'conditions': [ 48 'conditions': [
51 ['enable_extensions==0', 49 ['enable_extensions==0',
52 { 50 {
53 'sources/': [ 51 'sources/': [
54 ['exclude', '^apps/'], 52 ['exclude', '^apps/'],
55 ], 53 ],
56 } 54 }
57 ], 55 ],
58 ], 56 ],
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 'VCLinkerTool': { 93 'VCLinkerTool': {
96 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 94 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
97 }, 95 },
98 }, 96 },
99 }, 97 },
100 ], 98 ],
101 }, 99 },
102 ], # 'OS=="win"' 100 ], # 'OS=="win"'
103 ], # 'conditions' 101 ], # 'conditions'
104 } 102 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698