| 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 # GYP version: chrome/chrome_resources.gyp:chrome_ui_string_overrider_factory | |
| 8 generate_ui_string_overrider("chrome_ui_string_overrider_factory") { | 7 generate_ui_string_overrider("chrome_ui_string_overrider_factory") { |
| 9 inputs = [ | 8 inputs = [ |
| 10 "$root_gen_dir/chrome/grit/chromium_strings.h", | 9 "$root_gen_dir/chrome/grit/chromium_strings.h", |
| 11 "$root_gen_dir/chrome/grit/generated_resources.h", | 10 "$root_gen_dir/chrome/grit/generated_resources.h", |
| 12 "$root_gen_dir/chrome/grit/google_chrome_strings.h", | 11 "$root_gen_dir/chrome/grit/google_chrome_strings.h", |
| 13 "$root_gen_dir/components/strings/grit/components_chromium_strings.h", | 12 "$root_gen_dir/components/strings/grit/components_chromium_strings.h", |
| 14 "$root_gen_dir/components/strings/grit/components_google_chrome_strings.h", | 13 "$root_gen_dir/components/strings/grit/components_google_chrome_strings.h", |
| 15 "$root_gen_dir/components/strings/grit/components_strings.h", | 14 "$root_gen_dir/components/strings/grit/components_strings.h", |
| 16 ] | 15 ] |
| 17 deps = [ | 16 deps = [ |
| 18 "//chrome/app:chromium_strings", | 17 "//chrome/app:chromium_strings", |
| 19 "//chrome/app:generated_resources", | 18 "//chrome/app:generated_resources", |
| 20 "//chrome/app:google_chrome_strings", | 19 "//chrome/app:google_chrome_strings", |
| 21 "//components/strings:components_chromium_strings", | 20 "//components/strings:components_chromium_strings", |
| 22 "//components/strings:components_google_chrome_strings", | 21 "//components/strings:components_google_chrome_strings", |
| 23 "//components/strings:components_strings", | 22 "//components/strings:components_strings", |
| 24 ] | 23 ] |
| 25 namespace = "chrome_variations" | 24 namespace = "chrome_variations" |
| 26 header_filename = "ui_string_overrider_factory.h" | 25 header_filename = "ui_string_overrider_factory.h" |
| 27 source_filename = "ui_string_overrider_factory.cc" | 26 source_filename = "ui_string_overrider_factory.cc" |
| 28 } | 27 } |
| OLD | NEW |