| 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 import("//extensions/features/features.gni") | 7 import("//extensions/features/features.gni") |
| 8 | 8 |
| 9 assert(!is_android && !is_ios) | 9 assert(!is_android && !is_ios) |
| 10 | 10 |
| 11 static_library("apps") { | 11 static_library("apps") { |
| 12 sources = [] | 12 sources = [] |
| 13 | 13 |
| 14 if (enable_extensions) { | 14 if (enable_extensions) { |
| 15 sources += [ | 15 sources += [ |
| 16 "app_lifetime_monitor.cc", | 16 "app_lifetime_monitor.cc", |
| 17 "app_lifetime_monitor.h", | 17 "app_lifetime_monitor.h", |
| 18 "app_lifetime_monitor_factory.cc", | 18 "app_lifetime_monitor_factory.cc", |
| 19 "app_lifetime_monitor_factory.h", | 19 "app_lifetime_monitor_factory.h", |
| 20 "app_load_service.cc", | 20 "app_load_service.cc", |
| 21 "app_load_service.h", | 21 "app_load_service.h", |
| 22 "app_load_service_factory.cc", | 22 "app_load_service_factory.cc", |
| 23 "app_load_service_factory.h", | 23 "app_load_service_factory.h", |
| 24 "app_restore_service.cc", | 24 "app_restore_service.cc", |
| 25 "app_restore_service.h", | 25 "app_restore_service.h", |
| 26 "app_restore_service_factory.cc", | 26 "app_restore_service_factory.cc", |
| 27 "app_restore_service_factory.h", | 27 "app_restore_service_factory.h", |
| 28 "browser_context_keyed_service_factories.cc", | 28 "browser_context_keyed_service_factories.cc", |
| 29 "browser_context_keyed_service_factories.h", | 29 "browser_context_keyed_service_factories.h", |
| 30 "custom_launcher_page_contents.cc", | |
| 31 "custom_launcher_page_contents.h", | |
| 32 "launcher.cc", | 30 "launcher.cc", |
| 33 "launcher.h", | 31 "launcher.h", |
| 34 "metrics_names.h", | 32 "metrics_names.h", |
| 35 "saved_files_service.cc", | 33 "saved_files_service.cc", |
| 36 "saved_files_service.h", | 34 "saved_files_service.h", |
| 37 "saved_files_service_factory.cc", | 35 "saved_files_service_factory.cc", |
| 38 "saved_files_service_factory.h", | 36 "saved_files_service_factory.h", |
| 39 "switches.cc", | 37 "switches.cc", |
| 40 "switches.h", | 38 "switches.h", |
| 41 ] | 39 ] |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 testonly = true | 74 testonly = true |
| 77 sources = [ | 75 sources = [ |
| 78 "test/app_window_waiter.cc", | 76 "test/app_window_waiter.cc", |
| 79 "test/app_window_waiter.h", | 77 "test/app_window_waiter.h", |
| 80 ] | 78 ] |
| 81 | 79 |
| 82 public_deps = [ | 80 public_deps = [ |
| 83 "//content/public/browser", | 81 "//content/public/browser", |
| 84 ] | 82 ] |
| 85 } | 83 } |
| OLD | NEW |