| 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 24 matching lines...) Expand all Loading... |
| 35 "//chrome/app/resources:locale_settings", | 35 "//chrome/app/resources:locale_settings", |
| 36 "//chrome/app/resources:platform_locale_settings", | 36 "//chrome/app/resources:platform_locale_settings", |
| 37 "//components/strings:components_locale_settings", | 37 "//components/strings:components_locale_settings", |
| 38 "//components/strings:components_strings", | 38 "//components/strings:components_strings", |
| 39 ] | 39 ] |
| 40 if (defined(invoker.deps)) { | 40 if (defined(invoker.deps)) { |
| 41 deps += invoker.deps | 41 deps += invoker.deps |
| 42 } | 42 } |
| 43 | 43 |
| 44 if (use_ash) { | 44 if (use_ash) { |
| 45 source_patterns += [ "${root_gen_dir}/ash/common/strings/ash_strings_" ] | 45 source_patterns += [ "${root_gen_dir}/ash/strings/ash_strings_" ] |
| 46 deps += [ "//ash/common/strings" ] | 46 deps += [ "//ash/strings" ] |
| 47 } | 47 } |
| 48 if (is_chromeos) { | 48 if (is_chromeos) { |
| 49 source_patterns += [ | 49 source_patterns += [ |
| 50 "${root_gen_dir}/remoting/resources/", | 50 "${root_gen_dir}/remoting/resources/", |
| 51 "${root_gen_dir}/ui/chromeos/strings/ui_chromeos_strings_", | 51 "${root_gen_dir}/ui/chromeos/strings/ui_chromeos_strings_", |
| 52 ] | 52 ] |
| 53 deps += [ | 53 deps += [ |
| 54 "//remoting/resources", | 54 "//remoting/resources", |
| 55 "//ui/chromeos/strings", | 55 "//ui/chromeos/strings", |
| 56 ] | 56 ] |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 "//chrome/app:chromium_strings", | 95 "//chrome/app:chromium_strings", |
| 96 "//components/strings:components_chromium_strings", | 96 "//components/strings:components_chromium_strings", |
| 97 ] | 97 ] |
| 98 } | 98 } |
| 99 | 99 |
| 100 if (defined(invoker.additional_source_patterns)) { | 100 if (defined(invoker.additional_source_patterns)) { |
| 101 source_patterns += invoker.additional_source_patterns | 101 source_patterns += invoker.additional_source_patterns |
| 102 } | 102 } |
| 103 } | 103 } |
| 104 } | 104 } |
| OLD | NEW |