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

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

Issue 2008193002: Change mojo geometry structs from using type converters to StructTraits. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 "//gpu/command_buffer/client", 43 "//gpu/command_buffer/client",
44 "//gpu/command_buffer/client:gles2_interface", 44 "//gpu/command_buffer/client:gles2_interface",
45 "//gpu/command_buffer/common:gles2_utils", 45 "//gpu/command_buffer/common:gles2_utils",
46 "//gpu/command_buffer/service", 46 "//gpu/command_buffer/service",
47 "//gpu/config:config", 47 "//gpu/config:config",
48 "//mojo/public/cpp/bindings", 48 "//mojo/public/cpp/bindings",
49 "//mojo/public/cpp/system", 49 "//mojo/public/cpp/system",
50 "//ui/gfx", 50 "//ui/gfx",
51 "//ui/gfx/geometry", 51 "//ui/gfx/geometry",
52 "//ui/gfx/geometry/mojo", 52 "//ui/gfx/geometry/mojo",
53 "//ui/gfx/geometry/mojo:interfaces",
54 "//ui/gl", 53 "//ui/gl",
55 "//ui/gl/init", 54 "//ui/gl/init",
56 ] 55 ]
57 56
58 if (use_ozone) { 57 if (use_ozone) {
59 deps += [ "//ui/ozone:ozone" ] 58 deps += [ "//ui/ozone:ozone" ]
60 sources += [ 59 sources += [
61 "ozone_gpu_memory_buffer.cc", 60 "ozone_gpu_memory_buffer.cc",
62 "ozone_gpu_memory_buffer.h", 61 "ozone_gpu_memory_buffer.h",
63 ] 62 ]
(...skipping 26 matching lines...) Expand all
90 "//gpu/command_buffer/common", 89 "//gpu/command_buffer/common",
91 "//gpu/config:config", 90 "//gpu/config:config",
92 "//mojo/public/cpp/bindings", 91 "//mojo/public/cpp/bindings",
93 "//mojo/public/cpp/system", 92 "//mojo/public/cpp/system",
94 "//ui/gfx", 93 "//ui/gfx",
95 "//ui/gfx/geometry", 94 "//ui/gfx/geometry",
96 ] 95 ]
97 96
98 include_dirs = [ "../.." ] 97 include_dirs = [ "../.." ]
99 } 98 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698