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

Side by Side Diff: cc/surfaces/BUILD.gn

Issue 2498053004: Add InProcessContextProvider and update InProcessCommandBuffer (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | cc/surfaces/DEPS » ('j') | cc/surfaces/deferred_gpu_command_service.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("surface_id") { 5 source_set("surface_id") {
6 sources = [ 6 sources = [
7 "frame_sink_id.h", 7 "frame_sink_id.h",
8 "local_frame_id.h", 8 "local_frame_id.h",
9 "surface_id.h", 9 "surface_id.h",
10 "surface_sequence.h", 10 "surface_sequence.h",
11 "surface_sequence_generator.cc", 11 "surface_sequence_generator.cc",
12 "surface_sequence_generator.h", 12 "surface_sequence_generator.h",
13 ] 13 ]
14 14
15 deps = [ 15 deps = [
16 "//base", 16 "//base",
17 ] 17 ]
18 } 18 }
19 19
20 source_set("context_provider") {
piman 2016/11/15 21:57:32 How about cc/output instead of cc/surfaces for the
Fady Samuel 2016/11/16 00:33:35 Done.
21 sources = [
22 "deferred_gpu_command_service.cc",
23 "deferred_gpu_command_service.h",
24 "in_process_context_provider.cc",
25 "in_process_context_provider.h",
26 ]
27
28 public_deps = [
29 "//cc",
30 "//gpu/command_buffer/client:gles2_c_lib",
31 "//gpu/command_buffer/client:gles2_implementation",
32 "//gpu/ipc:gl_in_process_context",
33 "//gpu/ipc/client",
34 "//gpu/skia_bindings:skia_bindings",
35 ]
36 }
37
20 component("surfaces") { 38 component("surfaces") {
21 output_name = "cc_surfaces" 39 output_name = "cc_surfaces"
22 sources = [ 40 sources = [
23 "direct_compositor_frame_sink.cc", 41 "direct_compositor_frame_sink.cc",
24 "direct_compositor_frame_sink.h", 42 "direct_compositor_frame_sink.h",
25 "display.cc", 43 "display.cc",
26 "display.h", 44 "display.h",
27 "display_client.h", 45 "display_client.h",
28 "display_scheduler.cc", 46 "display_scheduler.cc",
29 "display_scheduler.h", 47 "display_scheduler.h",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 "//ui/events:events_base", 79 "//ui/events:events_base",
62 "//ui/gfx", 80 "//ui/gfx",
63 "//ui/gfx/geometry", 81 "//ui/gfx/geometry",
64 ] 82 ]
65 83
66 if (is_android && !is_debug) { 84 if (is_android && !is_debug) {
67 configs -= [ "//build/config/compiler:default_optimization" ] 85 configs -= [ "//build/config/compiler:default_optimization" ]
68 configs += [ "//build/config/compiler:optimize_max" ] 86 configs += [ "//build/config/compiler:optimize_max" ]
69 } 87 }
70 } 88 }
OLDNEW
« no previous file with comments | « no previous file | cc/surfaces/DEPS » ('j') | cc/surfaces/deferred_gpu_command_service.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698