| 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 'switches.cc', | 39 'switches.cc', |
| 36 'switches.h', | 40 'switches.h', |
| 37 ], | 41 ], |
| 38 'conditions': [ | 42 'conditions': [ |
| 39 ['enable_extensions==0', | 43 ['enable_extensions==0', |
| 40 { | 44 { |
| 41 'sources/': [ | 45 'sources/': [ |
| 42 ['exclude', '^apps/'], | 46 ['exclude', '^apps/'], |
| 43 ], | 47 ], |
| 44 } | 48 } |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 'VCLinkerTool': { | 87 'VCLinkerTool': { |
| 84 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 88 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 85 }, | 89 }, |
| 86 }, | 90 }, |
| 87 }, | 91 }, |
| 88 ], | 92 ], |
| 89 }, | 93 }, |
| 90 ], # 'OS=="win"' | 94 ], # 'OS=="win"' |
| 91 ], # 'conditions' | 95 ], # 'conditions' |
| 92 } | 96 } |
| OLD | NEW |