| OLD | NEW |
| 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 Loading... |
| 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 'shell_window_geometry_cache.cc', |
| 46 'shell_window_geometry_cache.h', |
| 45 'shortcut_manager.cc', | 47 'shortcut_manager.cc', |
| 46 'shortcut_manager.h', | 48 'shortcut_manager.h', |
| 47 'shortcut_manager_factory.cc', | 49 'shortcut_manager_factory.cc', |
| 48 'shortcut_manager_factory.h', | 50 'shortcut_manager_factory.h', |
| 49 ], | 51 ], |
| 50 'conditions': [ | 52 'conditions': [ |
| 51 ['enable_extensions==0', | 53 ['enable_extensions==0', |
| 52 { | 54 { |
| 53 'sources/': [ | 55 'sources/': [ |
| 54 ['exclude', '^apps/'], | 56 ['exclude', '^apps/'], |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 'VCLinkerTool': { | 97 'VCLinkerTool': { |
| 96 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 98 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 97 }, | 99 }, |
| 98 }, | 100 }, |
| 99 }, | 101 }, |
| 100 ], | 102 ], |
| 101 }, | 103 }, |
| 102 ], # 'OS=="win"' | 104 ], # 'OS=="win"' |
| 103 ], # 'conditions' | 105 ], # 'conditions' |
| 104 } | 106 } |
| OLD | NEW |