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

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

Issue 1181013010: Support impl-side painting in Mandoline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit warning Created 5 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 source_set("gles2") { 5 source_set("gles2") {
6 visibility = [ 6 visibility = [
7 "//components/view_manager/native_viewport:*", 7 "//components/view_manager/native_viewport:*",
8 "//mojo/runner:lib", # For android 8 "//mojo/runner:lib", # For android
9 ] 9 ]
10 10
(...skipping 26 matching lines...) Expand all
37 37
38 include_dirs = [ "../.." ] 38 include_dirs = [ "../.." ]
39 } 39 }
40 40
41 source_set("lib") { 41 source_set("lib") {
42 sources = [ 42 sources = [
43 "command_buffer_type_conversions.cc", 43 "command_buffer_type_conversions.cc",
44 "command_buffer_type_conversions.h", 44 "command_buffer_type_conversions.h",
45 "mojo_buffer_backing.cc", 45 "mojo_buffer_backing.cc",
46 "mojo_buffer_backing.h", 46 "mojo_buffer_backing.h",
47 "mojo_gpu_memory_buffer.cc",
48 "mojo_gpu_memory_buffer.h",
49 "mojo_gpu_memory_buffer_manager.cc",
50 "mojo_gpu_memory_buffer_manager.h",
51 "raster_thread_helper.cc",
52 "raster_thread_helper.h",
47 ] 53 ]
48 54
49 deps = [ 55 deps = [
50 "//base", 56 "//base",
57 "//cc",
51 "//components/view_manager/public/interfaces", 58 "//components/view_manager/public/interfaces",
52 "//gpu/command_buffer/common", 59 "//gpu/command_buffer/common",
53 "//third_party/mojo/src/mojo/public/cpp/bindings", 60 "//third_party/mojo/src/mojo/public/cpp/bindings",
54 "//third_party/mojo/src/mojo/public/cpp/system", 61 "//third_party/mojo/src/mojo/public/cpp/system",
55 ] 62 ]
56 63
57 include_dirs = [ "../.." ] 64 include_dirs = [ "../.." ]
58 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698