| OLD | NEW |
| 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/ui.gni") |
| 6 |
| 5 component("wm") { | 7 component("wm") { |
| 6 sources = [ | 8 sources = [ |
| 7 "core/accelerator_delegate.h", | 9 "core/accelerator_delegate.h", |
| 8 "core/accelerator_filter.cc", | 10 "core/accelerator_filter.cc", |
| 9 "core/accelerator_filter.h", | 11 "core/accelerator_filter.h", |
| 10 "core/base_focus_rules.cc", | 12 "core/base_focus_rules.cc", |
| 11 "core/base_focus_rules.h", | 13 "core/base_focus_rules.h", |
| 12 "core/capture_controller.cc", | 14 "core/capture_controller.cc", |
| 13 "core/capture_controller.h", | 15 "core/capture_controller.h", |
| 14 "core/compound_event_filter.cc", | 16 "core/compound_event_filter.cc", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "//ui/compositor", | 81 "//ui/compositor", |
| 80 "//ui/events", | 82 "//ui/events", |
| 81 "//ui/events/devices", | 83 "//ui/events/devices", |
| 82 "//ui/events/platform", | 84 "//ui/events/platform", |
| 83 "//ui/events:events_base", | 85 "//ui/events:events_base", |
| 84 "//ui/events/platform", | 86 "//ui/events/platform", |
| 85 "//ui/gfx", | 87 "//ui/gfx", |
| 86 "//ui/gfx/geometry", | 88 "//ui/gfx/geometry", |
| 87 "//ui/resources", | 89 "//ui/resources", |
| 88 ] | 90 ] |
| 91 |
| 92 if (use_x11) { |
| 93 configs += [ "//build/config/linux:x11" ] |
| 94 } |
| 89 } | 95 } |
| 90 | 96 |
| 91 static_library("test_support") { | 97 static_library("test_support") { |
| 92 testonly = true | 98 testonly = true |
| 93 sources = [ | 99 sources = [ |
| 94 "test/wm_test_helper.cc", | 100 "test/wm_test_helper.cc", |
| 95 "test/wm_test_helper.h", | 101 "test/wm_test_helper.h", |
| 96 ] | 102 ] |
| 97 | 103 |
| 98 deps = [ | 104 deps = [ |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 "//ui/aura:test_support", | 139 "//ui/aura:test_support", |
| 134 "//ui/base:test_support", | 140 "//ui/base:test_support", |
| 135 "//ui/compositor:test_support", | 141 "//ui/compositor:test_support", |
| 136 "//ui/events:test_support", | 142 "//ui/events:test_support", |
| 137 "//ui/events/platform", | 143 "//ui/events/platform", |
| 138 "//ui/gfx", | 144 "//ui/gfx", |
| 139 "//ui/gfx/geometry", | 145 "//ui/gfx/geometry", |
| 140 "//ui/gl", | 146 "//ui/gl", |
| 141 ] | 147 ] |
| 142 } | 148 } |
| OLD | NEW |