summaryrefslogtreecommitdiff
path: root/mojo/core/embedder/BUILD.gn
blob: 47f1c39016658c62e4b899b2f5e645abaa604811 (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
25
26
27
28
29
# Copyright 2018 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("embedder") {
  output_name = "mojo_core_embedder"

  public = [
    "configuration.h",
    "embedder.h",
    "scoped_ipc_support.h",
  ]

  sources = [
    "embedder.cc",
    "scoped_ipc_support.cc",
  ]

  defines = [ "IS_MOJO_CORE_EMBEDDER_IMPL" ]

  public_deps = [
    "//base",
  ]

  deps = [
    "//mojo/core:embedder_internal",
    "//mojo/public/c/system",
  ]
}