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

Side by Side Diff: chrome/BUILD.gn

Issue 921953002: Split apart the PPAPI GN targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix component Created 5 years, 10 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 | « BUILD.gn ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/locales.gni") 6 import("//build/config/locales.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//chrome/chrome_repack_locales.gni") 8 import("//chrome/chrome_repack_locales.gni")
9 import("//chrome/version.gni") 9 import("//chrome/version.gni")
10 10
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 } 245 }
246 246
247 # GYP version: chromium_browser_dependencies variable in chrome.gyp 247 # GYP version: chromium_browser_dependencies variable in chrome.gyp
248 group("browser_dependencies") { 248 group("browser_dependencies") {
249 deps = [ 249 deps = [
250 "//chrome/browser", 250 "//chrome/browser",
251 "//chrome/common", 251 "//chrome/common",
252 "//sync", 252 "//sync",
253 ] 253 ]
254 if (!is_ios) { 254 if (!is_ios) {
255 deps += [ "//ppapi:ppapi_host" ] 255 deps += [ "//ppapi/host" ]
256 } 256 }
257 257
258 if (enable_basic_printing || enable_print_preview) { 258 if (enable_basic_printing || enable_print_preview) {
259 deps += [ "//printing" ] 259 deps += [ "//printing" ]
260 if (enable_print_preview) { 260 if (enable_print_preview) {
261 deps += [ "//chrome/service" ] 261 deps += [ "//chrome/service" ]
262 } 262 }
263 } 263 }
264 } 264 }
265 265
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 "//chrome/browser/ui", 692 "//chrome/browser/ui",
693 "//chrome/child", 693 "//chrome/child",
694 "//chrome/plugin", 694 "//chrome/plugin",
695 "//chrome/renderer", 695 "//chrome/renderer",
696 "//chrome/utility", 696 "//chrome/utility",
697 "//components/enhanced_bookmarks", 697 "//components/enhanced_bookmarks",
698 "//content/public/app:browser", 698 "//content/public/app:browser",
699 ] 699 ]
700 } 700 }
701 } 701 }
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698