| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//components/variations/service/generate_ui_string_overrider.gni") | 5 import("//components/variations/service/generate_ui_string_overrider.gni") |
| 6 | 6 |
| 7 source_set("variations") { |
| 8 sources = [ |
| 9 "ios_chrome_variations_service_client.cc", |
| 10 "ios_chrome_variations_service_client.h", |
| 11 ] |
| 12 deps = [ |
| 13 "//base", |
| 14 "//components/variations/service", |
| 15 "//components/version_info", |
| 16 "//ios/chrome/browser:browser_no_public_deps", |
| 17 "//ios/chrome/common", |
| 18 "//ios/web", |
| 19 ] |
| 20 } |
| 21 |
| 7 generate_ui_string_overrider("ios_chrome_ui_string_overrider_factory") { | 22 generate_ui_string_overrider("ios_chrome_ui_string_overrider_factory") { |
| 8 inputs = [ | 23 inputs = [ |
| 9 "$root_gen_dir/components/strings/grit/components_chromium_strings.h", | 24 "$root_gen_dir/components/strings/grit/components_chromium_strings.h", |
| 10 "$root_gen_dir/components/strings/grit/components_google_chrome_strings.h", | 25 "$root_gen_dir/components/strings/grit/components_google_chrome_strings.h", |
| 11 "$root_gen_dir/components/strings/grit/components_locale_settings.h", | 26 "$root_gen_dir/components/strings/grit/components_locale_settings.h", |
| 12 "$root_gen_dir/components/strings/grit/components_strings.h", | 27 "$root_gen_dir/components/strings/grit/components_strings.h", |
| 13 "$root_gen_dir/ios/chrome/grit/ios_chromium_strings.h", | 28 "$root_gen_dir/ios/chrome/grit/ios_chromium_strings.h", |
| 14 "$root_gen_dir/ios/chrome/grit/ios_google_chrome_strings.h", | 29 "$root_gen_dir/ios/chrome/grit/ios_google_chrome_strings.h", |
| 15 "$root_gen_dir/ios/chrome/grit/ios_strings.h", | 30 "$root_gen_dir/ios/chrome/grit/ios_strings.h", |
| 16 ] | 31 ] |
| 17 deps = [ | 32 deps = [ |
| 18 "//components/strings:components_chromium_strings", | 33 "//components/strings:components_chromium_strings", |
| 19 "//components/strings:components_google_chrome_strings", | 34 "//components/strings:components_google_chrome_strings", |
| 20 "//components/strings:components_locale_settings", | 35 "//components/strings:components_locale_settings", |
| 21 "//components/strings:components_strings", | 36 "//components/strings:components_strings", |
| 22 "//ios/chrome/app/strings:ios_chromium_strings", | 37 "//ios/chrome/app/strings:ios_chromium_strings", |
| 23 "//ios/chrome/app/strings:ios_google_chrome_strings", | 38 "//ios/chrome/app/strings:ios_google_chrome_strings", |
| 24 "//ios/chrome/app/strings:ios_strings", | 39 "//ios/chrome/app/strings:ios_strings", |
| 25 ] | 40 ] |
| 26 namespace = "" # Put the functions in the global namespace on iOS. | 41 namespace = "" # Put the functions in the global namespace on iOS. |
| 27 header_filename = "ios_ui_string_overrider_factory.h" | 42 header_filename = "ios_ui_string_overrider_factory.h" |
| 28 source_filename = "ios_ui_string_overrider_factory.cc" | 43 source_filename = "ios_ui_string_overrider_factory.cc" |
| 29 } | 44 } |
| OLD | NEW |