| 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 21 matching lines...) Expand all Loading... |
| 32 'app_lifetime_monitor_factory.cc', | 32 'app_lifetime_monitor_factory.cc', |
| 33 'app_lifetime_monitor_factory.h', | 33 'app_lifetime_monitor_factory.h', |
| 34 'app_load_service.cc', | 34 'app_load_service.cc', |
| 35 'app_load_service.h', | 35 'app_load_service.h', |
| 36 'app_load_service_factory.cc', | 36 'app_load_service_factory.cc', |
| 37 'app_load_service_factory.h', | 37 'app_load_service_factory.h', |
| 38 'app_restore_service.cc', | 38 'app_restore_service.cc', |
| 39 'app_restore_service.h', | 39 'app_restore_service.h', |
| 40 'app_restore_service_factory.cc', | 40 'app_restore_service_factory.cc', |
| 41 'app_restore_service_factory.h', | 41 'app_restore_service_factory.h', |
| 42 'app_window.cc', |
| 43 'app_window.h', |
| 42 'app_window_contents.cc', | 44 'app_window_contents.cc', |
| 43 'app_window_contents.h', | 45 'app_window_contents.h', |
| 46 'app_window_geometry_cache.cc', |
| 47 'app_window_geometry_cache.h', |
| 48 'app_window_registry.cc', |
| 49 'app_window_registry.h', |
| 44 'apps_client.cc', | 50 'apps_client.cc', |
| 45 'apps_client.h', | 51 'apps_client.h', |
| 46 'launcher.cc', | 52 'launcher.cc', |
| 47 'launcher.h', | 53 'launcher.h', |
| 48 'metrics_names.h', | 54 'metrics_names.h', |
| 49 'pref_names.cc', | 55 'pref_names.cc', |
| 50 'pref_names.h', | 56 'pref_names.h', |
| 51 'prefs.cc', | 57 'prefs.cc', |
| 52 'prefs.h', | 58 'prefs.h', |
| 53 'saved_files_service.cc', | 59 'saved_files_service.cc', |
| 54 'saved_files_service.h', | 60 'saved_files_service.h', |
| 55 'saved_files_service_factory.cc', | 61 'saved_files_service_factory.cc', |
| 56 'saved_files_service_factory.h', | 62 'saved_files_service_factory.h', |
| 57 'shell_window.cc', | |
| 58 'shell_window.h', | |
| 59 'shell_window_geometry_cache.cc', | |
| 60 'shell_window_geometry_cache.h', | |
| 61 'shell_window_registry.cc', | |
| 62 'shell_window_registry.h', | |
| 63 'switches.cc', | 63 'switches.cc', |
| 64 'switches.h', | 64 'switches.h', |
| 65 'ui/native_app_window.h', | 65 'ui/native_app_window.h', |
| 66 'ui/views/shell_window_frame_view.cc', | 66 'ui/views/app_window_frame_view.cc', |
| 67 'ui/views/shell_window_frame_view.h', | 67 'ui/views/app_window_frame_view.h', |
| 68 ], | 68 ], |
| 69 'conditions': [ | 69 'conditions': [ |
| 70 ['chromeos==1', | 70 ['chromeos==1', |
| 71 { | 71 { |
| 72 'dependencies': [ | 72 'dependencies': [ |
| 73 'browser_chromeos', | 73 'browser_chromeos', |
| 74 ] | 74 ] |
| 75 } | 75 } |
| 76 ], | 76 ], |
| 77 ['enable_extensions==0', | 77 ['enable_extensions==0', |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 'dependencies': [ | 160 'dependencies': [ |
| 161 '../sandbox/sandbox.gyp:sandbox', | 161 '../sandbox/sandbox.gyp:sandbox', |
| 162 ], | 162 ], |
| 163 }], | 163 }], |
| 164 ], | 164 ], |
| 165 }, | 165 }, |
| 166 ], # targets | 166 ], # targets |
| 167 }], # chromeos==1 | 167 }], # chromeos==1 |
| 168 ], # conditions | 168 ], # conditions |
| 169 } | 169 } |
| OLD | NEW |