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
fuchsia_web / common / BUILD.gn [blame]
# Copyright 2022 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
assert(is_fuchsia)
# Only allow use by WebEngine-related Fuchsia targets.
visibility = [ "//fuchsia_web/*" ]
source_set("common") {
sources = [
"fuchsia_dir_scheme.cc",
"init_logging.cc",
"string_util.cc",
]
public = [
"fuchsia_dir_scheme.h",
"init_logging.h",
"string_util.h",
]
deps = [
"//components/version_info",
"//url",
]
}