Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 } |
| OLD | NEW |