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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
# 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.
import("//build/config/features.gni")
import("//build/config/ui.gni")
static_library("common") {
public = [
"cached_signal.h",
"common_types.h",
"platform_utils.h",
"platform_wrapper.h",
"signals_constants.h",
]
sources = [
"common_types.cc",
"platform_utils.cc",
"platform_wrapper.cc",
"signals_constants.cc",
]
public_deps = [ "//third_party/abseil-cpp:absl" ]
deps = [
"//base",
"//components/policy/core/common",
]
if (is_win) {
sources += [ "win/platform_utils_win.cc" ]
libs = [
"propsys.lib",
"secur32.lib",
]
}
if (is_mac || is_linux || is_chromeos) {
sources += [ "posix/platform_utils_posix.cc" ]
}
if (is_mac) {
sources += [ "mac/platform_utils_mac.mm" ]
deps += [ ":features" ]
}
if (is_linux || is_chromeos) {
if (use_glib) {
deps += [ "//ui/base/glib" ]
}
sources += [ "linux/platform_utils_linux.cc" ]
}
# platform_utils_linux uses a "defined(USE_GIO)" macro, so if it's refactored
# away from this file make sure gio_config is still added to configs.
if (use_gio) {
configs += [ "//build/linux:gio_config" ]
}
# TODO(crbug.com/40031409): Fix code that adds exit-time destructors and
# enable the diagnostic by removing this line.
configs += [ "//build/config/compiler:no_exit_time_destructors" ]
}
source_set("features") {
public = [ "signals_features.h" ]
sources = [ "signals_features.cc" ]
public_deps = [ "//base" ]
}
source_set("unit_tests") {
testonly = true
sources = []
deps = []
if (is_win || is_mac || is_linux || is_chromeos) {
sources += [ "platform_utils_unittest.cc" ]
deps += [
":common",
":test_support",
"//base",
"//base/test:test_support",
"//testing/gmock",
"//testing/gtest",
]
}
}
source_set("test_support") {
testonly = true
public = [ "scoped_platform_wrapper.h" ]
sources = [ "scoped_platform_wrapper.cc" ]
public_deps = [
":common",
"//base",
"//testing/gmock",
]
}
|