| OLD | NEW |
| 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 | 6 |
| 7 # See also remoting_locales_with_underscores below. | 7 # See also remoting_locales_with_underscores below. |
| 8 remoting_locales = [ | 8 remoting_locales = [ |
| 9 "am", | 9 "am", |
| 10 "ar", | 10 "ar", |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 remoting_locales_with_underscores, | 196 remoting_locales_with_underscores, |
| 197 [ "$root_build_dir/remoting/resources/{{source_name_part}}.lproj/loc
ale.pak" ]) | 197 [ "$root_build_dir/remoting/resources/{{source_name_part}}.lproj/loc
ale.pak" ]) |
| 198 } else { | 198 } else { |
| 199 outputs = process_file_template( | 199 outputs = process_file_template( |
| 200 remoting_locales, | 200 remoting_locales, |
| 201 [ "$root_build_dir/remoting_locales/{{source_name_part}}.pak" ]) | 201 [ "$root_build_dir/remoting_locales/{{source_name_part}}.pak" ]) |
| 202 } | 202 } |
| 203 | 203 |
| 204 args = [ | 204 args = [ |
| 205 "-p", | 205 "-p", |
| 206 os, | 206 current_os, |
| 207 "-g", | 207 "-g", |
| 208 rebase_path(root_gen_dir, root_build_dir), | 208 rebase_path(root_gen_dir, root_build_dir), |
| 209 "-x", | 209 "-x", |
| 210 rebase_path(root_out_dir, root_build_dir), | 210 rebase_path(root_out_dir, root_build_dir), |
| 211 ] + remoting_locales | 211 ] + remoting_locales |
| 212 | 212 |
| 213 deps = [ | 213 deps = [ |
| 214 ":strings", | 214 ":strings", |
| 215 ] | 215 ] |
| 216 } | 216 } |
| OLD | NEW |