| 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/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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "${root_gen_dir}/extensions/strings/extensions_strings_${locale}.pak", | 80 "${root_gen_dir}/extensions/strings/extensions_strings_${locale}.pak", |
| 81 ] | 81 ] |
| 82 deps += [ | 82 deps += [ |
| 83 "//device/bluetooth:strings", | 83 "//device/bluetooth:strings", |
| 84 "//extensions/strings", | 84 "//extensions/strings", |
| 85 ] | 85 ] |
| 86 } | 86 } |
| 87 | 87 |
| 88 if (is_chrome_branded) { | 88 if (is_chrome_branded) { |
| 89 sources += [ | 89 sources += [ |
| 90 "${root_gen_dir/chrome/chromium_strings_${locale}.pak", | 90 "${root_gen_dir}/chrome/chromium_strings_${locale}.pak", |
| 91 ] | 91 ] |
| 92 deps += [ | 92 deps += [ |
| 93 "//chrome/app:chromium_strings", | 93 "//chrome/app:chromium_strings", |
| 94 ] | 94 ] |
| 95 } else { | 95 } else { |
| 96 sources += [ | 96 sources += [ |
| 97 "${root_gen_dir}/chrome/google_chrome_strings_${locale}.pak", | 97 "${root_gen_dir}/chrome/google_chrome_strings_${locale}.pak", |
| 98 ] | 98 ] |
| 99 deps += [ | 99 deps += [ |
| 100 "//chrome/app:google_chrome_strings", | 100 "//chrome/app:google_chrome_strings", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 } | 165 } |
| 166 | 166 |
| 167 # The group that external targets depend on which collects all deps. | 167 # The group that external targets depend on which collects all deps. |
| 168 group(group_target_name) { | 168 group(group_target_name) { |
| 169 if (defined(invoker.visibility)) { | 169 if (defined(invoker.visibility)) { |
| 170 visibility = invoker.visibility | 170 visibility = invoker.visibility |
| 171 } | 171 } |
| 172 deps = locale_targets | 172 deps = locale_targets |
| 173 } | 173 } |
| 174 } | 174 } |
| OLD | NEW |