| 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 # GN version: //apps |
| 8 'target_name': 'apps', | 9 'target_name': 'apps', |
| 9 'type': 'static_library', | 10 'type': 'static_library', |
| 10 'variables': { 'enable_wexit_time_destructors': 1, }, | 11 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 11 # Since browser and browser_extensions actually depend on each other, | 12 # Since browser and browser_extensions actually depend on each other, |
| 12 # we must omit the dependency from browser_extensions to browser. | 13 # we must omit the dependency from browser_extensions to browser. |
| 13 # However, this means browser_extensions and browser should more or less | 14 # However, this means browser_extensions and browser should more or less |
| 14 # have the same dependencies. Once browser_extensions is untangled from | 15 # have the same dependencies. Once browser_extensions is untangled from |
| 15 # browser, then we can clean up these dependencies. | 16 # browser, then we can clean up these dependencies. |
| 16 'dependencies': [ | 17 'dependencies': [ |
| 17 'browser_extensions', | 18 'browser_extensions', |
| 19 'chrome_resources.gyp:theme_resources', |
| 18 'common/extensions/api/api.gyp:chrome_api', | 20 'common/extensions/api/api.gyp:chrome_api', |
| 19 '../skia/skia.gyp:skia', | 21 '../skia/skia.gyp:skia', |
| 20 ], | 22 ], |
| 21 'include_dirs': [ | 23 'include_dirs': [ |
| 22 '<(INTERMEDIATE_DIR)', | 24 '<(INTERMEDIATE_DIR)', |
| 23 '<(grit_out_dir)', | 25 '<(grit_out_dir)', |
| 24 ], | 26 ], |
| 25 'sources': [ | 27 'sources': [ |
| 28 # Note: file list duplicated in GN build. |
| 26 'app_lifetime_monitor.cc', | 29 'app_lifetime_monitor.cc', |
| 27 'app_lifetime_monitor.h', | 30 'app_lifetime_monitor.h', |
| 28 'app_lifetime_monitor_factory.cc', | 31 'app_lifetime_monitor_factory.cc', |
| 29 'app_lifetime_monitor_factory.h', | 32 'app_lifetime_monitor_factory.h', |
| 30 'app_load_service.cc', | 33 'app_load_service.cc', |
| 31 'app_load_service.h', | 34 'app_load_service.h', |
| 32 'app_load_service_factory.cc', | 35 'app_load_service_factory.cc', |
| 33 'app_load_service_factory.h', | 36 'app_load_service_factory.h', |
| 34 'app_restore_service.cc', | 37 'app_restore_service.cc', |
| 35 'app_restore_service.h', | 38 'app_restore_service.h', |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 'sources/': [ | 107 'sources/': [ |
| 105 ['exclude', 'ui/views/'], | 108 ['exclude', 'ui/views/'], |
| 106 ], | 109 ], |
| 107 }], | 110 }], |
| 108 ], | 111 ], |
| 109 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 112 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 110 'msvs_disabled_warnings': [ 4267, ], | 113 'msvs_disabled_warnings': [ 4267, ], |
| 111 }, | 114 }, |
| 112 ], # targets | 115 ], # targets |
| 113 } | 116 } |
| OLD | NEW |