Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(292)

Side by Side Diff: apps/BUILD.gn

Issue 2951003002: SavedFilesService interface in //extensions (Closed)
Patch Set: cleanup Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | apps/app_restore_service.cc » ('j') | apps/app_restore_service_browsertest.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 assert(enable_extensions, 10 assert(enable_extensions,
11 "Cannot depend on extensions because enable_extensions=false.") 11 "Cannot depend on extensions because enable_extensions=false.")
12 12
13 static_library("apps") { 13 static_library("apps") {
14 sources = [] 14 sources = []
15 15
16 sources += [ 16 sources += [
17 "app_lifetime_monitor.cc", 17 "app_lifetime_monitor.cc",
18 "app_lifetime_monitor.h", 18 "app_lifetime_monitor.h",
19 "app_lifetime_monitor_factory.cc", 19 "app_lifetime_monitor_factory.cc",
20 "app_lifetime_monitor_factory.h", 20 "app_lifetime_monitor_factory.h",
21 "app_restore_service.cc", 21 "app_restore_service.cc",
22 "app_restore_service.h", 22 "app_restore_service.h",
23 "app_restore_service_factory.cc", 23 "app_restore_service_factory.cc",
24 "app_restore_service_factory.h", 24 "app_restore_service_factory.h",
25 "browser_context_keyed_service_factories.cc", 25 "browser_context_keyed_service_factories.cc",
26 "browser_context_keyed_service_factories.h", 26 "browser_context_keyed_service_factories.h",
27 "launcher.cc", 27 "launcher.cc",
28 "launcher.h", 28 "launcher.h",
29 "metrics_names.h", 29 "metrics_names.h",
30 "saved_files_service.cc",
31 "saved_files_service.h",
32 "saved_files_service_factory.cc", 30 "saved_files_service_factory.cc",
33 "saved_files_service_factory.h", 31 "saved_files_service_factory.h",
32 "saved_files_service_impl.cc",
33 "saved_files_service_impl.h",
34 "switches.cc", 34 "switches.cc",
35 "switches.h", 35 "switches.h",
36 ] 36 ]
37 37
38 configs += [ "//build/config/compiler:wexit_time_destructors" ] 38 configs += [ "//build/config/compiler:wexit_time_destructors" ]
39 39
40 deps = [ 40 deps = [
41 "//components/keyed_service/content", 41 "//components/keyed_service/content",
42 "//content/public/browser", 42 "//content/public/browser",
43 "//content/public/common", 43 "//content/public/common",
(...skipping 14 matching lines...) Expand all
58 testonly = true 58 testonly = true
59 sources = [ 59 sources = [
60 "test/app_window_waiter.cc", 60 "test/app_window_waiter.cc",
61 "test/app_window_waiter.h", 61 "test/app_window_waiter.h",
62 ] 62 ]
63 63
64 public_deps = [ 64 public_deps = [
65 "//content/public/browser", 65 "//content/public/browser",
66 ] 66 ]
67 } 67 }
OLDNEW
« no previous file with comments | « no previous file | apps/app_restore_service.cc » ('j') | apps/app_restore_service_browsertest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698