| 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 # Wraps repack_locales(), setting the source_patterns and deps required for | 10 # Wraps repack_locales(), setting the source_patterns and deps required for |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "${root_gen_dir}/remoting/resources/", | 49 "${root_gen_dir}/remoting/resources/", |
| 50 "${root_gen_dir}/ui/chromeos/strings/ui_chromeos_strings_", | 50 "${root_gen_dir}/ui/chromeos/strings/ui_chromeos_strings_", |
| 51 ] | 51 ] |
| 52 deps += [ | 52 deps += [ |
| 53 "//remoting/resources", | 53 "//remoting/resources", |
| 54 "//ui/chromeos/strings", | 54 "//ui/chromeos/strings", |
| 55 ] | 55 ] |
| 56 } | 56 } |
| 57 if (!is_ios) { | 57 if (!is_ios) { |
| 58 source_patterns += [ | 58 source_patterns += [ |
| 59 "${root_gen_dir}/blimp/client/support/resources/blimp_strings_", |
| 59 "${root_gen_dir}/content/app/strings/content_strings_", | 60 "${root_gen_dir}/content/app/strings/content_strings_", |
| 60 "${root_gen_dir}/device/bluetooth/strings/bluetooth_strings_", | 61 "${root_gen_dir}/device/bluetooth/strings/bluetooth_strings_", |
| 61 "${root_gen_dir}/third_party/libaddressinput/address_input_strings_", | 62 "${root_gen_dir}/third_party/libaddressinput/address_input_strings_", |
| 62 "${root_gen_dir}/ui/strings/app_locale_settings_", | 63 "${root_gen_dir}/ui/strings/app_locale_settings_", |
| 63 "${root_gen_dir}/ui/strings/ui_strings_", | 64 "${root_gen_dir}/ui/strings/ui_strings_", |
| 64 ] | 65 ] |
| 65 deps += [ | 66 deps += [ |
| 67 "//blimp/client/support/resources:strings", |
| 66 "//content/app/strings", | 68 "//content/app/strings", |
| 67 "//device/bluetooth/strings", | 69 "//device/bluetooth/strings", |
| 68 "//third_party/libaddressinput:strings", | 70 "//third_party/libaddressinput:strings", |
| 69 "//ui/strings:app_locale_settings", | 71 "//ui/strings:app_locale_settings", |
| 70 "//ui/strings:ui_strings", | 72 "//ui/strings:ui_strings", |
| 71 ] | 73 ] |
| 72 } | 74 } |
| 73 if (enable_extensions) { | 75 if (enable_extensions) { |
| 74 source_patterns += [ | 76 source_patterns += [ |
| 75 # TODO(jamescook): When Android stops building extensions code move | 77 # TODO(jamescook): When Android stops building extensions code move |
| (...skipping 21 matching lines...) Expand all Loading... |
| 97 "//chrome/app:chromium_strings", | 99 "//chrome/app:chromium_strings", |
| 98 "//components/strings:components_chromium_strings", | 100 "//components/strings:components_chromium_strings", |
| 99 ] | 101 ] |
| 100 } | 102 } |
| 101 | 103 |
| 102 if (defined(invoker.additional_source_patterns)) { | 104 if (defined(invoker.additional_source_patterns)) { |
| 103 source_patterns += invoker.additional_source_patterns | 105 source_patterns += invoker.additional_source_patterns |
| 104 } | 106 } |
| 105 } | 107 } |
| 106 } | 108 } |
| OLD | NEW |