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

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

Issue 2733313002: Move display preference code from ash/display/ to ui/display/manager/. (Closed)
Patch Set: . Created 3 years, 9 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 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//third_party/protobuf/proto_library.gni") 10 import("//third_party/protobuf/proto_library.gni")
(...skipping 12 matching lines...) Expand all
23 "//chrome:extra_resources", 23 "//chrome:extra_resources",
24 "//chrome:resources", 24 "//chrome:resources",
25 "//chrome:strings", 25 "//chrome:strings",
26 "//chrome/app/resources:platform_locale_settings", 26 "//chrome/app/resources:platform_locale_settings",
27 "//chrome/app/theme:theme_resources", 27 "//chrome/app/theme:theme_resources",
28 "//chromeos:power_manager_proto", 28 "//chromeos:power_manager_proto",
29 "//components/wallpaper", 29 "//components/wallpaper",
30 "//content/app/resources", 30 "//content/app/resources",
31 "//ui/chromeos/resources", 31 "//ui/chromeos/resources",
32 "//ui/chromeos/strings", 32 "//ui/chromeos/strings",
33 "//ui/display/manager",
kylechar 2017/03/08 15:28:15 This shouldn't be in public_deps, move to deps.
thanhph 2017/03/09 13:48:28 Done.
33 "//ui/resources", 34 "//ui/resources",
34 "//ui/strings", 35 "//ui/strings",
35 ] 36 ]
36 37
37 deps = [ 38 deps = [
38 # TODO(tbarzic): Cleanup this list. 39 # TODO(tbarzic): Cleanup this list.
39 ":attestation_proto", 40 ":attestation_proto",
40 "//ash", 41 "//ash",
41 "//ash:ash_with_content", 42 "//ash:ash_with_content",
42 "//ash/autoclick/mus/public/interfaces", 43 "//ash/autoclick/mus/public/interfaces",
(...skipping 1751 matching lines...) Expand 10 before | Expand all | Expand 10 after
1794 "policy/proto/chrome_device_policy.proto", 1795 "policy/proto/chrome_device_policy.proto",
1795 "policy/proto/install_attributes.proto", 1796 "policy/proto/install_attributes.proto",
1796 ] 1797 ]
1797 } 1798 }
1798 1799
1799 proto_library("attestation_proto") { 1800 proto_library("attestation_proto") {
1800 sources = [ 1801 sources = [
1801 "attestation/attestation_key_payload.proto", 1802 "attestation/attestation_key_payload.proto",
1802 ] 1803 ]
1803 } 1804 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698