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

Side by Side Diff: ash/strings/BUILD.gn

Issue 2917423002: Revert of chromeos: Remove SystemTrayDelegate::GetIMEManagedMessage() (Closed)
Patch Set: Created 3 years, 6 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
« no previous file with comments | « ash/DEPS ('k') | ash/system/ime/tray_ime_chromeos.cc » ('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("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 import("//tools/grit/repack.gni") 6 import("//tools/grit/repack.gni")
7 7
8 assert(is_chromeos) 8 assert(is_chromeos)
9 9
10 grit("strings") { 10 grit("strings") {
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 70
71 # Creates locale-specific pak files with strings needed for ash_unittests, etc. 71 # Creates locale-specific pak files with strings needed for ash_unittests, etc.
72 template("repack_one_locale_ash") { 72 template("repack_one_locale_ash") {
73 locale = invoker.locale 73 locale = invoker.locale
74 output = invoker.output 74 output = invoker.output
75 75
76 repack(target_name) { 76 repack(target_name) {
77 # Each input pak file should also have a deps line for completeness. 77 # Each input pak file should also have a deps line for completeness.
78 sources = [ 78 sources = [
79 "$root_gen_dir/ash/strings/ash_strings_${locale}.pak", 79 "$root_gen_dir/ash/strings/ash_strings_${locale}.pak",
80 "$root_gen_dir/components/strings/components_strings_${locale}.pak",
81 "$root_gen_dir/device/bluetooth/strings/bluetooth_strings_${locale}.pak", 80 "$root_gen_dir/device/bluetooth/strings/bluetooth_strings_${locale}.pak",
82 "$root_gen_dir/ui/chromeos/strings/ui_chromeos_strings_${locale}.pak", 81 "$root_gen_dir/ui/chromeos/strings/ui_chromeos_strings_${locale}.pak",
83 "$root_gen_dir/ui/strings/app_locale_settings_${locale}.pak", 82 "$root_gen_dir/ui/strings/app_locale_settings_${locale}.pak",
84 "$root_gen_dir/ui/strings/ui_strings_${locale}.pak", 83 "$root_gen_dir/ui/strings/ui_strings_${locale}.pak",
85 ] 84 ]
86 85
87 deps = [ 86 deps = [
88 "//ash/strings", 87 "//ash/strings",
89 "//components/strings:components_strings",
90 "//device/bluetooth/strings", 88 "//device/bluetooth/strings",
91 "//ui/chromeos/strings", 89 "//ui/chromeos/strings",
92 "//ui/strings:app_locale_settings", 90 "//ui/strings:app_locale_settings",
93 "//ui/strings:ui_strings", 91 "//ui/strings:ui_strings",
94 ] 92 ]
95 } 93 }
96 } 94 }
97 95
98 # Creates a pak file containing en-US strings for ash_unittests, etc. 96 # Creates a pak file containing en-US strings for ash_unittests, etc.
99 repack_one_locale_ash("ash_test_strings") { 97 repack_one_locale_ash("ash_test_strings") {
100 output = "$root_build_dir/ash_test_strings.pak" 98 output = "$root_build_dir/ash_test_strings.pak"
101 locale = "en-US" 99 locale = "en-US"
102 } 100 }
OLDNEW
« no previous file with comments | « ash/DEPS ('k') | ash/system/ime/tray_ime_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698