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

Side by Side Diff: components/mus/gles2/BUILD.gn

Issue 1722743002: Adds ability for chrome to behave as mojo_runner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge to tip of tree Created 4 years, 10 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 source_set("gles2") { 7 source_set("gles2") {
8 visibility = [ 8 visibility = [
9 "//components/mus:*", 9 "//components/mus:*",
10 "//components/mus/ws:*", 10 "//components/mus/ws:*",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 "//mojo/public/cpp/bindings", 46 "//mojo/public/cpp/bindings",
47 "//ui/gfx", 47 "//ui/gfx",
48 "//ui/gfx/geometry", 48 "//ui/gfx/geometry",
49 "//ui/gl", 49 "//ui/gl",
50 "//ui/mojo/geometry:interfaces", 50 "//ui/mojo/geometry:interfaces",
51 ] 51 ]
52 52
53 if (is_android) { 53 if (is_android) {
54 deps += [ "//mojo/platform_handle:platform_handle_impl" ] 54 deps += [ "//mojo/platform_handle:platform_handle_impl" ]
55 } else { 55 } else {
56 deps += [ "//mojo/platform_handle:for_shared_library" ] 56 deps += [ "//mojo/platform_handle" ]
57 } 57 }
58 58
59 if (use_ozone) { 59 if (use_ozone) {
60 deps += [ "//ui/ozone:ozone" ] 60 deps += [ "//ui/ozone:ozone" ]
61 } 61 }
62 62
63 include_dirs = [ "../.." ] 63 include_dirs = [ "../.." ]
64 } 64 }
65 65
66 source_set("lib") { 66 source_set("lib") {
(...skipping 18 matching lines...) Expand all
85 "//gpu/command_buffer/common", 85 "//gpu/command_buffer/common",
86 "//gpu/config:config", 86 "//gpu/config:config",
87 "//mojo/public/cpp/bindings", 87 "//mojo/public/cpp/bindings",
88 "//mojo/public/cpp/system", 88 "//mojo/public/cpp/system",
89 "//ui/gfx", 89 "//ui/gfx",
90 "//ui/gfx/geometry", 90 "//ui/gfx/geometry",
91 ] 91 ]
92 92
93 include_dirs = [ "../.." ] 93 include_dirs = [ "../.." ]
94 } 94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698