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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
6 import("//build/config/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") |
7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/locales.gni") | 9 import("//build/config/locales.gni") |
10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
(...skipping 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1166 group("chrome_dsym_archive") { | 1166 group("chrome_dsym_archive") { |
1167 } | 1167 } |
1168 } | 1168 } |
1169 } | 1169 } |
1170 | 1170 |
1171 # GYP version: chromium_browser_dependencies variable in chrome.gyp | 1171 # GYP version: chromium_browser_dependencies variable in chrome.gyp |
1172 group("browser_dependencies") { | 1172 group("browser_dependencies") { |
1173 public_deps = [ | 1173 public_deps = [ |
1174 "//chrome/browser", | 1174 "//chrome/browser", |
1175 "//chrome/common", | 1175 "//chrome/common", |
1176 "//sync", | 1176 "//components/sync", |
1177 ] | 1177 ] |
1178 if (enable_plugins) { | 1178 if (enable_plugins) { |
1179 public_deps += [ "//ppapi/host" ] | 1179 public_deps += [ "//ppapi/host" ] |
1180 } | 1180 } |
1181 | 1181 |
1182 if (enable_basic_printing || enable_print_preview) { | 1182 if (enable_basic_printing || enable_print_preview) { |
1183 public_deps += [ "//printing" ] | 1183 public_deps += [ "//printing" ] |
1184 if (enable_print_preview) { | 1184 if (enable_print_preview) { |
1185 public_deps += [ "//chrome/service" ] | 1185 public_deps += [ "//chrome/service" ] |
1186 } | 1186 } |
(...skipping 10 matching lines...) Expand all Loading... |
1197 # process, and then we can enable this. | 1197 # process, and then we can enable this. |
1198 #"//v8/*", | 1198 #"//v8/*", |
1199 ] | 1199 ] |
1200 } | 1200 } |
1201 } | 1201 } |
1202 | 1202 |
1203 # GYP version: chromium_child_dependencies variable in chrome.gyp | 1203 # GYP version: chromium_child_dependencies variable in chrome.gyp |
1204 group("child_dependencies") { | 1204 group("child_dependencies") { |
1205 public_deps = [ | 1205 public_deps = [ |
1206 "//chrome/common", | 1206 "//chrome/common", |
1207 "//sync", | 1207 "//components/sync", |
1208 ] | 1208 ] |
1209 if (!is_ios) { | 1209 if (!is_ios) { |
1210 public_deps += [ | 1210 public_deps += [ |
1211 "//chrome/browser/devtools", | 1211 "//chrome/browser/devtools", |
1212 "//chrome/child", | 1212 "//chrome/child", |
1213 "//chrome/gpu", | 1213 "//chrome/gpu", |
1214 "//chrome/renderer", | 1214 "//chrome/renderer", |
1215 "//chrome/utility", | 1215 "//chrome/utility", |
1216 "//content/public/child", | 1216 "//content/public/child", |
1217 "//third_party/WebKit/public:blink_devtools_frontend_resources", | 1217 "//third_party/WebKit/public:blink_devtools_frontend_resources", |
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1840 "//chrome/app/theme/$branding_path_component/product_logo_48.png", | 1840 "//chrome/app/theme/$branding_path_component/product_logo_48.png", |
1841 "//chrome/tools/build/linux/chrome-wrapper", | 1841 "//chrome/tools/build/linux/chrome-wrapper", |
1842 "//third_party/xdg-utils/scripts/xdg-mime", | 1842 "//third_party/xdg-utils/scripts/xdg-mime", |
1843 "//third_party/xdg-utils/scripts/xdg-settings", | 1843 "//third_party/xdg-utils/scripts/xdg-settings", |
1844 ] | 1844 ] |
1845 outputs = [ | 1845 outputs = [ |
1846 "$root_out_dir/{{source_file_part}}", | 1846 "$root_out_dir/{{source_file_part}}", |
1847 ] | 1847 ] |
1848 } | 1848 } |
1849 } | 1849 } |
OLD | NEW |