| Index: blimp/common/BUILD.gn
|
| diff --git a/blimp/common/BUILD.gn b/blimp/common/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7a71c28447b3382e22732ae2ce0853448149729f
|
| --- /dev/null
|
| +++ b/blimp/common/BUILD.gn
|
| @@ -0,0 +1,25 @@
|
| +# Copyright 2015 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +component("blimp_common") {
|
| + sources = [
|
| + # TODO(dtrainor): Remove this once the LayerTreeHost settings for Blimp
|
| + # are finalized or are pushed from the server component. See
|
| + # crbug.com/527655.
|
| + "../../content/public/common/content_switches.cc",
|
| + "blimp_common_export.h",
|
| + "compositor/blimp_layer_tree_settings.cc",
|
| + "compositor/blimp_layer_tree_settings.h",
|
| + ]
|
| +
|
| + defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ]
|
| +
|
| + deps = [
|
| + "//base",
|
| + "//cc",
|
| + "//skia",
|
| + "//ui/gfx/geometry",
|
| + "//ui/gl",
|
| + ]
|
| +}
|
|
|