summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorphosek <phosek@chromium.org>2016-01-12 00:53:07 -0800
committerCommit bot <commit-bot@chromium.org>2016-01-12 08:54:49 +0000
commita0f606b1a300011c7be6270268874efe5b7b0a38 (patch)
treeedbba27c736d95733a6d315cd173b180f5dd8b20 /components
parent65098f08be3de0427df1a33cc7eb2f87469ec780 (diff)
downloadchromium_src-a0f606b1a300011c7be6270268874efe5b7b0a38.zip
chromium_src-a0f606b1a300011c7be6270268874efe5b7b0a38.tar.gz
chromium_src-a0f606b1a300011c7be6270268874efe5b7b0a38.tar.bz2
Reland of 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 CQ_EXTRA_TRYBOTS=tryserver.chromium.win:win8_chromium_gn_dbg,win_chromium_gn_x64_rel Review URL: https://codereview.chromium.org/1563093003 Cr-Commit-Position: refs/heads/master@{#368833}
Diffstat (limited to 'components')
-rw-r--r--components/nacl/loader/BUILD.gn3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/nacl/loader/BUILD.gn b/components/nacl/loader/BUILD.gn
index e9d9d9c..7e1dac8 100644
--- a/components/nacl/loader/BUILD.gn
+++ b/components/nacl/loader/BUILD.gn
@@ -164,7 +164,7 @@ if (is_linux) {
}
group("helper_nonsfi") {
- deps = [
+ data_deps = [
":nacl_helper_nonsfi_copy(//build/toolchain/nacl:newlib_pnacl_nonsfi)",
]
}
@@ -183,6 +183,7 @@ if (is_linux) {
testonly = true
data_deps = [
":helper_nonsfi_unittests",
+ ":nacl_helper_nonsfi_unittests_main_copy(//build/toolchain/nacl:newlib_pnacl_nonsfi)",
]
}
}