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

Side by Side Diff: services/gles2/BUILD.gn

Issue 940293003: Add a Display and ContextProvider concept to mojom, use to recreate (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 6
7 source_set("gles2") { 7 source_set("gles2") {
8 visibility = [ "//services/native_viewport:*" ]
9
8 sources = [ 10 sources = [
9 "command_buffer_driver.cc", 11 "command_buffer_driver.cc",
10 "command_buffer_driver.h", 12 "command_buffer_driver.h",
11 "command_buffer_impl.cc", 13 "command_buffer_impl.cc",
12 "command_buffer_impl.h", 14 "command_buffer_impl.h",
15 "gpu_state.cc",
16 "gpu_state.h",
13 "gpu_impl.cc", 17 "gpu_impl.cc",
14 "gpu_impl.h", 18 "gpu_impl.h",
15 ] 19 ]
16 20
17 public_deps = [ 21 public_deps = [
18 ":lib", 22 ":lib",
19 ] 23 ]
20 deps = [ 24 deps = [
21 "//base", 25 "//base",
22 "//gpu/command_buffer/service", 26 "//gpu/command_buffer/service",
(...skipping 16 matching lines...) Expand all
39 ] 43 ]
40 44
41 deps = [ 45 deps = [
42 "//base", 46 "//base",
43 "//gpu/command_buffer/common", 47 "//gpu/command_buffer/common",
44 "//mojo/public/cpp/bindings", 48 "//mojo/public/cpp/bindings",
45 "//mojo/public/cpp/system", 49 "//mojo/public/cpp/system",
46 "//mojo/services/gpu/public/interfaces", 50 "//mojo/services/gpu/public/interfaces",
47 ] 51 ]
48 } 52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698