| 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 import("//mojo/system.gni") | 9 import("//mojo/system.gni") |
| 10 | 10 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "//mojo/services/public/cpp/view_manager", | 61 "//mojo/services/public/cpp/view_manager", |
| 62 "//mojo/services/public/interfaces/view_manager", | 62 "//mojo/services/public/interfaces/view_manager", |
| 63 "//mojo/services/public/interfaces/window_manager", | 63 "//mojo/services/public/interfaces/window_manager", |
| 64 "//mojo/shell:test_support", | 64 "//mojo/shell:test_support", |
| 65 "//mojo/system", | 65 "//mojo/system", |
| 66 "//testing/gtest", | 66 "//testing/gtest", |
| 67 "//ui/gl", | 67 "//ui/gl", |
| 68 ] | 68 ] |
| 69 if (is_linux) { | 69 if (is_linux) { |
| 70 deps += [ | 70 deps += [ |
| 71 "//mojo/services/public/interfaces/native_viewport", | 71 "//third_party/mesa:osmesa", |
| 72 "//mojo/services/native_viewport", |
| 72 ] | 73 ] |
| 73 } | 74 } |
| 74 if (use_x11) { | 75 if (use_x11) { |
| 75 deps += [ "//ui/gfx/x" ] | 76 deps += [ "//ui/gfx/x" ] |
| 76 } | 77 } |
| 77 } | 78 } |
| 78 | 79 |
| 79 } # use_aura | 80 } # use_aura |
| OLD | NEW |