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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 'app_shim/app_shim_host_mac.h', | 45 'app_shim/app_shim_host_mac.h', |
46 'app_shim/app_shim_host_manager_mac.h', | 46 'app_shim/app_shim_host_manager_mac.h', |
47 'app_shim/app_shim_host_manager_mac.mm', | 47 'app_shim/app_shim_host_manager_mac.mm', |
48 'app_shim/app_shim_mac.cc', | 48 'app_shim/app_shim_mac.cc', |
49 'app_shim/app_shim_mac.h', | 49 'app_shim/app_shim_mac.h', |
50 'app_shim/chrome_main_app_mode_mac.mm', | 50 'app_shim/chrome_main_app_mode_mac.mm', |
51 'app_shim/extension_app_shim_handler_mac.cc', | 51 'app_shim/extension_app_shim_handler_mac.cc', |
52 'app_shim/extension_app_shim_handler_mac.h', | 52 'app_shim/extension_app_shim_handler_mac.h', |
53 'app_window_contents.cc', | 53 'app_window_contents.cc', |
54 'app_window_contents.h', | 54 'app_window_contents.h', |
| 55 'apps_client.cc', |
| 56 'apps_client.h', |
55 'field_trial_names.cc', | 57 'field_trial_names.cc', |
56 'field_trial_names.h', | 58 'field_trial_names.h', |
57 'launcher.cc', | 59 'launcher.cc', |
58 'launcher.h', | 60 'launcher.h', |
59 'metrics_names.h', | 61 'metrics_names.h', |
60 'native_app_window.h', | 62 'native_app_window.h', |
61 'pref_names.cc', | 63 'pref_names.cc', |
62 'pref_names.h', | 64 'pref_names.h', |
63 'prefs.cc', | 65 'prefs.cc', |
64 'prefs.h', | 66 'prefs.h', |
(...skipping 24 matching lines...) Expand all Loading... |
89 ['exclude', '^apps/'], | 91 ['exclude', '^apps/'], |
90 ], | 92 ], |
91 } | 93 } |
92 ], | 94 ], |
93 ], | 95 ], |
94 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 96 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
95 'msvs_disabled_warnings': [ 4267, ], | 97 'msvs_disabled_warnings': [ 4267, ], |
96 }, | 98 }, |
97 ], | 99 ], |
98 } | 100 } |
OLD | NEW |