4th attempt to land change to remove NativeViewportService and
[chromium-blink-merge.git] / apps / apps.gypi
blob789b7a23d290f82801de2cce22967cfe4492b3cf
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_devices_service.cc',
49         'saved_devices_service.h',
50         'saved_devices_service_factory.cc',
51         'saved_devices_service_factory.h',
52         'saved_files_service.cc',
53         'saved_files_service.h',
54         'saved_files_service_factory.cc',
55         'saved_files_service_factory.h',
56         'switches.cc',
57         'switches.h',
58         'ui/views/app_window_frame_view.cc',
59         'ui/views/app_window_frame_view.h',
60       ],
61       'conditions': [
62         ['chromeos==1',
63           {
64             'dependencies': [
65               'browser_chromeos',
66             ]
67           }
68         ],
69         ['enable_extensions==0',
70           {
71             'dependencies!': [
72               'browser_extensions',
73             ],
74             'sources/': [
75               ['exclude', '.*'],
76             ],
77           }
78         ],
79         ['toolkit_views==1', {
80           'dependencies': [
81             '../components/components.gyp:native_app_window',
82             '../ui/strings/ui_strings.gyp:ui_strings',
83             '../ui/views/views.gyp:views',
84           ],
85         }, {  # toolkit_views==0
86           'sources/': [
87             ['exclude', 'ui/views/'],
88           ],
89         }],
90       ],
91       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
92       'msvs_disabled_warnings': [ 4267, ],
93     },
94   ],  # targets