| 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, }, |
| 11 # Since browser and browser_extensions actually depend on each other, | 11 # Since browser and browser_extensions actually depend on each other, |
| 12 # we must omit the dependency from browser_extensions to browser. | 12 # we must omit the dependency from browser_extensions to browser. |
| 13 # However, this means browser_extensions and browser should more or less | 13 # However, this means browser_extensions and browser should more or less |
| 14 # have the same dependencies. Once browser_extensions is untangled from | 14 # have the same dependencies. Once browser_extensions is untangled from |
| 15 # browser, then we can clean up these dependencies. | 15 # browser, then we can clean up these dependencies. |
| 16 'dependencies': [ | 16 'dependencies': [ |
| 17 'browser_extensions', | 17 'browser_extensions', |
| 18 'common/extensions/api/api.gyp:chrome_api', | 18 'common/extensions/api/api.gyp:chrome_api', |
| 19 '../apps/common/api/api.gyp:apps_api', |
| 19 '../skia/skia.gyp:skia', | 20 '../skia/skia.gyp:skia', |
| 20 ], | 21 ], |
| 21 'include_dirs': [ | 22 'include_dirs': [ |
| 22 '<(INTERMEDIATE_DIR)', | 23 '<(INTERMEDIATE_DIR)', |
| 23 '<(grit_out_dir)', | 24 '<(grit_out_dir)', |
| 24 ], | 25 ], |
| 25 'sources': [ | 26 'sources': [ |
| 26 'app_lifetime_monitor.cc', | 27 'app_lifetime_monitor.cc', |
| 27 'app_lifetime_monitor.h', | 28 'app_lifetime_monitor.h', |
| 28 'app_lifetime_monitor_factory.cc', | 29 'app_lifetime_monitor_factory.cc', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 40 'app_window_contents.cc', | 41 'app_window_contents.cc', |
| 41 'app_window_contents.h', | 42 'app_window_contents.h', |
| 42 'app_window_geometry_cache.cc', | 43 'app_window_geometry_cache.cc', |
| 43 'app_window_geometry_cache.h', | 44 'app_window_geometry_cache.h', |
| 44 'app_window_registry.cc', | 45 'app_window_registry.cc', |
| 45 'app_window_registry.h', | 46 'app_window_registry.h', |
| 46 'apps_client.cc', | 47 'apps_client.cc', |
| 47 'apps_client.h', | 48 'apps_client.h', |
| 48 'browser_context_keyed_service_factories.cc', | 49 'browser_context_keyed_service_factories.cc', |
| 49 'browser_context_keyed_service_factories.h', | 50 'browser_context_keyed_service_factories.h', |
| 51 'browser/api/app_runtime/app_runtime_api.cc', |
| 52 'browser/api/app_runtime/app_runtime_api.h', |
| 53 'browser/file_handler_util.cc', |
| 54 'browser/file_handler_util.h', |
| 50 'launcher.cc', | 55 'launcher.cc', |
| 51 'launcher.h', | 56 'launcher.h', |
| 52 'metrics_names.h', | 57 'metrics_names.h', |
| 53 'pref_names.cc', | 58 'pref_names.cc', |
| 54 'pref_names.h', | 59 'pref_names.h', |
| 55 'prefs.cc', | 60 'prefs.cc', |
| 56 'prefs.h', | 61 'prefs.h', |
| 57 'saved_files_service.cc', | 62 'saved_files_service.cc', |
| 58 'saved_files_service.h', | 63 'saved_files_service.h', |
| 59 'saved_files_service_factory.cc', | 64 'saved_files_service_factory.cc', |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 'test/app_shell_test.cc', | 259 'test/app_shell_test.cc', |
| 255 'test/apps_test_launcher_delegate.cc', | 260 'test/apps_test_launcher_delegate.cc', |
| 256 'test/apps_test_launcher_delegate.h', | 261 'test/apps_test_launcher_delegate.h', |
| 257 'test/apps_tests_main.cc', | 262 'test/apps_tests_main.cc', |
| 258 ], | 263 ], |
| 259 }, | 264 }, |
| 260 ], # targets | 265 ], # targets |
| 261 }], # chromeos==1 or linux aura or win aura | 266 }], # chromeos==1 or linux aura or win aura |
| 262 ], # conditions | 267 ], # conditions |
| 263 } | 268 } |
| OLD | NEW |