| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 source_set("common") { | 7 source_set("common") { |
| 8 sources = [ | 8 sources = [ |
| 9 "frame_sink_id.cc", | 9 "frame_sink_id.cc", |
| 10 "frame_sink_id.h", | 10 "frame_sink_id.h", |
| 11 "frame_sink_id_allocator.h", | 11 "frame_sink_id_allocator.h", |
| 12 "gl_helper.cc", | 12 "gl_helper.cc", |
| 13 "gl_helper.h", | 13 "gl_helper.h", |
| 14 "gl_helper_readback_support.cc", | 14 "gl_helper_readback_support.cc", |
| 15 "gl_helper_readback_support.h", | 15 "gl_helper_readback_support.h", |
| 16 "gl_helper_scaling.cc", | 16 "gl_helper_scaling.cc", |
| 17 "gl_helper_scaling.h", | 17 "gl_helper_scaling.h", |
| 18 "hit_test/aggregated_hit_test_region.h", |
| 18 "local_surface_id.cc", | 19 "local_surface_id.cc", |
| 19 "local_surface_id.h", | 20 "local_surface_id.h", |
| 20 "local_surface_id_allocator.cc", | 21 "local_surface_id_allocator.cc", |
| 21 "local_surface_id_allocator.h", | 22 "local_surface_id_allocator.h", |
| 22 "quads/resource_format.h", | 23 "quads/resource_format.h", |
| 23 "quads/shared_bitmap.cc", | 24 "quads/shared_bitmap.cc", |
| 24 "quads/shared_bitmap.h", | 25 "quads/shared_bitmap.h", |
| 25 "quads/texture_mailbox.cc", | 26 "quads/texture_mailbox.cc", |
| 26 "quads/texture_mailbox.h", | 27 "quads/texture_mailbox.h", |
| 27 "resources/buffer_to_texture_target_map.cc", | 28 "resources/buffer_to_texture_target_map.cc", |
| 28 "resources/buffer_to_texture_target_map.h", | 29 "resources/buffer_to_texture_target_map.h", |
| 29 "resources/platform_color.h", | 30 "resources/platform_color.h", |
| 30 "resources/resource_format_utils.cc", | 31 "resources/resource_format_utils.cc", |
| 31 "resources/resource_format_utils.h", | 32 "resources/resource_format_utils.h", |
| 32 "resources/resource_settings.cc", | 33 "resources/resource_settings.cc", |
| 33 "resources/resource_settings.h", | 34 "resources/resource_settings.h", |
| 34 "resources/shared_bitmap_manager.h", | 35 "resources/shared_bitmap_manager.h", |
| 35 "surface_id.cc", | 36 "surface_id.cc", |
| 36 "surface_id.h", | 37 "surface_id.h", |
| 37 ] | 38 ] |
| 38 | 39 |
| 39 deps = [ | 40 deps = [ |
| 40 "//base", | 41 "//base", |
| 41 "//gpu/command_buffer/client:gles2_interface", | 42 "//gpu/command_buffer/client:gles2_interface", |
| 42 "//mojo/public/cpp/bindings", | 43 "//mojo/public/cpp/bindings", |
| 43 "//skia", | 44 "//skia", |
| 44 "//ui/gfx:color_space", | 45 "//ui/gfx:color_space", |
| 46 "//ui/gfx:geometry_skia", |
| 45 "//ui/gfx/geometry", | 47 "//ui/gfx/geometry", |
| 46 ] | 48 ] |
| 47 | 49 |
| 48 public_deps = [ | 50 public_deps = [ |
| 49 "//gpu/command_buffer/client", | 51 "//gpu/command_buffer/client", |
| 50 "//gpu/command_buffer/common", | 52 "//gpu/command_buffer/common", |
| 51 "//mojo/public/cpp/bindings", | 53 "//mojo/public/cpp/bindings", |
| 52 ] | 54 ] |
| 53 } | 55 } |
| 54 | 56 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "//gpu/ipc:gl_in_process_context", | 99 "//gpu/ipc:gl_in_process_context", |
| 98 "//testing/gmock", | 100 "//testing/gmock", |
| 99 "//testing/gtest", | 101 "//testing/gtest", |
| 100 "//ui/gfx", | 102 "//ui/gfx", |
| 101 ] | 103 ] |
| 102 | 104 |
| 103 data_deps = [ | 105 data_deps = [ |
| 104 "//third_party/mesa:osmesa", | 106 "//third_party/mesa:osmesa", |
| 105 ] | 107 ] |
| 106 } | 108 } |
| OLD | NEW |