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

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

Issue 477923004: Create native_viewport_service, don't build it into mojo_shell unless Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Try to get gn build working again 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 | Annotate | Revision Log
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 "//third_party/mesa:osmesa", 71 "//mojo/services/public/interfaces/native_viewport",
72 "//mojo/services/native_viewport",
73 ] 72 ]
74 } 73 }
75 if (use_x11) { 74 if (use_x11) {
76 deps += [ "//ui/gfx/x" ] 75 deps += [ "//ui/gfx/x" ]
77 } 76 }
78 } 77 }
79 78
80 } # use_aura 79 } # use_aura
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698