| 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 | 9 |
| 10 # Arguments: | 10 # Arguments: |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 if (!is_ios) { | 59 if (!is_ios) { |
| 60 sources += [ | 60 sources += [ |
| 61 "${root_gen_dir}/content/app/strings/content_strings_${locale}.pak", | 61 "${root_gen_dir}/content/app/strings/content_strings_${locale}.pak", |
| 62 "${root_gen_dir}/device/bluetooth/strings/bluetooth_strings_${locale}.pa
k", | 62 "${root_gen_dir}/device/bluetooth/strings/bluetooth_strings_${locale}.pa
k", |
| 63 "${root_gen_dir}/ui/strings/app_locale_settings_${locale}.pak", | 63 "${root_gen_dir}/ui/strings/app_locale_settings_${locale}.pak", |
| 64 "${root_gen_dir}/ui/strings/ui_strings_${locale}.pak", | 64 "${root_gen_dir}/ui/strings/ui_strings_${locale}.pak", |
| 65 ] | 65 ] |
| 66 deps += [ | 66 deps += [ |
| 67 "//content/app/strings", | 67 "//content/app/strings", |
| 68 "//device/bluetooth/strings", | 68 "//device/bluetooth/strings", |
| 69 "//ui/strings:app_locale_settings", |
| 69 "//ui/strings:ui_strings", | 70 "//ui/strings:ui_strings", |
| 70 "//ui/strings:app_locale_settings", | |
| 71 ] | 71 ] |
| 72 } | 72 } |
| 73 if (enable_autofill_dialog) { | 73 if (enable_autofill_dialog) { |
| 74 sources += [ "${root_gen_dir}/third_party/libaddressinput/address_input_st
rings_${locale}.pak" ] | 74 sources += [ "${root_gen_dir}/third_party/libaddressinput/address_input_st
rings_${locale}.pak" ] |
| 75 deps += [ "//third_party/libaddressinput:strings" ] | 75 deps += [ "//third_party/libaddressinput:strings" ] |
| 76 } | 76 } |
| 77 if (enable_extensions) { | 77 if (enable_extensions) { |
| 78 sources += [ | 78 sources += [ |
| 79 # TODO(jamescook): When Android stops building extensions code move | 79 # TODO(jamescook): When Android stops building extensions code move |
| 80 # this to the OS != 'ios' and OS != 'android' section. | 80 # this to the OS != 'ios' and OS != 'android' section. |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 | 169 |
| 170 current_index = current_index + 1 | 170 current_index = current_index + 1 |
| 171 } | 171 } |
| 172 | 172 |
| 173 # The group that external targets depend on which collects all deps. | 173 # The group that external targets depend on which collects all deps. |
| 174 group(group_target_name) { | 174 group(group_target_name) { |
| 175 forward_variables_from(invoker, [ "visibility" ]) | 175 forward_variables_from(invoker, [ "visibility" ]) |
| 176 public_deps = locale_targets | 176 public_deps = locale_targets |
| 177 } | 177 } |
| 178 } | 178 } |
| OLD | NEW |