| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "//ui/events/devices", | 78 "//ui/events/devices", |
| 79 "//ui/events/platform", | 79 "//ui/events/platform", |
| 80 "//ui/events/platform", | 80 "//ui/events/platform", |
| 81 "//ui/gfx", | 81 "//ui/gfx", |
| 82 "//ui/gfx/geometry", | 82 "//ui/gfx/geometry", |
| 83 "//ui/resources", | 83 "//ui/resources", |
| 84 ] | 84 ] |
| 85 | 85 |
| 86 if (use_x11) { | 86 if (use_x11) { |
| 87 configs += [ "//build/config/linux:x11" ] | 87 configs += [ "//build/config/linux:x11" ] |
| 88 deps += [ "//ui/events/devices/x11" ] |
| 88 } | 89 } |
| 89 } | 90 } |
| 90 | 91 |
| 91 static_library("test_support") { | 92 static_library("test_support") { |
| 92 testonly = true | 93 testonly = true |
| 93 sources = [ | 94 sources = [ |
| 94 "test/wm_test_helper.cc", | 95 "test/wm_test_helper.cc", |
| 95 "test/wm_test_helper.h", | 96 "test/wm_test_helper.h", |
| 96 ] | 97 ] |
| 97 | 98 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 "//ui/gfx", | 141 "//ui/gfx", |
| 141 "//ui/gfx/geometry", | 142 "//ui/gfx/geometry", |
| 142 "//ui/gl:test_support", | 143 "//ui/gl:test_support", |
| 143 "//ui/resources", | 144 "//ui/resources", |
| 144 ] | 145 ] |
| 145 | 146 |
| 146 data_deps = [ | 147 data_deps = [ |
| 147 "//ui/resources:ui_test_pak_data", | 148 "//ui/resources:ui_test_pak_data", |
| 148 ] | 149 ] |
| 149 } | 150 } |
| OLD | NEW |