OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 component("blimp_common") { | 5 static_library("compositor") { |
6 sources = [ | 6 sources = [ |
7 # TODO(dtrainor): Remove this once the LayerTreeHost settings for Blimp | 7 # TODO(dtrainor): Remove this once the LayerTreeHost settings for Blimp |
8 # are finalized or are pushed from the server component. See | 8 # are finalized or are pushed from the server component. See |
9 # crbug.com/527655. | 9 # crbug.com/527655. |
10 "../../content/public/common/content_switches.cc", | 10 "../../../content/public/common/content_switches.cc", |
11 "blimp_common_export.h", | 11 "blimp_layer_tree_settings.cc", |
12 "compositor/blimp_layer_tree_settings.cc", | 12 "blimp_layer_tree_settings.h", |
13 "compositor/blimp_layer_tree_settings.h", | |
14 ] | 13 ] |
15 | 14 |
16 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ] | |
17 | |
18 deps = [ | 15 deps = [ |
19 "//base", | 16 "//base", |
20 "//blimp/common/proto", | |
21 "//cc", | 17 "//cc", |
22 "//skia", | 18 "//skia", |
23 "//ui/gfx/geometry", | 19 "//ui/gfx/geometry", |
24 "//ui/gl", | 20 "//ui/gl", |
25 ] | 21 ] |
26 } | 22 } |
OLD | NEW |