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