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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 "//mojo/application_manager", | 65 "//mojo/application_manager", |
66 "//mojo/environment:chromium", | 66 "//mojo/environment:chromium", |
67 "//mojo/services/public/cpp/view_manager", | 67 "//mojo/services/public/cpp/view_manager", |
68 "//mojo/services/public/interfaces/view_manager", | 68 "//mojo/services/public/interfaces/view_manager", |
69 "//mojo/services/public/interfaces/window_manager", | 69 "//mojo/services/public/interfaces/window_manager", |
70 "//mojo/shell:test_support", | 70 "//mojo/shell:test_support", |
71 "//mojo/system", | 71 "//mojo/system", |
72 "//testing/gtest", | 72 "//testing/gtest", |
73 "//ui/gl", | 73 "//ui/gl", |
74 ] | 74 ] |
75 if (is_linux) { | |
76 deps += [ | |
77 "//third_party/mesa:osmesa", | |
78 "//mojo/services/native_viewport", | |
79 ] | |
80 } | |
81 if (use_x11) { | 75 if (use_x11) { |
82 deps += [ "//ui/gfx/x" ] | 76 deps += [ "//ui/gfx/x" ] |
83 } | 77 } |
84 } | 78 } |
85 | 79 |
86 } # use_aura | 80 } # use_aura |
OLD | NEW |