Index: build/config/ios/rules.gni |
diff --git a/build/config/ios/rules.gni b/build/config/ios/rules.gni |
index 908f88292c24d3989c2907d3fea144c758244db9..5bf2bd7cd489357144fb94994b29b941368d595a 100644 |
--- a/build/config/ios/rules.gni |
+++ b/build/config/ios/rules.gni |
@@ -145,6 +145,13 @@ template("app") { |
":$_bundle_data_info_plist", |
] |
+ if (use_ios_simulator) { |
+ if (!defined(data_deps)) { |
+ data_deps = [] |
+ } |
+ data_deps += [ "//testing/iossim(//build/toolchain/mac:clang_x64)" ] |
Dirk Pranke
2016/03/16 01:22:06
nit: this should probably be "//testing/iossim($ho
sdefresne
2016/03/17 12:11:04
Done.
|
+ } |
+ |
bundle_root_dir = "$root_out_dir/$_app_name.app" |
bundle_resources_dir = bundle_root_dir |
bundle_executable_dir = bundle_root_dir |
@@ -156,6 +163,4 @@ template("app") { |
# - find a way to make "ninja -C out/Default base_unittests.app" work as |
# an alias to "ninja -C out/Default base_unittests" (for convenience |
# and compatibility with gyp), |
- # - implement //testing/iossim(//build/toolchain/mac:clang_x64) and then |
- # add a depency to that target. |
} |