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

Side by Side Diff: apps/BUILD.gn

Issue 2904443004: Allow generation of a chromium outdirs when enable_extensions=false (Closed)
Patch Set: Rebase and address comment in src/BUILD.gn 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
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 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
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 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | apps/ui/views/BUILD.gn » ('j') | apps/ui/views/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698