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

Unified Diff: components/nacl/browser/BUILD.gn

Issue 1949423002: Adding nacl component unit tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed commented out lines Created 4 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
« no previous file with comments | « components/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/browser/BUILD.gn
diff --git a/components/nacl/browser/BUILD.gn b/components/nacl/browser/BUILD.gn
index 9b247f42a17d909e2a02a96e2cdc63e449dbf362..4d5228046a85ccff2677f62e2b3bf020746cc461 100644
--- a/components/nacl/browser/BUILD.gn
+++ b/components/nacl/browser/BUILD.gn
@@ -75,3 +75,27 @@ source_set("browser") {
data_deps += [ "//components/nacl/broker:nacl64" ]
}
}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "nacl_file_host_unittest.cc",
+ "nacl_process_host_unittest.cc",
+ "nacl_validation_cache_unittest.cc",
+ "pnacl_host_unittest.cc",
+ "pnacl_translation_cache_unittest.cc",
+ "test_nacl_browser_delegate.cc",
+ ]
+
+ deps = [
+ ":browser",
+ "//base",
+ "//components/nacl/common",
+ "//content/test:test_support",
+ "//net:test_support",
+ ]
+
+ if (is_linux) {
+ sources += [ "../zygote/nacl_fork_delegate_linux_unittest.cc" ]
+ }
+}
« no previous file with comments | « components/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698