| 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("//extensions/features/features.gni") | 8 import("//extensions/features/features.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "${root_gen_dir}/ui/strings/ui_strings_", | 64 "${root_gen_dir}/ui/strings/ui_strings_", |
| 65 ] | 65 ] |
| 66 deps += [ | 66 deps += [ |
| 67 "//content/app/strings", | 67 "//content/app/strings", |
| 68 "//device/bluetooth/strings", | 68 "//device/bluetooth/strings", |
| 69 "//third_party/libaddressinput:strings", | 69 "//third_party/libaddressinput:strings", |
| 70 "//ui/strings:app_locale_settings", | 70 "//ui/strings:app_locale_settings", |
| 71 "//ui/strings:ui_strings", | 71 "//ui/strings:ui_strings", |
| 72 ] | 72 ] |
| 73 } | 73 } |
| 74 if (is_android) { | |
| 75 source_patterns += [ | |
| 76 "${root_gen_dir}/blimp/client/public/resources/blimp_strings_", | |
| 77 "${root_gen_dir}/blimp/client/support/resources/blimp_strings_", | |
| 78 ] | |
| 79 deps += [ | |
| 80 "//blimp/client/public/resources", | |
| 81 "//blimp/client/support/resources:strings", | |
| 82 ] | |
| 83 } | |
| 84 if (enable_extensions) { | 74 if (enable_extensions) { |
| 85 source_patterns += | 75 source_patterns += |
| 86 [ "${root_gen_dir}/extensions/strings/extensions_strings_" ] | 76 [ "${root_gen_dir}/extensions/strings/extensions_strings_" ] |
| 87 deps += [ "//extensions/strings" ] | 77 deps += [ "//extensions/strings" ] |
| 88 } | 78 } |
| 89 | 79 |
| 90 if (is_chrome_branded) { | 80 if (is_chrome_branded) { |
| 91 source_patterns += [ | 81 source_patterns += [ |
| 92 "${root_gen_dir}/chrome/google_chrome_strings_", | 82 "${root_gen_dir}/chrome/google_chrome_strings_", |
| 93 "${root_gen_dir}/components/strings/components_google_chrome_strings_", | 83 "${root_gen_dir}/components/strings/components_google_chrome_strings_", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 105 "//chrome/app:chromium_strings", | 95 "//chrome/app:chromium_strings", |
| 106 "//components/strings:components_chromium_strings", | 96 "//components/strings:components_chromium_strings", |
| 107 ] | 97 ] |
| 108 } | 98 } |
| 109 | 99 |
| 110 if (defined(invoker.additional_source_patterns)) { | 100 if (defined(invoker.additional_source_patterns)) { |
| 111 source_patterns += invoker.additional_source_patterns | 101 source_patterns += invoker.additional_source_patterns |
| 112 } | 102 } |
| 113 } | 103 } |
| 114 } | 104 } |
| OLD | NEW |