Skip to content

Commit

Permalink
Fix in preparation of fat builds.
Browse files Browse the repository at this point in the history
The "ios_bundle_data" target will need to create more intermediate
targets that will have to be in the visibility list, so use ":*"
as the visibility to restrict it to target defined in the same file.

BUG=603180

Review-Url: https://codereview.chromium.org/2127733002
Cr-Commit-Position: refs/heads/master@{#403912}
  • Loading branch information
sdefresne authored and Commit bot committed Jul 6, 2016
1 parent c862d88 commit 0a98384
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions testing/test.gni
Original file line number Diff line number Diff line change
Expand Up @@ -281,10 +281,7 @@ template("test") {
_resources_bundle_data = target_name + "_resources_bundle_data"

bundle_data(_resources_bundle_data) {
visibility = [
":${_test_target}",
":${_test_target}_generate_executable",
]
visibility = [ ":*" ]
sources = [
"//testing/gtest_ios/Default.png",
]
Expand Down

0 comments on commit 0a98384

Please sign in to comment.