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

Side by Side Diff: chrome/chrome_repack_locales.gni

Issue 682863002: Repack remoting resources into Chrome on Chrome OS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@It2me_ChromeOS
Patch Set: Fix GN build error Created 6 years, 1 month 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
« no previous file with comments | « no previous file | chrome/chrome_resources.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//tools/grit/repack.gni") 7 import("//tools/grit/repack.gni")
8 8
9 # Arguments: 9 # Arguments:
10 # 10 #
(...skipping 29 matching lines...) Expand all
40 sources += [ 40 sources += [
41 "${root_gen_dir}/ash/strings/ash_strings_${locale}.pak", 41 "${root_gen_dir}/ash/strings/ash_strings_${locale}.pak",
42 ] 42 ]
43 deps += [ 43 deps += [
44 "//ash/strings", 44 "//ash/strings",
45 ] 45 ]
46 } 46 }
47 if (is_chromeos) { 47 if (is_chromeos) {
48 sources += [ 48 sources += [
49 "${root_gen_dir}/ui/chromeos/strings/ui_chromeos_strings_${locale}.pak", 49 "${root_gen_dir}/ui/chromeos/strings/ui_chromeos_strings_${locale}.pak",
50 "${root_gen_dir}/remoting/resources/${locale}.pak",
50 ] 51 ]
51 deps += [ 52 deps += [
53 "//remoting/resources",
52 "//ui/chromeos/strings", 54 "//ui/chromeos/strings",
53 ] 55 ]
54 } 56 }
55 if (!is_ios) { 57 if (!is_ios) {
56 sources += [ 58 sources += [
57 "${root_gen_dir}/content/app/strings/content_strings_${locale}.pak", 59 "${root_gen_dir}/content/app/strings/content_strings_${locale}.pak",
58 "${root_gen_dir}/ui/strings/ui_strings_${locale}.pak", 60 "${root_gen_dir}/ui/strings/ui_strings_${locale}.pak",
59 "${root_gen_dir}/ui/strings/app_locale_settings_${locale}.pak", 61 "${root_gen_dir}/ui/strings/app_locale_settings_${locale}.pak",
60 ] 62 ]
61 deps += [ 63 deps += [
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 } 167 }
166 168
167 # The group that external targets depend on which collects all deps. 169 # The group that external targets depend on which collects all deps.
168 group(group_target_name) { 170 group(group_target_name) {
169 if (defined(invoker.visibility)) { 171 if (defined(invoker.visibility)) {
170 visibility = invoker.visibility 172 visibility = invoker.visibility
171 } 173 }
172 deps = locale_targets 174 deps = locale_targets
173 } 175 }
174 } 176 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_resources.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698