Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//extensions/features/features.gni") | |
| 6 | |
| 7 assert(enable_extensions) | |
| 8 | |
| 9 source_set("apps") { | |
| 10 sources = [ | |
| 11 "../apps/app_launch_for_metro_restart_win.cc", | |
|
benwells
2017/04/04 01:14:13
Why do you need the "../apps" on all of these?
michaelpg
2017/04/04 01:49:31
Ah. Originally I had this as a source_set in c/b/e
| |
| 12 "../apps/app_launch_for_metro_restart_win.h", | |
| 13 "../apps/app_load_service.cc", | |
| 14 "../apps/app_load_service.h", | |
| 15 "../apps/app_load_service_factory.cc", | |
| 16 "../apps/app_load_service_factory.h", | |
| 17 "../apps/app_url_redirector.cc", | |
| 18 "../apps/app_url_redirector.h", | |
| 19 "../apps/app_window_registry_util.cc", | |
| 20 "../apps/app_window_registry_util.h", | |
| 21 "../apps/browser_context_keyed_service_factories.cc", | |
| 22 "../apps/browser_context_keyed_service_factories.h", | |
| 23 "../apps/install_chrome_app.cc", | |
| 24 "../apps/install_chrome_app.h", | |
| 25 "../apps/shortcut_manager.cc", | |
| 26 "../apps/shortcut_manager.h", | |
| 27 "../apps/shortcut_manager_factory.cc", | |
| 28 "../apps/shortcut_manager_factory.h", | |
| 29 ] | |
| 30 | |
| 31 configs += [ "//build/config/compiler:wexit_time_destructors" ] | |
| 32 | |
| 33 public_deps = [ | |
| 34 "//apps", | |
| 35 ] | |
| 36 | |
| 37 deps = [ | |
| 38 "//chrome/app:command_ids", | |
| 39 "//chrome/browser/extensions", | |
| 40 "//chrome/browser/media/router/discovery", | |
| 41 "//chrome/common", | |
| 42 "//components/crx_file", | |
| 43 "//components/keyed_service/content", | |
| 44 "//components/navigation_interception", | |
| 45 "//components/pref_registry", | |
| 46 "//content/public/browser", | |
| 47 "//content/public/common", | |
| 48 "//extensions/browser", | |
| 49 "//extensions/common", | |
| 50 "//extensions/common/api", | |
| 51 "//net", | |
| 52 "//ui/gfx", | |
| 53 ] | |
| 54 | |
| 55 allow_circular_includes_from = [ "//chrome/browser/extensions" ] | |
| 56 } | |
| OLD | NEW |