Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(273)

Side by Side Diff: mojo/services/window_manager/BUILD.gn

Issue 568883003: Second attempt to land change to remove NativeViewportService and (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Windows component build Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 "//mojo/application_manager", 59 "//mojo/application_manager",
60 "//mojo/environment:chromium", 60 "//mojo/environment:chromium",
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) {
70 deps += [
71 "//third_party/mesa:osmesa",
72 "//mojo/services/native_viewport",
73 ]
74 }
75 if (use_x11) { 69 if (use_x11) {
76 deps += [ "//ui/gfx/x" ] 70 deps += [ "//ui/gfx/x" ]
77 } 71 }
78 } 72 }
79 73
80 } # use_aura 74 } # use_aura
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698