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

Side by Side Diff: ui/display/manager/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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 component("manager") { 7 component("manager") {
8 sources = [ 8 sources = [
9 "chromeos/apply_content_protection_task.cc", 9 "chromeos/apply_content_protection_task.cc",
10 "chromeos/apply_content_protection_task.h", 10 "chromeos/apply_content_protection_task.h",
(...skipping 16 matching lines...) Expand all
27 "chromeos/touchscreen_util.h", 27 "chromeos/touchscreen_util.h",
28 "chromeos/update_display_configuration_task.cc", 28 "chromeos/update_display_configuration_task.cc",
29 "chromeos/update_display_configuration_task.h", 29 "chromeos/update_display_configuration_task.h",
30 "display_layout_store.cc", 30 "display_layout_store.cc",
31 "display_layout_store.h", 31 "display_layout_store.h",
32 "display_manager.cc", 32 "display_manager.cc",
33 "display_manager.h", 33 "display_manager.h",
34 "display_manager_export.h", 34 "display_manager_export.h",
35 "display_manager_utilities.cc", 35 "display_manager_utilities.cc",
36 "display_manager_utilities.h", 36 "display_manager_utilities.h",
37 "json_converter.cc",
kylechar 2017/03/08 15:28:15 What happened to display_pref_util.h?
thanhph 2017/03/09 13:48:28 Done. I moved the file here.
38 "json_converter.h",
37 "managed_display_info.cc", 39 "managed_display_info.cc",
38 "managed_display_info.h", 40 "managed_display_info.h",
39 ] 41 ]
40 42
41 public_deps = [ 43 public_deps = [
42 "//ui/display", 44 "//ui/display",
43 ] 45 ]
44 46
45 deps = [ 47 deps = [
46 "//base", 48 "//base",
(...skipping 30 matching lines...) Expand all
77 configs += [ 79 configs += [
78 "//build/config/linux:x11", 80 "//build/config/linux:x11",
79 "//build/config/linux:xext", 81 "//build/config/linux:xext",
80 "//build/config/linux:xi", 82 "//build/config/linux:xi",
81 "//build/config/linux:xrandr", 83 "//build/config/linux:xrandr",
82 ] 84 ]
83 85
84 deps += [ "//ui/events/platform" ] 86 deps += [ "//ui/events/platform" ]
85 } 87 }
86 } 88 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698