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

Side by Side Diff: apps/apps.gypi

Issue 12321107: Move shell integration code from chrome/browser to apps (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 14 matching lines...) Expand all
25 'app_launcher.cc', 25 'app_launcher.cc',
26 'app_launcher.h', 26 'app_launcher.h',
27 'app_restore_service.cc', 27 'app_restore_service.cc',
28 'app_restore_service.h', 28 'app_restore_service.h',
29 'app_restore_service_factory.cc', 29 'app_restore_service_factory.cc',
30 'app_restore_service_factory.h', 30 'app_restore_service_factory.h',
31 'pref_names.cc', 31 'pref_names.cc',
32 'pref_names.h', 32 'pref_names.h',
33 'prefs.cc', 33 'prefs.cc',
34 'prefs.h', 34 'prefs.h',
35 'shell_integration.cc',
36 'shell_integration.h',
37 'shell_integration_android.cc',
38 'shell_integration_linux.cc',
39 'shell_integration_linux.h',
40 'shell_integration_mac.mm',
41 'shell_integration_win.cc',
35 ], 42 ],
36 'conditions': [ 43 'conditions': [
37 ['enable_extensions==0', { 44 ['enable_extensions==0', {
38 'sources/': [ 45 'sources/': [
39 ['exclude', '^apps/'], 46 ['exclude', '^apps/'],
40 ], 47 ],
41 }], 48 }],
42 ], 49 ],
43 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 50 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
44 'msvs_disabled_warnings': [ 4267, ], 51 'msvs_disabled_warnings': [ 4267, ],
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 'msvs_settings': { 84 'msvs_settings': {
78 'VCLinkerTool': { 85 'VCLinkerTool': {
79 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 86 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
80 }, 87 },
81 }, 88 },
82 }, 89 },
83 ], 90 ],
84 },], # 'OS=="win"' 91 },], # 'OS=="win"'
85 ], # 'conditions' 92 ], # 'conditions'
86 } 93 }
OLDNEW
« no previous file with comments | « apps/DEPS ('k') | apps/shell_integration.h » ('j') | apps/shell_integration.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698