Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3209)

Unified Diff: build/config/ios/rules.gni

Issue 1880393004: [iOS/GN] Fix ios_chrome_unittests to pass when build with gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-symlink
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ios/chrome/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/ios/rules.gni
diff --git a/build/config/ios/rules.gni b/build/config/ios/rules.gni
index 2c079d45cc9782ebc3707160fcd5e073b93cae96..cfb418061d4aec7ec2384f5b569b9f7c30788cf1 100644
--- a/build/config/ios/rules.gni
+++ b/build/config/ios/rules.gni
@@ -198,8 +198,7 @@ template("bundle_data_xib") {
invoker.source,
]
outputs = [
- "$target_gen_dir/$_nib_filename/objects.nib",
- "$target_gen_dir/$_nib_filename/runtime.nib",
+ "$target_gen_dir/$_nib_filename",
]
args = [
"--minimum-deployment-target",
@@ -220,11 +219,10 @@ template("bundle_data_xib") {
public_deps += [ ":$_compile_xib" ]
sources = [
- "$target_gen_dir/$_nib_filename/objects.nib",
- "$target_gen_dir/$_nib_filename/runtime.nib",
+ "$target_gen_dir/$_nib_filename",
]
outputs = [
- "{{bundle_resources_dir}}/$_nib_filename/{{source_file_part}}",
+ "{{bundle_resources_dir}}/$_nib_filename",
]
}
}
« no previous file with comments | « no previous file | ios/chrome/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698