| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 | 6 |
| 7 component("compositor") { | 7 component("compositor") { |
| 8 sources = [ | 8 sources = [ |
| 9 "closure_animation_observer.cc", | 9 "closure_animation_observer.cc", |
| 10 "closure_animation_observer.h", | 10 "closure_animation_observer.h", |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 ] | 105 ] |
| 106 | 106 |
| 107 public_deps = [ | 107 public_deps = [ |
| 108 ":compositor", | 108 ":compositor", |
| 109 ] | 109 ] |
| 110 deps = [ | 110 deps = [ |
| 111 "//base/test:test_support", | 111 "//base/test:test_support", |
| 112 "//cc", | 112 "//cc", |
| 113 "//cc/surfaces", | 113 "//cc/surfaces", |
| 114 "//cc:test_support", | 114 "//cc:test_support", |
| 115 "//gpu/blink", |
| 115 "//skia", | 116 "//skia", |
| 116 "//testing/gtest", | 117 "//testing/gtest", |
| 117 "//third_party/WebKit/public:blink_minimal", | 118 "//third_party/WebKit/public:blink_minimal", |
| 118 "//ui/base", | 119 "//ui/base", |
| 119 "//ui/gfx", | 120 "//ui/gfx", |
| 120 "//ui/gfx/geometry", | 121 "//ui/gfx/geometry", |
| 121 "//ui/gl", | 122 "//ui/gl", |
| 122 "//webkit/common/gpu", | 123 "//webkit/common/gpu", |
| 123 ] | 124 ] |
| 124 | 125 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 # "//ui/gfx", | 160 # "//ui/gfx", |
| 160 # "//ui/gfx/geometry", | 161 # "//ui/gfx/geometry", |
| 161 # "//ui/gl", | 162 # "//ui/gl", |
| 162 # "//ui/resources", | 163 # "//ui/resources", |
| 163 # ] | 164 # ] |
| 164 # | 165 # |
| 165 # if (is_linux) { | 166 # if (is_linux) { |
| 166 # deps += [ "//third_party/mesa:osmesa" ] | 167 # deps += [ "//third_party/mesa:osmesa" ] |
| 167 # } | 168 # } |
| 168 #} | 169 #} |
| OLD | NEW |