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