| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 | 7 |
| 8 assert(!is_android && !is_ios) | 8 assert(!is_android && !is_ios) |
| 9 | 9 |
| 10 static_library("apps") { | 10 static_library("apps") { |
| 11 sources = [ | 11 sources = [ |
| 12 "app_lifetime_monitor.cc", | 12 "app_lifetime_monitor.cc", |
| 13 "app_lifetime_monitor.h", | 13 "app_lifetime_monitor.h", |
| 14 "app_lifetime_monitor_factory.cc", | 14 "app_lifetime_monitor_factory.cc", |
| 15 "app_lifetime_monitor_factory.h", | 15 "app_lifetime_monitor_factory.h", |
| 16 "app_load_service.cc", | 16 "app_load_service.cc", |
| 17 "app_load_service.h", | 17 "app_load_service.h", |
| 18 "app_load_service_factory.cc", | 18 "app_load_service_factory.cc", |
| 19 "app_load_service_factory.h", | 19 "app_load_service_factory.h", |
| 20 "app_restore_service.cc", | 20 "app_restore_service.cc", |
| 21 "app_restore_service.h", | 21 "app_restore_service.h", |
| 22 "app_restore_service_factory.cc", | 22 "app_restore_service_factory.cc", |
| 23 "app_restore_service_factory.h", | 23 "app_restore_service_factory.h", |
| 24 "browser_context_keyed_service_factories.cc", | 24 "browser_context_keyed_service_factories.cc", |
| 25 "browser_context_keyed_service_factories.h", | 25 "browser_context_keyed_service_factories.h", |
| 26 "custom_launcher_page_contents.cc", | 26 "custom_launcher_page_contents.cc", |
| 27 "custom_launcher_page_contents.h", | 27 "custom_launcher_page_contents.h", |
| 28 "launcher.cc", | 28 "launcher.cc", |
| 29 "launcher.h", | 29 "launcher.h", |
| 30 "metrics_names.h", | |
| 31 "saved_files_service.cc", | 30 "saved_files_service.cc", |
| 32 "saved_files_service.h", | 31 "saved_files_service.h", |
| 33 "saved_files_service_factory.cc", | 32 "saved_files_service_factory.cc", |
| 34 "saved_files_service_factory.h", | 33 "saved_files_service_factory.h", |
| 35 "switches.cc", | 34 "switches.cc", |
| 36 "switches.h", | 35 "switches.h", |
| 37 ] | 36 ] |
| 38 | 37 |
| 39 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 38 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 40 | 39 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 69 "//ui/views", | 68 "//ui/views", |
| 70 ] | 69 ] |
| 71 if (enable_extensions) { | 70 if (enable_extensions) { |
| 72 deps += [ "//extensions/browser" ] | 71 deps += [ "//extensions/browser" ] |
| 73 } | 72 } |
| 74 } | 73 } |
| 75 | 74 |
| 76 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 75 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 77 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 76 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 78 } | 77 } |
| OLD | NEW |