| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("display_compositor") { | 8 component("display_compositor") { |
| 9 sources = [ | 9 sources = [ |
| 10 "buffer_queue.cc", | 10 "buffer_queue.cc", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 defines = [ "DISPLAY_COMPOSITOR_IMPLEMENTATION" ] | 24 defines = [ "DISPLAY_COMPOSITOR_IMPLEMENTATION" ] |
| 25 | 25 |
| 26 deps = [ | 26 deps = [ |
| 27 "//base", | 27 "//base", |
| 28 "//cc", | 28 "//cc", |
| 29 "//gpu/command_buffer/client", | 29 "//gpu/command_buffer/client", |
| 30 "//gpu/command_buffer/client:gles2_interface", | 30 "//gpu/command_buffer/client:gles2_interface", |
| 31 "//gpu/command_buffer/common", | 31 "//gpu/command_buffer/common", |
| 32 "//skia", | 32 "//skia", |
| 33 "//ui/display/types", |
| 33 "//ui/gfx", | 34 "//ui/gfx", |
| 34 ] | 35 ] |
| 35 | 36 |
| 36 if (is_mac) { | 37 if (is_mac) { |
| 37 sources += [ | 38 sources += [ |
| 38 "compositor_overlay_candidate_validator_mac.h", | 39 "compositor_overlay_candidate_validator_mac.h", |
| 39 "compositor_overlay_candidate_validator_mac.mm", | 40 "compositor_overlay_candidate_validator_mac.mm", |
| 40 ] | 41 ] |
| 41 } | 42 } |
| 42 | 43 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "//base", | 79 "//base", |
| 79 "//base/test:test_support", | 80 "//base/test:test_support", |
| 80 "//cc:test_support", | 81 "//cc:test_support", |
| 81 "//gpu/command_buffer/client", | 82 "//gpu/command_buffer/client", |
| 82 "//gpu/command_buffer/client:gl_in_process_context", | 83 "//gpu/command_buffer/client:gl_in_process_context", |
| 83 "//gpu/command_buffer/client:gles2_implementation", | 84 "//gpu/command_buffer/client:gles2_implementation", |
| 84 "//media", | 85 "//media", |
| 85 "//skia", | 86 "//skia", |
| 86 "//testing/gmock", | 87 "//testing/gmock", |
| 87 "//testing/gtest", | 88 "//testing/gtest", |
| 89 "//ui/display/types", |
| 88 "//ui/gl:test_support", | 90 "//ui/gl:test_support", |
| 89 ] | 91 ] |
| 90 | 92 |
| 91 data_deps = [ | 93 data_deps = [ |
| 92 "//third_party/mesa:osmesa", | 94 "//third_party/mesa:osmesa", |
| 93 ] | 95 ] |
| 94 } | 96 } |
| 95 | 97 |
| 96 test("display_compositor_gl_tests") { | 98 test("display_compositor_gl_tests") { |
| 97 sources = [ | 99 sources = [ |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 "//skia", | 154 "//skia", |
| 153 "//testing/gmock", | 155 "//testing/gmock", |
| 154 "//testing/gtest", | 156 "//testing/gtest", |
| 155 "//ui/gl:test_support", | 157 "//ui/gl:test_support", |
| 156 ] | 158 ] |
| 157 | 159 |
| 158 data_deps = [ | 160 data_deps = [ |
| 159 "//third_party/mesa:osmesa", | 161 "//third_party/mesa:osmesa", |
| 160 ] | 162 ] |
| 161 } | 163 } |
| OLD | NEW |