OLD | NEW |
---|---|
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 Loading... | |
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 'shortcut_manager.cc', | |
36 'shortcut_manager.h', | |
37 'shortcut_manager_factory.cc', | |
38 'shortcut_manager_factory.h', | |
35 ], | 39 ], |
36 'conditions': [ | 40 'conditions': [ |
37 ['enable_extensions==0', { | 41 ['enable_extensions==0', { |
38 'sources/': [ | 42 'sources/': [ |
39 ['exclude', '^apps/'], | 43 ['exclude', '^apps/'], |
40 ], | 44 ], |
41 }], | 45 }], |
46 ['toolkit_uses_gtk == 1', { | |
47 'dependencies': [ | |
48 '../build/linux/system.gyp:gdk', | |
tfarina
2013/03/03 23:57:49
why do you need this now?
benwells
2013/03/04 01:30:03
good question. it was needed because i am now incl
| |
49 ], | |
50 }], | |
42 ], | 51 ], |
43 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 52 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
44 'msvs_disabled_warnings': [ 4267, ], | 53 'msvs_disabled_warnings': [ 4267, ], |
45 }, | 54 }, |
46 ], | 55 ], |
47 'conditions': [ | 56 'conditions': [ |
48 ['OS=="win"', { | 57 ['OS=="win"', { |
49 'targets': [ | 58 'targets': [ |
50 { | 59 { |
51 'target_name': 'app_host', | 60 'target_name': 'app_host', |
(...skipping 25 matching lines...) Expand all Loading... | |
77 'msvs_settings': { | 86 'msvs_settings': { |
78 'VCLinkerTool': { | 87 'VCLinkerTool': { |
79 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 88 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
80 }, | 89 }, |
81 }, | 90 }, |
82 }, | 91 }, |
83 ], | 92 ], |
84 },], # 'OS=="win"' | 93 },], # 'OS=="win"' |
85 ], # 'conditions' | 94 ], # 'conditions' |
86 } | 95 } |
OLD | NEW |