| 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 # GN version: //apps | 8 # GN version: //apps |
| 9 'target_name': 'apps', | 9 'target_name': 'apps', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 'app_lifetime_monitor_factory.cc', | 31 'app_lifetime_monitor_factory.cc', |
| 32 'app_lifetime_monitor_factory.h', | 32 'app_lifetime_monitor_factory.h', |
| 33 'app_load_service.cc', | 33 'app_load_service.cc', |
| 34 'app_load_service.h', | 34 'app_load_service.h', |
| 35 'app_load_service_factory.cc', | 35 'app_load_service_factory.cc', |
| 36 'app_load_service_factory.h', | 36 'app_load_service_factory.h', |
| 37 'app_restore_service.cc', | 37 'app_restore_service.cc', |
| 38 'app_restore_service.h', | 38 'app_restore_service.h', |
| 39 'app_restore_service_factory.cc', | 39 'app_restore_service_factory.cc', |
| 40 'app_restore_service_factory.h', | 40 'app_restore_service_factory.h', |
| 41 'app_window.cc', | |
| 42 'app_window.h', | |
| 43 'app_window_contents.cc', | 41 'app_window_contents.cc', |
| 44 'app_window_contents.h', | 42 'app_window_contents.h', |
| 45 'app_window_registry.cc', | |
| 46 'app_window_registry.h', | |
| 47 'browser_context_keyed_service_factories.cc', | 43 'browser_context_keyed_service_factories.cc', |
| 48 'browser_context_keyed_service_factories.h', | 44 'browser_context_keyed_service_factories.h', |
| 49 'custom_launcher_page_contents.cc', | 45 'custom_launcher_page_contents.cc', |
| 50 'custom_launcher_page_contents.h', | 46 'custom_launcher_page_contents.h', |
| 51 'launcher.cc', | 47 'launcher.cc', |
| 52 'launcher.h', | 48 'launcher.h', |
| 53 'metrics_names.h', | 49 'metrics_names.h', |
| 54 'saved_files_service.cc', | 50 'saved_files_service.cc', |
| 55 'saved_files_service.h', | 51 'saved_files_service.h', |
| 56 'saved_files_service_factory.cc', | 52 'saved_files_service_factory.cc', |
| 57 'saved_files_service_factory.h', | 53 'saved_files_service_factory.h', |
| 58 'switches.cc', | 54 'switches.cc', |
| 59 'switches.h', | 55 'switches.h', |
| 60 'ui/apps_client.cc', | |
| 61 'ui/apps_client.h', | |
| 62 'ui/views/app_window_frame_view.cc', | 56 'ui/views/app_window_frame_view.cc', |
| 63 'ui/views/app_window_frame_view.h', | 57 'ui/views/app_window_frame_view.h', |
| 64 'ui/views/native_app_window_views.cc', | 58 'ui/views/native_app_window_views.cc', |
| 65 'ui/views/native_app_window_views.h', | 59 'ui/views/native_app_window_views.h', |
| 66 ], | 60 ], |
| 67 'conditions': [ | 61 'conditions': [ |
| 68 ['chromeos==1', | 62 ['chromeos==1', |
| 69 { | 63 { |
| 70 'dependencies': [ | 64 'dependencies': [ |
| 71 'browser_chromeos', | 65 'browser_chromeos', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 91 'sources/': [ | 85 'sources/': [ |
| 92 ['exclude', 'ui/views/'], | 86 ['exclude', 'ui/views/'], |
| 93 ], | 87 ], |
| 94 }], | 88 }], |
| 95 ], | 89 ], |
| 96 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 90 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 97 'msvs_disabled_warnings': [ 4267, ], | 91 'msvs_disabled_warnings': [ 4267, ], |
| 98 }, | 92 }, |
| 99 ], # targets | 93 ], # targets |
| 100 } | 94 } |
| OLD | NEW |