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

Side by Side Diff: chrome/browser/BUILD.gn

Issue 2819713002: Create TetherService, a TetherAllowed pref, and use DependencyManager for RegisterProfilePrefs call… (Closed)
Patch Set: Do not explicitly call on TetherService::Shutdown() from UserSessionManager. Created 3 years, 8 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 3557 matching lines...) Expand 10 before | Expand all | Expand 10 after
3568 "task_manager/sampling/task_group_sampler.cc", 3568 "task_manager/sampling/task_group_sampler.cc",
3569 "task_manager/sampling/task_group_sampler.h", 3569 "task_manager/sampling/task_group_sampler.h",
3570 "task_manager/sampling/task_manager_impl.cc", 3570 "task_manager/sampling/task_manager_impl.cc",
3571 "task_manager/sampling/task_manager_impl.h", 3571 "task_manager/sampling/task_manager_impl.h",
3572 "task_manager/sampling/task_manager_io_thread_helper.cc", 3572 "task_manager/sampling/task_manager_io_thread_helper.cc",
3573 "task_manager/sampling/task_manager_io_thread_helper.h", 3573 "task_manager/sampling/task_manager_io_thread_helper.h",
3574 "task_manager/task_manager_interface.cc", 3574 "task_manager/task_manager_interface.cc",
3575 "task_manager/task_manager_interface.h", 3575 "task_manager/task_manager_interface.h",
3576 "task_manager/task_manager_observer.cc", 3576 "task_manager/task_manager_observer.cc",
3577 "task_manager/task_manager_observer.h", 3577 "task_manager/task_manager_observer.h",
3578 "tether/tether_service.cc",
Lei Zhang 2017/04/19 19:13:17 Is this going to build on Windows/Mac/Linux too? Y
Ryan Hansberry 2017/04/20 17:22:32 This is only intended to run on ChromeOS.
Lei Zhang 2017/04/20 19:17:14 So why is not in a ChromeOS only source list? (see
Lei Zhang 2017/04/20 19:24:30 Another question - is this ever going to be used o
Ryan Hansberry 2017/04/20 22:08:09 I've moved these under a is_chromeos source list.
Lei Zhang 2017/04/20 22:11:43 Why not just rename the file so it is immediately
Ryan Hansberry 2017/04/20 22:26:45 What's the preferred situation: 1) Place tether_s
3579 "tether/tether_service.h",
3580 "tether/tether_service_factory.cc",
3581 "tether/tether_service_factory.h",
3578 "themes/browser_theme_pack.cc", 3582 "themes/browser_theme_pack.cc",
3579 "themes/browser_theme_pack.h", 3583 "themes/browser_theme_pack.h",
3580 "themes/custom_theme_supplier.cc", 3584 "themes/custom_theme_supplier.cc",
3581 "themes/custom_theme_supplier.h", 3585 "themes/custom_theme_supplier.h",
3582 "themes/theme_properties.cc", 3586 "themes/theme_properties.cc",
3583 "themes/theme_service.cc", 3587 "themes/theme_service.cc",
3584 "themes/theme_service.h", 3588 "themes/theme_service.h",
3585 "themes/theme_service_factory.cc", 3589 "themes/theme_service_factory.cc",
3586 "themes/theme_service_factory.h", 3590 "themes/theme_service_factory.h",
3587 "themes/theme_service_mac.mm", 3591 "themes/theme_service_mac.mm",
(...skipping 1103 matching lines...) Expand 10 before | Expand all | Expand 10 after
4691 "media/pepper_cdm_test_constants.cc", 4695 "media/pepper_cdm_test_constants.cc",
4692 "media/pepper_cdm_test_constants.h", 4696 "media/pepper_cdm_test_constants.h",
4693 ] 4697 ]
4694 } 4698 }
4695 } 4699 }
4696 4700
4697 service_manifest("preferences_forwarder_manifest") { 4701 service_manifest("preferences_forwarder_manifest") {
4698 name = "preferences_forwarder" 4702 name = "preferences_forwarder"
4699 source = "prefs/forwarder_manifest.json" 4703 source = "prefs/forwarder_manifest.json"
4700 } 4704 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698