Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(391)

Side by Side Diff: chrome/BUILD.gn

Issue 1377213003: [MD settings] moving settings strings to a separate grd file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixing gn build Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/app/BUILD.gn » ('j') | chrome/app/BUILD.gn » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/locales.gni") 7 import("//build/config/locales.gni")
8 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//build/config/win/manifest.gni") 10 import("//build/config/win/manifest.gni")
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 "//chrome/installer/util", 146 "//chrome/installer/util",
147 "//chrome_elf", 147 "//chrome_elf",
148 "//components/browser_watcher:browser_watcher_client", 148 "//components/browser_watcher:browser_watcher_client",
149 "//components/crash/content/app", 149 "//components/crash/content/app",
150 "//components/crash/core/common", 150 "//components/crash/core/common",
151 "//content:startup_helper_win", 151 "//content:startup_helper_win",
152 "//crypto", 152 "//crypto",
153 "//sandbox", 153 "//sandbox",
154 "//ui/gfx", 154 "//ui/gfx",
155 ] 155 ]
156 data_deps = [ "//chrome/app/version_assembly:version_assembly_manifest" ] 156 data_deps = [
157 "//chrome/app/version_assembly:version_assembly_manifest",
158 ]
157 159
158 libs = [ 160 libs = [
159 "wintrust.lib", 161 "wintrust.lib",
160 "crypt32.lib", 162 "crypt32.lib",
161 ] 163 ]
162 if (!is_asan) { 164 if (!is_asan) {
163 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself, except for the 165 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself, except for the
164 # AddressSanitizer build where console output is important. 166 # AddressSanitizer build where console output is important.
165 configs -= [ "//build/config/win:console" ] 167 configs -= [ "//build/config/win:console" ]
166 configs += [ "//build/config/win:windowed" ] 168 configs += [ "//build/config/win:windowed" ]
(...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
863 } 865 }
864 } 866 }
865 } 867 }
866 868
867 # GYP version: chrome/chrome_resources.gyp:chrome_strings 869 # GYP version: chrome/chrome_resources.gyp:chrome_strings
868 group("strings") { 870 group("strings") {
869 deps = [ 871 deps = [
870 "//chrome/app:chromium_strings", 872 "//chrome/app:chromium_strings",
871 "//chrome/app:generated_resources", 873 "//chrome/app:generated_resources",
872 "//chrome/app:google_chrome_strings", 874 "//chrome/app:google_chrome_strings",
875 "//chrome/app:settings_strings",
873 "//chrome/app/resources:locale_settings", 876 "//chrome/app/resources:locale_settings",
874 ] 877 ]
875 } 878 }
876 879
877 if (is_android) { 880 if (is_android) {
878 # GYP: //chrome/chrome.gyp:content_setting_java 881 # GYP: //chrome/chrome.gyp:content_setting_java
879 java_cpp_enum("content_setting_javagen") { 882 java_cpp_enum("content_setting_javagen") {
880 sources = [ 883 sources = [
881 "../components/content_settings/core/common/content_settings.h", 884 "../components/content_settings/core/common/content_settings.h",
882 ] 885 ]
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
1012 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1015 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1013 "//chrome/tools/build/linux/chrome-wrapper", 1016 "//chrome/tools/build/linux/chrome-wrapper",
1014 "//third_party/xdg-utils/scripts/xdg-mime", 1017 "//third_party/xdg-utils/scripts/xdg-mime",
1015 "//third_party/xdg-utils/scripts/xdg-settings", 1018 "//third_party/xdg-utils/scripts/xdg-settings",
1016 ] 1019 ]
1017 outputs = [ 1020 outputs = [
1018 "$root_out_dir/{{source_file_part}}", 1021 "$root_out_dir/{{source_file_part}}",
1019 ] 1022 ]
1020 } 1023 }
1021 } 1024 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/BUILD.gn » ('j') | chrome/app/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698