| 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 import("//components/viz/viz.gni") | 5 import("//components/viz/viz.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 viz_source_set("common") { | 8 viz_source_set("common") { |
| 9 sources = [ | 9 sources = [ |
| 10 "gl_helper.cc", | 10 "gl_helper.cc", |
| 11 "gl_helper.h", | 11 "gl_helper.h", |
| 12 "gl_helper_readback_support.cc", | 12 "gl_helper_readback_support.cc", |
| 13 "gl_helper_readback_support.h", | 13 "gl_helper_readback_support.h", |
| 14 "gl_helper_scaling.cc", | 14 "gl_helper_scaling.cc", |
| 15 "gl_helper_scaling.h", | 15 "gl_helper_scaling.h", |
| 16 "hit_test/aggregated_hit_test_region.h", |
| 16 "quads/resource_format.h", | 17 "quads/resource_format.h", |
| 17 "quads/shared_bitmap.cc", | 18 "quads/shared_bitmap.cc", |
| 18 "quads/shared_bitmap.h", | 19 "quads/shared_bitmap.h", |
| 19 "quads/texture_mailbox.cc", | 20 "quads/texture_mailbox.cc", |
| 20 "quads/texture_mailbox.h", | 21 "quads/texture_mailbox.h", |
| 21 "resources/buffer_to_texture_target_map.cc", | 22 "resources/buffer_to_texture_target_map.cc", |
| 22 "resources/buffer_to_texture_target_map.h", | 23 "resources/buffer_to_texture_target_map.h", |
| 23 "resources/platform_color.h", | 24 "resources/platform_color.h", |
| 24 "resources/resource_format_utils.cc", | 25 "resources/resource_format_utils.cc", |
| 25 "resources/resource_format_utils.h", | 26 "resources/resource_format_utils.h", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 44 "surfaces/surface_sequence_generator.cc", | 45 "surfaces/surface_sequence_generator.cc", |
| 45 "surfaces/surface_sequence_generator.h", | 46 "surfaces/surface_sequence_generator.h", |
| 46 ] | 47 ] |
| 47 | 48 |
| 48 deps = [ | 49 deps = [ |
| 49 "//base", | 50 "//base", |
| 50 "//gpu/command_buffer/client:gles2_interface", | 51 "//gpu/command_buffer/client:gles2_interface", |
| 51 "//mojo/public/cpp/bindings", | 52 "//mojo/public/cpp/bindings", |
| 52 "//skia", | 53 "//skia", |
| 53 "//ui/gfx:color_space", | 54 "//ui/gfx:color_space", |
| 55 "//ui/gfx:geometry_skia", |
| 54 "//ui/gfx/geometry", | 56 "//ui/gfx/geometry", |
| 55 ] | 57 ] |
| 56 | 58 |
| 57 public_deps = [ | 59 public_deps = [ |
| 58 "//gpu/command_buffer/client", | 60 "//gpu/command_buffer/client", |
| 59 "//gpu/command_buffer/common", | 61 "//gpu/command_buffer/common", |
| 60 "//mojo/public/cpp/bindings", | 62 "//mojo/public/cpp/bindings", |
| 61 ] | 63 ] |
| 62 } | 64 } |
| 63 | 65 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 "//gpu/ipc:gl_in_process_context", | 106 "//gpu/ipc:gl_in_process_context", |
| 105 "//testing/gmock", | 107 "//testing/gmock", |
| 106 "//testing/gtest", | 108 "//testing/gtest", |
| 107 "//ui/gfx", | 109 "//ui/gfx", |
| 108 ] | 110 ] |
| 109 | 111 |
| 110 data_deps = [ | 112 data_deps = [ |
| 111 "//third_party/mesa:osmesa", | 113 "//third_party/mesa:osmesa", |
| 112 ] | 114 ] |
| 113 } | 115 } |
| OLD | NEW |