| 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 17 matching lines...) Expand all Loading... |
| 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/display_compositor:display_compositor_sources", | 37 "//components/viz/display_compositor:display_compositor_sources", |
| 38 "//components/viz/host/hit_test", |
| 38 "//gpu/ipc:command_buffer", | 39 "//gpu/ipc:command_buffer", |
| 39 ] | 40 ] |
| 40 | 41 |
| 41 configs += [ "//components/viz:viz_implementation" ] | 42 configs += [ "//components/viz:viz_implementation" ] |
| 42 | 43 |
| 43 if (is_win) { | 44 if (is_win) { |
| 44 cflags = [ "/wd4267" ] # conversion from 'size_t' to 'int' on x64 (crbug.co
m/633312) | 45 cflags = [ "/wd4267" ] # conversion from 'size_t' to 'int' on x64 (crbug.co
m/633312) |
| 45 } | 46 } |
| 46 } | 47 } |
| OLD | NEW |