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

Unified Diff: BUILD.gn

Issue 2511363002: Build native client files only if enable_nacl is true. (Closed)
Patch Set: Created 4 years, 1 month 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 | « AUTHORS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 43c7b3d1fa3f452ae988045860c486202b288de0..4eb68fc7cdd73a90552097203f343ab1a883e2ec 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -780,7 +780,6 @@ group("gn_only") {
"//components/sessions:unit_tests",
"//media/blink:media_blink_unittests",
"//media/cast:udp_proxy",
- "//native_client/src/trusted/debug_stub:gdb_rsp_unittest",
"//storage/browser:dump_file_system",
"//third_party/angle:libANGLE",
"//third_party/angle:libEGL",
@@ -815,6 +814,10 @@ group("gn_only") {
"//ui/shell_dialogs:shell_dialogs_unittests",
]
+ if (enable_nacl) {
+ deps += [ "//native_client/src/trusted/debug_stub:gdb_rsp_unittest" ]
+ }
+
if (target_cpu == "x86" || target_cpu == "x64") {
if (!is_android) {
deps += [ "//chrome/test:load_library_perf_tests" ]
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698