| # Copyright 2018 The Chromium Authors |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//content/public/common/zygote/features.gni") |
| |
| if (is_linux || is_chromeos) { |
| source_set("zygote") { |
| sources = [ |
| "zygote_linux.cc", |
| "zygote_linux.h", |
| "zygote_main.h", |
| "zygote_main_linux.cc", |
| ] |
| |
| deps = [ |
| "//base", |
| "//base:i18n", |
| "//content/common:sandbox_support_linux", |
| "//content/public/common:common_sources", |
| "//ipc", |
| "//sandbox", |
| "//sandbox/policy", |
| "//third_party/icu", |
| ] |
| |
| configs += [ "//content:content_implementation" ] |
| } |
| } else { |
| group("zygote") { |
| } |
| } |