| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 'app_shim/chrome_main_app_mode_mac.mm', | 46 'app_shim/chrome_main_app_mode_mac.mm', |
| 47 'app_shim/extension_app_shim_handler_mac.cc', | 47 'app_shim/extension_app_shim_handler_mac.cc', |
| 48 'app_shim/extension_app_shim_handler_mac.h', | 48 'app_shim/extension_app_shim_handler_mac.h', |
| 49 'app_window_contents.cc', | 49 'app_window_contents.cc', |
| 50 'app_window_contents.h', | 50 'app_window_contents.h', |
| 51 'apps_client.cc', | 51 'apps_client.cc', |
| 52 'apps_client.h', | 52 'apps_client.h', |
| 53 'launcher.cc', | 53 'launcher.cc', |
| 54 'launcher.h', | 54 'launcher.h', |
| 55 'metrics_names.h', | 55 'metrics_names.h', |
| 56 'native_app_window.h', | |
| 57 'pref_names.cc', | 56 'pref_names.cc', |
| 58 'pref_names.h', | 57 'pref_names.h', |
| 59 'prefs.cc', | 58 'prefs.cc', |
| 60 'prefs.h', | 59 'prefs.h', |
| 61 'saved_files_service.cc', | 60 'saved_files_service.cc', |
| 62 'saved_files_service.h', | 61 'saved_files_service.h', |
| 63 'saved_files_service_factory.cc', | 62 'saved_files_service_factory.cc', |
| 64 'saved_files_service_factory.h', | 63 'saved_files_service_factory.h', |
| 65 'shell_window.cc', | 64 'shell_window.cc', |
| 66 'shell_window.h', | 65 'shell_window.h', |
| 67 'shell_window_geometry_cache.cc', | 66 'shell_window_geometry_cache.cc', |
| 68 'shell_window_geometry_cache.h', | 67 'shell_window_geometry_cache.h', |
| 69 'shell_window_registry.cc', | 68 'shell_window_registry.cc', |
| 70 'shell_window_registry.h', | 69 'shell_window_registry.h', |
| 71 'switches.cc', | 70 'switches.cc', |
| 72 'switches.h', | 71 'switches.h', |
| 72 'ui/native_app_window.h', |
| 73 'ui/views/shell_window_frame_view.cc', | 73 'ui/views/shell_window_frame_view.cc', |
| 74 'ui/views/shell_window_frame_view.h', | 74 'ui/views/shell_window_frame_view.h', |
| 75 ], | 75 ], |
| 76 'conditions': [ | 76 'conditions': [ |
| 77 ['chromeos==1', | 77 ['chromeos==1', |
| 78 { | 78 { |
| 79 'dependencies': [ | 79 'dependencies': [ |
| 80 'browser_chromeos', | 80 'browser_chromeos', |
| 81 ] | 81 ] |
| 82 } | 82 } |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 'shell/app_shell_main_delegate.h', | 136 'shell/app_shell_main_delegate.h', |
| 137 'shell/app_shell_main.cc', | 137 'shell/app_shell_main.cc', |
| 138 'shell/web_view_window.cc', | 138 'shell/web_view_window.cc', |
| 139 'shell/web_view_window.cc', | 139 'shell/web_view_window.cc', |
| 140 ], | 140 ], |
| 141 }, | 141 }, |
| 142 ], # targets | 142 ], # targets |
| 143 }], # chromeos==1 | 143 }], # chromeos==1 |
| 144 ], # conditions | 144 ], # conditions |
| 145 } | 145 } |
| OLD | NEW |