OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 component("blimp_common") { |
| 6 sources = [ |
| 7 # TODO(dtrainor): Remove this once the LayerTreeHost settings for Blimp |
| 8 # are finalized or are pushed from the server component. |
| 9 "../../content/public/common/content_switches.cc", |
| 10 "blimp_common_export.h", |
| 11 "compositor/blimp_layer_tree_settings.cc", |
| 12 "compositor/blimp_layer_tree_settings.h", |
| 13 ] |
| 14 |
| 15 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ] |
| 16 |
| 17 deps = [ |
| 18 "//base", |
| 19 "//cc", |
| 20 "//skia", |
| 21 "//ui/gfx/geometry", |
| 22 "//ui/gl", |
| 23 ] |
| 24 } |
OLD | NEW |