Home | History | Annotate | Download | only in embedder
      1 # Copyright 2018 The Chromium Authors. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 component("embedder") {
      6   output_name = "mojo_core_embedder"
      7 
      8   public = [
      9     "configuration.h",
     10     "embedder.h",
     11     "scoped_ipc_support.h",
     12   ]
     13 
     14   sources = [
     15     "embedder.cc",
     16     "scoped_ipc_support.cc",
     17   ]
     18 
     19   defines = [ "IS_MOJO_CORE_EMBEDDER_IMPL" ]
     20 
     21   public_deps = [
     22     "//base",
     23   ]
     24 
     25   deps = [
     26     "//mojo/core:embedder_internal",
     27     "//mojo/public/c/system",
     28   ]
     29 }
     30