summaryrefslogtreecommitdiff
path: root/chromium/cc/mojo_embedder/BUILD.gn
blob: 63e0725c502bf8dcb3515d139d43681d840d59b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2017 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.

import("//cc/cc.gni")

cc_component("mojo_embedder") {
  output_name = "cc_mojo_embedder"
  sources = [
    "async_layer_tree_frame_sink.cc",
    "async_layer_tree_frame_sink.h",
  ]

  defines = [ "CC_MOJO_EMBEDDER_IMPLEMENTATION" ]

  deps = [
    "//base",
    "//cc",
    "//components/viz/client",
    "//components/viz/common",
    "//mojo/public/cpp/bindings",
    "//services/viz/public/mojom",
  ]
}