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, }, |
(...skipping 30 matching lines...) Expand all Loading... |
41 'app_window_contents.h', | 41 'app_window_contents.h', |
42 'app_window_registry.cc', | 42 'app_window_registry.cc', |
43 'app_window_registry.h', | 43 'app_window_registry.h', |
44 'browser_context_keyed_service_factories.cc', | 44 'browser_context_keyed_service_factories.cc', |
45 'browser_context_keyed_service_factories.h', | 45 'browser_context_keyed_service_factories.h', |
46 'custom_launcher_page_contents.cc', | 46 'custom_launcher_page_contents.cc', |
47 'custom_launcher_page_contents.h', | 47 'custom_launcher_page_contents.h', |
48 'launcher.cc', | 48 'launcher.cc', |
49 'launcher.h', | 49 'launcher.h', |
50 'metrics_names.h', | 50 'metrics_names.h', |
| 51 'pref_names.cc', |
| 52 'pref_names.h', |
| 53 'prefs.cc', |
| 54 'prefs.h', |
51 'saved_files_service.cc', | 55 'saved_files_service.cc', |
52 'saved_files_service.h', | 56 'saved_files_service.h', |
53 'saved_files_service_factory.cc', | 57 'saved_files_service_factory.cc', |
54 'saved_files_service_factory.h', | 58 'saved_files_service_factory.h', |
55 'switches.cc', | 59 'switches.cc', |
56 'switches.h', | 60 'switches.h', |
57 'ui/apps_client.cc', | 61 'ui/apps_client.cc', |
58 'ui/apps_client.h', | 62 'ui/apps_client.h', |
59 'ui/views/app_window_frame_view.cc', | 63 'ui/views/app_window_frame_view.cc', |
60 'ui/views/app_window_frame_view.h', | 64 'ui/views/app_window_frame_view.h', |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 'sources/': [ | 104 'sources/': [ |
101 ['exclude', 'ui/views/'], | 105 ['exclude', 'ui/views/'], |
102 ], | 106 ], |
103 }], | 107 }], |
104 ], | 108 ], |
105 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 109 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
106 'msvs_disabled_warnings': [ 4267, ], | 110 'msvs_disabled_warnings': [ 4267, ], |
107 }, | 111 }, |
108 ], # targets | 112 ], # targets |
109 } | 113 } |
OLD | NEW |