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 | 6 |
7 if (use_aura) { | 7 if (use_aura) { |
8 | 8 |
9 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager | 9 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager |
10 shared_library("window_manager") { | 10 shared_library("window_manager") { |
(...skipping 26 matching lines...) Expand all Loading... |
37 ] | 37 ] |
38 deps = [ | 38 deps = [ |
39 "//base", | 39 "//base", |
40 "//mojo/application", | 40 "//mojo/application", |
41 "//mojo/common", | 41 "//mojo/common", |
42 "//mojo/environment:chromium", | 42 "//mojo/environment:chromium", |
43 "//mojo/public/cpp/bindings", | 43 "//mojo/public/cpp/bindings", |
44 "//mojo/public/interfaces/application:application", | 44 "//mojo/public/interfaces/application:application", |
45 "//mojo/services/public/cpp/input_events", | 45 "//mojo/services/public/cpp/input_events", |
46 "//mojo/services/public/cpp/view_manager", | 46 "//mojo/services/public/cpp/view_manager", |
47 "//mojo/services/public/interfaces/window_manager", | 47 "//mojo/services/public/interfaces/window_manager2", |
48 "//ui/aura", | 48 "//ui/aura", |
49 "//ui/base", | 49 "//ui/base", |
50 "//ui/events", | 50 "//ui/events", |
51 "//ui/gfx", | 51 "//ui/gfx", |
52 "//ui/gfx/geometry", | 52 "//ui/gfx/geometry", |
53 "//ui/wm", | 53 "//ui/wm", |
54 ] | 54 ] |
55 } | 55 } |
56 | 56 |
57 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager_unittests | 57 # GYP version: mojo/mojo_services.gypi:mojo_core_window_manager_unittests |
58 test("mojo_core_window_manager_unittests") { | 58 test("mojo_core_window_manager_unittests") { |
59 sources = [ | 59 sources = [ |
60 "window_manager_api_unittest.cc", | 60 "window_manager_api_unittest.cc", |
61 "window_manager_unittests.cc", | 61 "window_manager_unittests.cc", |
62 ] | 62 ] |
63 | 63 |
64 deps = [ | 64 deps = [ |
65 "//base/test:test_support", | 65 "//base/test:test_support", |
66 "//mojo/application_manager", | 66 "//mojo/application_manager", |
67 "//mojo/edk/system", | 67 "//mojo/edk/system", |
68 "//mojo/environment:chromium", | 68 "//mojo/environment:chromium", |
69 "//mojo/services/public/cpp/view_manager", | 69 "//mojo/services/public/cpp/view_manager", |
70 "//mojo/services/public/interfaces/view_manager", | 70 "//mojo/services/public/interfaces/view_manager", |
71 "//mojo/services/public/interfaces/window_manager", | 71 "//mojo/services/public/interfaces/window_manager2", |
72 "//mojo/shell:test_support", | 72 "//mojo/shell:test_support", |
73 "//testing/gtest", | 73 "//testing/gtest", |
74 "//ui/gl", | 74 "//ui/gl", |
75 ] | 75 ] |
76 if (use_x11) { | 76 if (use_x11) { |
77 deps += [ "//ui/gfx/x" ] | 77 deps += [ "//ui/gfx/x" ] |
78 } | 78 } |
79 } | 79 } |
80 | 80 |
81 } # use_aura | 81 } # use_aura |
OLD | NEW |