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 |
(...skipping 10 matching lines...) Expand all Loading... |
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 "launcher.cc", | 26 "launcher.cc", |
27 "launcher.h", | 27 "launcher.h", |
28 "metrics_names.h", | 28 "metrics_names.h", |
29 "saved_files_service.cc", | 29 "saved_files_service.cc", |
30 "saved_files_service.h", | 30 "saved_files_service.h", |
| 31 "saved_files_service_delegate_impl.cc", |
| 32 "saved_files_service_delegate_impl.h", |
31 "saved_files_service_factory.cc", | 33 "saved_files_service_factory.cc", |
32 "saved_files_service_factory.h", | 34 "saved_files_service_factory.h", |
33 "switches.cc", | 35 "switches.cc", |
34 "switches.h", | 36 "switches.h", |
35 ] | 37 ] |
36 | 38 |
37 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 39 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
38 | 40 |
39 deps = [ | 41 deps = [ |
40 "//components/keyed_service/content", | 42 "//components/keyed_service/content", |
(...skipping 17 matching lines...) Expand all Loading... |
58 testonly = true | 60 testonly = true |
59 sources = [ | 61 sources = [ |
60 "test/app_window_waiter.cc", | 62 "test/app_window_waiter.cc", |
61 "test/app_window_waiter.h", | 63 "test/app_window_waiter.h", |
62 ] | 64 ] |
63 | 65 |
64 public_deps = [ | 66 public_deps = [ |
65 "//content/public/browser", | 67 "//content/public/browser", |
66 ] | 68 ] |
67 } | 69 } |
OLD | NEW |