mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
30 lines
546 B
Plaintext
30 lines
546 B
Plaintext
|
# 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",
|
||
|
]
|
||
|
}
|