summaryrefslogtreecommitdiff
path: root/chromium/chromeos/BUILD.gn
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-12 14:27:29 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-13 09:35:20 +0000
commitc30a6232df03e1efbd9f3b226777b07e087a1122 (patch)
treee992f45784689f373bcc38d1b79a239ebe17ee23 /chromium/chromeos/BUILD.gn
parent7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 (diff)
downloadqtwebengine-chromium-85-based.tar.gz
BASELINE: Update Chromium to 85.0.4183.14085-based
Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/chromeos/BUILD.gn')
-rw-r--r--chromium/chromeos/BUILD.gn15
1 files changed, 14 insertions, 1 deletions
diff --git a/chromium/chromeos/BUILD.gn b/chromium/chromeos/BUILD.gn
index 3e6fe60f933..6f0abfca7e2 100644
--- a/chromium/chromeos/BUILD.gn
+++ b/chromium/chromeos/BUILD.gn
@@ -92,6 +92,8 @@ component("chromeos") {
if (is_printing_ppd_provider_v3) {
sources += [
+ "printing/ppd_metadata_parser.cc",
+ "printing/ppd_metadata_parser.h",
"printing/ppd_provider_v3.cc",
"printing/printer_config_cache.cc",
"printing/printer_config_cache.h",
@@ -214,7 +216,12 @@ test("chromeos_unittests") {
]
if (is_printing_ppd_provider_v3) {
- sources += [ "printing/printer_config_cache_unittest.cc" ]
+ sources += [
+ "printing/fake_printer_config_cache.cc",
+ "printing/fake_printer_config_cache.h",
+ "printing/ppd_metadata_parser_unittest.cc",
+ "printing/printer_config_cache_unittest.cc",
+ ]
} else {
sources += [ "printing/ppd_provider_unittest.cc" ]
}
@@ -271,6 +278,9 @@ if (is_chromeos_device) {
tast_test("chrome_all_tast_tests") {
# To disable a specific test, add it the following list and cite a bug.
tast_disabled_tests = [
+ # crbug.com/1097630
+ "security.OpenFDs",
+
# crbug.com/1051059
"security.SELinuxProcessesARC",
@@ -287,6 +297,9 @@ if (is_chromeos_device) {
# crbug.com/1073084
"crostini.CopyPaste.wayland_to_x11_artifact",
+
+ # crbug.com/1098810
+ "security.SELinuxFilesSystem",
]
}