| 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("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 import("//tools/grit/grit_rule.gni") | |
| 10 | 9 |
| 11 # Arguments: | 10 # Arguments: |
| 12 # | 11 # |
| 13 # locale | 12 # locale |
| 14 # Internal name of locale. e.g. "pt-BR" | 13 # Internal name of locale. e.g. "pt-BR" |
| 15 # | 14 # |
| 16 # output | 15 # output |
| 17 # Output file name. | 16 # Output file name. |
| 18 # | 17 # |
| 19 # visibility | 18 # visibility |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 | 201 |
| 203 current_index = current_index + 1 | 202 current_index = current_index + 1 |
| 204 } | 203 } |
| 205 | 204 |
| 206 # The group that external targets depend on which collects all deps. | 205 # The group that external targets depend on which collects all deps. |
| 207 group(group_target_name) { | 206 group(group_target_name) { |
| 208 forward_variables_from(invoker, [ "visibility" ]) | 207 forward_variables_from(invoker, [ "visibility" ]) |
| 209 public_deps = locale_targets | 208 public_deps = locale_targets |
| 210 } | 209 } |
| 211 } | 210 } |
| OLD | NEW |