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 '../skia/skia.gyp:skia', | 19 '../skia/skia.gyp:skia', |
20 ], | 20 ], |
21 'include_dirs': [ | 21 'include_dirs': [ |
22 '<(INTERMEDIATE_DIR)', | 22 '<(INTERMEDIATE_DIR)', |
23 '<(grit_out_dir)', | 23 '<(grit_out_dir)', |
24 ], | 24 ], |
25 'sources': [ | 25 'sources': [ |
26 'app_delegate.h', | |
27 'app_lifetime_monitor.cc', | 26 'app_lifetime_monitor.cc', |
28 'app_lifetime_monitor.h', | 27 'app_lifetime_monitor.h', |
29 'app_lifetime_monitor_factory.cc', | 28 'app_lifetime_monitor_factory.cc', |
30 'app_lifetime_monitor_factory.h', | 29 'app_lifetime_monitor_factory.h', |
31 'app_load_service.cc', | 30 'app_load_service.cc', |
32 'app_load_service.h', | 31 'app_load_service.h', |
33 'app_load_service_factory.cc', | 32 'app_load_service_factory.cc', |
34 'app_load_service_factory.h', | 33 'app_load_service_factory.h', |
35 'app_restore_service.cc', | 34 'app_restore_service.cc', |
36 'app_restore_service.h', | 35 'app_restore_service.h', |
37 'app_restore_service_factory.cc', | 36 'app_restore_service_factory.cc', |
38 'app_restore_service_factory.h', | 37 'app_restore_service_factory.h', |
39 'app_window.cc', | 38 'app_window.cc', |
40 'app_window.h', | 39 'app_window.h', |
41 'app_window_contents.cc', | 40 'app_window_contents.cc', |
42 'app_window_contents.h', | 41 'app_window_contents.h', |
43 'app_window_geometry_cache.cc', | |
44 'app_window_geometry_cache.h', | |
45 'app_window_registry.cc', | 42 'app_window_registry.cc', |
46 'app_window_registry.h', | 43 'app_window_registry.h', |
47 'app_web_contents_helper.cc', | |
48 'app_web_contents_helper.h', | |
49 'browser_context_keyed_service_factories.cc', | 44 'browser_context_keyed_service_factories.cc', |
50 'browser_context_keyed_service_factories.h', | 45 'browser_context_keyed_service_factories.h', |
51 'custom_launcher_page_contents.cc', | 46 'custom_launcher_page_contents.cc', |
52 'custom_launcher_page_contents.h', | 47 'custom_launcher_page_contents.h', |
53 'launcher.cc', | 48 'launcher.cc', |
54 'launcher.h', | 49 'launcher.h', |
55 'metrics_names.h', | 50 'metrics_names.h', |
56 'pref_names.cc', | 51 'pref_names.cc', |
57 'pref_names.h', | 52 'pref_names.h', |
58 'prefs.cc', | 53 'prefs.cc', |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 'sources/': [ | 104 'sources/': [ |
110 ['exclude', 'ui/views/'], | 105 ['exclude', 'ui/views/'], |
111 ], | 106 ], |
112 }], | 107 }], |
113 ], | 108 ], |
114 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 109 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
115 'msvs_disabled_warnings': [ 4267, ], | 110 'msvs_disabled_warnings': [ 4267, ], |
116 }, | 111 }, |
117 ], # targets | 112 ], # targets |
118 } | 113 } |
OLD | NEW |