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

Side by Side Diff: gpu/ipc/BUILD.gn

Issue 2493913002: Mus: Move InProcessCommandBuffer and GLInProcessContext to gpu/ipc (Closed)
Patch Set: Fixed casts on windows Created 4 years, 1 month 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
(Empty)
1 # Copyright 2016 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.
4
5 import("//build/config/ui.gni")
6
7 group("command_buffer") {
8 if (is_component_build) {
9 public_deps = [
10 "//gpu",
11 ]
12 } else {
13 public_deps = [
14 ":command_buffer_sources",
15 ]
16 }
17 }
18
19 source_set("command_buffer_sources") {
20 visibility = [ "//gpu/*" ]
21 sources = [
22 "in_process_command_buffer.cc",
23 "in_process_command_buffer.h",
24 ]
25
26 configs += [ "//gpu:gpu_implementation" ]
27
28 public_deps = [
29 "//base",
30 "//gpu/command_buffer/client:client_sources",
31 "//gpu/command_buffer/common:common_sources",
32 "//gpu/command_buffer/service:service_sources",
33 "//gpu/config:config_sources",
34 "//ui/gfx",
35 "//ui/gl",
36 "//ui/gl/init",
37 ]
38 }
39
40 component("gl_in_process_context") {
41 sources = [
42 "gl_in_process_context.cc",
43 "gl_in_process_context.h",
44 "gl_in_process_context_export.h",
45 ]
46
47 defines = [ "GL_IN_PROCESS_CONTEXT_IMPLEMENTATION" ]
48
49 public_deps = [
50 ":command_buffer",
51 "//base",
52 "//base/third_party/dynamic_annotations",
53 "//gpu",
54 "//gpu/command_buffer/client:gles2_implementation",
55 "//gpu/command_buffer/common:gles2_utils",
56 "//gpu/ipc:command_buffer",
57 "//ui/gfx/geometry",
58 "//ui/gl",
59 ]
60 }
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/in_process_command_buffer.cc ('k') | gpu/ipc/client/gpu_in_process_context_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698