| OLD | NEW |
| 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 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 public_deps = [ | 37 public_deps = [ |
| 38 "//ui/display", | 38 "//ui/display", |
| 39 ] | 39 ] |
| 40 | 40 |
| 41 deps = [ | 41 deps = [ |
| 42 "//base", | 42 "//base", |
| 43 "//ui/base", | 43 "//ui/base", |
| 44 "//ui/display/util", | 44 "//ui/display/util", |
| 45 "//ui/events/devices", | 45 "//ui/events/devices", |
| 46 "//ui/strings", |
| 46 ] | 47 ] |
| 47 | 48 |
| 48 defines = [ "DISPLAY_MANAGER_IMPLEMENTATION" ] | 49 defines = [ "DISPLAY_MANAGER_IMPLEMENTATION" ] |
| 49 | 50 |
| 50 if (use_x11) { | 51 if (use_x11) { |
| 51 deps += [ "//ui/gfx/x" ] | 52 deps += [ "//ui/gfx/x" ] |
| 52 } | 53 } |
| 53 | 54 |
| 54 if (is_chromeos && use_x11) { | 55 if (is_chromeos && use_x11) { |
| 55 sources += [ | 56 sources += [ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 68 configs += [ | 69 configs += [ |
| 69 "//build/config/linux:x11", | 70 "//build/config/linux:x11", |
| 70 "//build/config/linux:xext", | 71 "//build/config/linux:xext", |
| 71 "//build/config/linux:xi", | 72 "//build/config/linux:xi", |
| 72 "//build/config/linux:xrandr", | 73 "//build/config/linux:xrandr", |
| 73 ] | 74 ] |
| 74 | 75 |
| 75 deps += [ "//ui/events/platform" ] | 76 deps += [ "//ui/events/platform" ] |
| 76 } | 77 } |
| 77 } | 78 } |
| OLD | NEW |