Chromium Code Reviews| 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 "aggregated_hit_test_region.h", | |
|
danakj
2017/07/13 15:39:38
Can you put this in common/hit_test?
We're trying
gklassen
2017/07/13 19:59:13
It was originally in common/hit_test, but I am hap
| |
| 9 "frame_sink_id.cc", | 10 "frame_sink_id.cc", |
| 10 "frame_sink_id.h", | 11 "frame_sink_id.h", |
| 11 "frame_sink_id_allocator.h", | 12 "frame_sink_id_allocator.h", |
| 12 "gl_helper.cc", | 13 "gl_helper.cc", |
| 13 "gl_helper.h", | 14 "gl_helper.h", |
| 14 "gl_helper_readback_support.cc", | 15 "gl_helper_readback_support.cc", |
| 15 "gl_helper_readback_support.h", | 16 "gl_helper_readback_support.h", |
| 16 "gl_helper_scaling.cc", | 17 "gl_helper_scaling.cc", |
| 17 "gl_helper_scaling.h", | 18 "gl_helper_scaling.h", |
| 18 "local_surface_id.cc", | 19 "local_surface_id.cc", |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 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 |