Remove implicit conversions from scoped_refptr to T* in sandbox/
[chromium-blink-merge.git] / mojo / services / gles2 / BUILD.gn
blobada8edc26fe57592a726c674e4b73e11031da66d
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
3 # found in the LICENSE file.
5 import("//mojo/public/tools/bindings/mojom.gni")
7 # GYP version: mojo/mojo_services.gypi:mojo_gles2_service
8 source_set("gles2") {
9   deps = [
10     ":bindings",
11     "//base",
12     "//gpu/command_buffer/service",
13     "//ui/gfx",
14     "//ui/gfx/geometry",
15     "//ui/gl",
16   ]
18   sources = [
19     "command_buffer_impl.cc",
20     "command_buffer_impl.h",
21   ]
24 # GYP version: mojo/mojo_services.gypi:mojo_gles2_bindings
25 mojom("interfaces") {
26   sources = [
27     "command_buffer.mojom",
28   ]
31 # GYP version: mojo/mojo_services.gypi:mojo_gles2_bindings
32 source_set("bindings") {
33   sources = [
34     "command_buffer_type_conversions.cc",
35     "command_buffer_type_conversions.h",
36     "mojo_buffer_backing.cc",
37     "mojo_buffer_backing.h",
38   ]
40   deps = [
41     ":interfaces",
42     "//gpu/command_buffer/common",
43   ]