cc: Optimise shared raster tile handling in raster tile priority queue.
[chromium-blink-merge.git] / apps / apps.gypi
blob2268184e802f10e0f4d5e662c7718c25509c0dd2
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
3 # found in the LICENSE file.
6   'targets': [
7     {
8       # GN version: //apps
9       'target_name': 'apps',
10       'type': 'static_library',
11       'variables': { 'enable_wexit_time_destructors': 1, },
12       # Since browser and browser_extensions actually depend on each other,
13       # we must omit the dependency from browser_extensions to browser.
14       # However, this means browser_extensions and browser should more or less
15       # have the same dependencies. Once browser_extensions is untangled from
16       # browser, then we can clean up these dependencies.
17       'dependencies': [
18         'browser_extensions',
19         'chrome_resources.gyp:theme_resources',
20         'common/extensions/api/api.gyp:chrome_api',
21         '../skia/skia.gyp:skia',
22       ],
23       'include_dirs': [
24         '<(INTERMEDIATE_DIR)',
25         '<(grit_out_dir)',
26       ],
27       'sources': [
28         # Note: file list duplicated in GN build.
29         'app_lifetime_monitor.cc',
30         'app_lifetime_monitor.h',
31         'app_lifetime_monitor_factory.cc',
32         'app_lifetime_monitor_factory.h',
33         'app_load_service.cc',
34         'app_load_service.h',
35         'app_load_service_factory.cc',
36         'app_load_service_factory.h',
37         'app_restore_service.cc',
38         'app_restore_service.h',
39         'app_restore_service_factory.cc',
40         'app_restore_service_factory.h',
41         'browser_context_keyed_service_factories.cc',
42         'browser_context_keyed_service_factories.h',
43         'custom_launcher_page_contents.cc',
44         'custom_launcher_page_contents.h',
45         'launcher.cc',
46         'launcher.h',
47         'metrics_names.h',
48         'saved_files_service.cc',
49         'saved_files_service.h',
50         'saved_files_service_factory.cc',
51         'saved_files_service_factory.h',
52         'switches.cc',
53         'switches.h',
54         'ui/views/app_window_frame_view.cc',
55         'ui/views/app_window_frame_view.h',
56         'ui/views/native_app_window_views.cc',
57         'ui/views/native_app_window_views.h',
58       ],
59       'conditions': [
60         ['chromeos==1',
61           {
62             'dependencies': [
63               'browser_chromeos',
64             ]
65           }
66         ],
67         ['enable_extensions==0',
68           {
69             'dependencies!': [
70               'browser_extensions',
71             ],
72             'sources/': [
73               ['exclude', '.*'],
74             ],
75           }
76         ],
77         ['toolkit_views==1', {
78           'dependencies': [
79             '../ui/strings/ui_strings.gyp:ui_strings',
80             '../ui/views/views.gyp:views',
81           ],
82         }, {  # toolkit_views==0
83           'sources/': [
84             ['exclude', 'ui/views/'],
85           ],
86         }],
87       ],
88       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
89       'msvs_disabled_warnings': [ 4267, ],
90     },
91   ],  # targets