OLD | NEW |
---|---|
1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 group("frame_sinks") { | 5 group("frame_sinks") { |
6 if (is_component_build) { | 6 if (is_component_build) { |
7 public_deps = [ | 7 public_deps = [ |
8 "//components/viz", | 8 "//components/viz", |
9 ] | 9 ] |
10 } else { | 10 } else { |
(...skipping 16 matching lines...) Expand all Loading... | |
27 "gpu_root_compositor_frame_sink.h", | 27 "gpu_root_compositor_frame_sink.h", |
28 "mojo_frame_sink_manager.cc", | 28 "mojo_frame_sink_manager.cc", |
29 "mojo_frame_sink_manager.h", | 29 "mojo_frame_sink_manager.h", |
30 ] | 30 ] |
31 | 31 |
32 public_deps = [ | 32 public_deps = [ |
33 "//base", | 33 "//base", |
34 "//cc", | 34 "//cc", |
35 "//cc/ipc:interfaces", | 35 "//cc/ipc:interfaces", |
36 "//cc/surfaces", | 36 "//cc/surfaces", |
37 "//components/viz/base", | |
37 "//components/viz/display_compositor:display_compositor_sources", | 38 "//components/viz/display_compositor:display_compositor_sources", |
Fady Samuel
2017/06/15 15:02:40
Please rebase.
gklassen
2017/06/15 19:40:17
Done.
| |
39 "//components/viz/hit_test", | |
38 "//gpu/ipc:command_buffer", | 40 "//gpu/ipc:command_buffer", |
39 ] | 41 ] |
40 | 42 |
41 configs += [ "//components/viz:viz_implementation" ] | 43 configs += [ "//components/viz:viz_implementation" ] |
42 | 44 |
43 if (is_win) { | 45 if (is_win) { |
44 cflags = [ "/wd4267" ] # conversion from 'size_t' to 'int' on x64 (crbug.co m/633312) | 46 cflags = [ "/wd4267" ] # conversion from 'size_t' to 'int' on x64 (crbug.co m/633312) |
45 } | 47 } |
46 } | 48 } |
OLD | NEW |