We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bc313d commit d54ea1cCopy full SHA for d54ea1c
testing/testing.gni
@@ -230,7 +230,11 @@ template("test_fixtures") {
230
# must always be known to tests.
231
fixtures_location_target_name = "fixtures_location_$target_name"
232
fixtures_location(fixtures_location_target_name) {
233
- assets_dir = "$target_gen_dir/assets"
+ if (is_fuchsia) {
234
+ assets_dir = "/pkg/data/assets"
235
+ } else {
236
+ assets_dir = "$target_gen_dir/assets"
237
+ }
238
}
239
test_deps = [ ":$fixtures_location_target_name" ]
240
0 commit comments