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

Side by Side Diff: ios/chrome/share_extension/BUILD.gn

Issue 2610863002: Fix deps in all BUILD.gn files in ios. (Closed)
Patch Set: Created 3 years, 11 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 unified diff | Download patch
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/ios/rules.gni") 5 import("//build/config/ios/rules.gni")
6 import("//build/config/locales.gni") 6 import("//build/config/locales.gni")
7 import("//build/config/mac/base_rules.gni") 7 import("//build/config/mac/base_rules.gni")
8 import("//build/mac/tweak_info_plist.gni") 8 import("//build/mac/tweak_info_plist.gni")
9 import("//ios/build/chrome_build.gni") 9 import("//ios/build/chrome_build.gni")
10 import("//ios/chrome/extension_repack.gni") 10 import("//ios/chrome/extension_repack.gni")
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 "CHROMIUM_SHORT_NAME=$chromium_short_name", 69 "CHROMIUM_SHORT_NAME=$chromium_short_name",
70 "SHARE_EXTENSION_BUNDLE_ID=$chromium_bundle_id.ShareExtension", 70 "SHARE_EXTENSION_BUNDLE_ID=$chromium_bundle_id.ShareExtension",
71 ] 71 ]
72 72
73 entitlements_target = ":entitlements" 73 entitlements_target = ":entitlements"
74 info_plist_target = ":tweak_info_plist" 74 info_plist_target = ":tweak_info_plist"
75 } 75 }
76 76
77 generate_localizable_strings("system_strings") { 77 generate_localizable_strings("system_strings") {
78 visibility = [ ":*" ] 78 visibility = [ ":*" ]
79 _packed_resources_target = "//ios/chrome/share_extension:packed_resources" 79 _packed_resources_target = ":packed_resources"
80 config_file = "share_extension_localize_strings_config.plist" 80 config_file = "share_extension_localize_strings_config.plist"
81 datapack_dir = get_label_info(_packed_resources_target, "target_gen_dir") 81 datapack_dir = get_label_info(_packed_resources_target, "target_gen_dir")
82 packed_locales = ios_packed_locales_as_mac_outputs 82 packed_locales = ios_packed_locales_as_mac_outputs
83 output_filenames = [ "Localizable.strings" ] 83 output_filenames = [ "Localizable.strings" ]
84 deps = [ 84 deps = [
85 _packed_resources_target, 85 _packed_resources_target,
86 ] 86 ]
87 } 87 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698