Chromium Code Reviews| 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 assert(enable_extensions) | |
| 10 | 11 |
| 11 static_library("apps") { | 12 static_library("apps") { |
| 12 sources = [] | 13 sources = [] |
| 13 | 14 |
| 14 if (enable_extensions) { | 15 if (enable_extensions) { |
|
michaelpg
2017/06/08 22:54:41
remove if()
hugoh_UTC2
2017/06/09 09:25:42
Done.
| |
| 15 sources += [ | 16 sources += [ |
| 16 "app_lifetime_monitor.cc", | 17 "app_lifetime_monitor.cc", |
| 17 "app_lifetime_monitor.h", | 18 "app_lifetime_monitor.h", |
| 18 "app_lifetime_monitor_factory.cc", | 19 "app_lifetime_monitor_factory.cc", |
| 19 "app_lifetime_monitor_factory.h", | 20 "app_lifetime_monitor_factory.h", |
| 20 "app_restore_service.cc", | 21 "app_restore_service.cc", |
| 21 "app_restore_service.h", | 22 "app_restore_service.h", |
| 22 "app_restore_service_factory.cc", | 23 "app_restore_service_factory.cc", |
| 23 "app_restore_service_factory.h", | 24 "app_restore_service_factory.h", |
| 24 "browser_context_keyed_service_factories.cc", | 25 "browser_context_keyed_service_factories.cc", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 58 testonly = true | 59 testonly = true |
| 59 sources = [ | 60 sources = [ |
| 60 "test/app_window_waiter.cc", | 61 "test/app_window_waiter.cc", |
| 61 "test/app_window_waiter.h", | 62 "test/app_window_waiter.h", |
| 62 ] | 63 ] |
| 63 | 64 |
| 64 public_deps = [ | 65 public_deps = [ |
| 65 "//content/public/browser", | 66 "//content/public/browser", |
| 66 ] | 67 ] |
| 67 } | 68 } |
| OLD | NEW |