| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "//ui/gfx", | 79 "//ui/gfx", |
| 80 "//ui/gfx/animation", | 80 "//ui/gfx/animation", |
| 81 "//ui/gfx/geometry", | 81 "//ui/gfx/geometry", |
| 82 "//ui/resources", | 82 "//ui/resources", |
| 83 ] | 83 ] |
| 84 | 84 |
| 85 if (use_x11) { | 85 if (use_x11) { |
| 86 configs += [ "//build/config/linux:x11" ] | 86 configs += [ "//build/config/linux:x11" ] |
| 87 deps += [ "//ui/events/devices/x11" ] | 87 deps += [ "//ui/events/devices/x11" ] |
| 88 } | 88 } |
| 89 |
| 90 if (is_chromeos) { |
| 91 sources += [ |
| 92 "core/ime_util_chromeos.cc", |
| 93 "core/ime_util_chromeos.h", |
| 94 ] |
| 95 } |
| 89 } | 96 } |
| 90 | 97 |
| 91 static_library("test_support") { | 98 static_library("test_support") { |
| 92 testonly = true | 99 testonly = true |
| 93 sources = [ | 100 sources = [ |
| 94 "test/testing_cursor_client_observer.cc", | 101 "test/testing_cursor_client_observer.cc", |
| 95 "test/testing_cursor_client_observer.h", | 102 "test/testing_cursor_client_observer.h", |
| 96 "test/wm_test_helper.cc", | 103 "test/wm_test_helper.cc", |
| 97 "test/wm_test_helper.h", | 104 "test/wm_test_helper.h", |
| 98 ] | 105 ] |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 "//ui/gfx", | 149 "//ui/gfx", |
| 143 "//ui/gfx/animation", | 150 "//ui/gfx/animation", |
| 144 "//ui/gfx/geometry", | 151 "//ui/gfx/geometry", |
| 145 "//ui/gl:test_support", | 152 "//ui/gl:test_support", |
| 146 "//ui/resources", | 153 "//ui/resources", |
| 147 ] | 154 ] |
| 148 | 155 |
| 149 data_deps = [ | 156 data_deps = [ |
| 150 "//ui/resources:ui_test_pak_data", | 157 "//ui/resources:ui_test_pak_data", |
| 151 ] | 158 ] |
| 159 |
| 160 if (is_chromeos) { |
| 161 sources += [ "core/ime_util_chromeos_unittest.cc" ] |
| 162 } |
| 152 } | 163 } |
| OLD | NEW |