Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5027)

Unified Diff: chrome/test/BUILD.gn

Issue 2840103002: Add new API function: feedbackPrivate.readLogSource (Closed)
Patch Set: Add API unit test; create CrOS-specific test module; minor fixes/refactors Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/BUILD.gn
diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
index 51b4a1b92059d46f6d0f55ad5932bc05ce0741d1..9302679f3d66ddfef4c5a4397c4d6d8ab3a8b938 100644
--- a/chrome/test/BUILD.gn
+++ b/chrome/test/BUILD.gn
@@ -1159,6 +1159,8 @@ test("browser_tests") {
]
}
+ sources += [ "../browser/extensions/api/feedback_private/feedback_private_chromeos_apitest.cc" ]
+
deps += [ "//chrome/browser/chromeos:test_support" ]
}
@@ -4111,7 +4113,12 @@ test("unit_tests") {
sources +=
[ "../browser/extensions/external_registry_loader_win_unittest.cc" ]
}
- if (!is_chromeos) {
+ if (is_chromeos) {
+ sources += [
+ "../browser/extensions/api/feedback_private/feedback_private_api_unittest.cc",
+ "../browser/extensions/api/feedback_private/log_source_access_manager_unittest.cc",
+ ]
+ } else {
sources += [
"../browser/extensions/api/messaging/native_message_process_host_unittest.cc",
"../browser/extensions/api/messaging/native_messaging_host_manifest_unittest.cc",

Powered by Google App Engine
This is Rietveld 408576698