summaryrefslogtreecommitdiffstats
path: root/extensions/shell
diff options
context:
space:
mode:
authorphosek <phosek@chromium.org>2016-01-04 13:08:21 -0800
committerCommit bot <commit-bot@chromium.org>2016-01-04 21:09:39 +0000
commit21255d8b9b0ace0629fd941ee128cf9adf356b31 (patch)
treebc1c80c78cb3897d751df9fd85883c08879f1f15 /extensions/shell
parent8071b7291fcca23077448a90afca69c818e51a81 (diff)
downloadchromium_src-21255d8b9b0ace0629fd941ee128cf9adf356b31.zip
chromium_src-21255d8b9b0ace0629fd941ee128cf9adf356b31.tar.gz
chromium_src-21255d8b9b0ace0629fd941ee128cf9adf356b31.tar.bz2
GN: Properly mark all NaCl test depencies as data_deps
NaCl tests and helpers are build as standalone executables and hence need to be marked as data_deps to be copied over to shards. BUG=462791 Review URL: https://codereview.chromium.org/1547463004 Cr-Commit-Position: refs/heads/master@{#367367}
Diffstat (limited to 'extensions/shell')
-rw-r--r--extensions/shell/BUILD.gn5
1 files changed, 4 insertions, 1 deletions
diff --git a/extensions/shell/BUILD.gn b/extensions/shell/BUILD.gn
index 0f8af6e..8cb0dd3 100644
--- a/extensions/shell/BUILD.gn
+++ b/extensions/shell/BUILD.gn
@@ -104,7 +104,10 @@ source_set("app_shell_lib") {
]
if (is_linux) {
- deps += [ "//components/nacl/loader:nacl_helper" ]
+ deps += [
+ "//components/nacl/loader:helper_nonsfi",
+ "//components/nacl/loader:nacl_helper",
+ ]
}
}