| 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") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("wm") { | 8 component("wm") { |
| 9 sources = [ | 9 sources = [ |
| 10 "core/accelerator_delegate.h", | 10 "core/accelerator_delegate.h", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 "//ui/aura", | 72 "//ui/aura", |
| 73 "//ui/base", | 73 "//ui/base", |
| 74 "//ui/base/ime", | 74 "//ui/base/ime", |
| 75 "//ui/compositor", | 75 "//ui/compositor", |
| 76 "//ui/display", | 76 "//ui/display", |
| 77 "//ui/events", | 77 "//ui/events", |
| 78 "//ui/events:events_base", | 78 "//ui/events:events_base", |
| 79 "//ui/events/devices", | 79 "//ui/events/devices", |
| 80 "//ui/events/platform", | 80 "//ui/events/platform", |
| 81 "//ui/gfx", | 81 "//ui/gfx", |
| 82 "//ui/gfx/animation", |
| 82 "//ui/gfx/geometry", | 83 "//ui/gfx/geometry", |
| 83 "//ui/resources", | 84 "//ui/resources", |
| 84 ] | 85 ] |
| 85 | 86 |
| 86 if (use_x11) { | 87 if (use_x11) { |
| 87 configs += [ "//build/config/linux:x11" ] | 88 configs += [ "//build/config/linux:x11" ] |
| 88 deps += [ "//ui/events/devices/x11" ] | 89 deps += [ "//ui/events/devices/x11" ] |
| 89 } | 90 } |
| 90 } | 91 } |
| 91 | 92 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 "//base/test:test_support", | 136 "//base/test:test_support", |
| 136 "//skia", | 137 "//skia", |
| 137 "//testing/gtest", | 138 "//testing/gtest", |
| 138 "//ui/aura:test_support", | 139 "//ui/aura:test_support", |
| 139 "//ui/base:test_support", | 140 "//ui/base:test_support", |
| 140 "//ui/base/ime", | 141 "//ui/base/ime", |
| 141 "//ui/compositor:test_support", | 142 "//ui/compositor:test_support", |
| 142 "//ui/events:test_support", | 143 "//ui/events:test_support", |
| 143 "//ui/events/platform", | 144 "//ui/events/platform", |
| 144 "//ui/gfx", | 145 "//ui/gfx", |
| 146 "//ui/gfx/animation", |
| 145 "//ui/gfx/geometry", | 147 "//ui/gfx/geometry", |
| 146 "//ui/gl:test_support", | 148 "//ui/gl:test_support", |
| 147 "//ui/resources", | 149 "//ui/resources", |
| 148 ] | 150 ] |
| 149 | 151 |
| 150 data_deps = [ | 152 data_deps = [ |
| 151 "//ui/resources:ui_test_pak_data", | 153 "//ui/resources:ui_test_pak_data", |
| 152 ] | 154 ] |
| 153 } | 155 } |
| OLD | NEW |