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

Side by Side Diff: chrome/BUILD.gn

Issue 1478633002: Removing references to //ppapi when is_android = true (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: make assert android-only Created 5 years 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/common/BUILD.gn » ('j') | components/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/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/locales.gni") 8 import("//build/config/locales.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
455 } 455 }
456 } 456 }
457 457
458 # GYP version: chromium_browser_dependencies variable in chrome.gyp 458 # GYP version: chromium_browser_dependencies variable in chrome.gyp
459 group("browser_dependencies") { 459 group("browser_dependencies") {
460 public_deps = [ 460 public_deps = [
461 "//chrome/browser", 461 "//chrome/browser",
462 "//chrome/common", 462 "//chrome/common",
463 "//sync", 463 "//sync",
464 ] 464 ]
465 if (!is_ios) { 465 if (enable_plugins) {
466 public_deps += [ "//ppapi/host" ] 466 public_deps += [ "//ppapi/host" ]
467 } 467 }
468 468
469 if (enable_basic_printing || enable_print_preview) { 469 if (enable_basic_printing || enable_print_preview) {
470 public_deps += [ "//printing" ] 470 public_deps += [ "//printing" ]
471 if (enable_print_preview) { 471 if (enable_print_preview) {
472 public_deps += [ "//chrome/service" ] 472 public_deps += [ "//chrome/service" ]
473 } 473 }
474 } 474 }
475 } 475 }
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
1071 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1071 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1072 "//chrome/tools/build/linux/chrome-wrapper", 1072 "//chrome/tools/build/linux/chrome-wrapper",
1073 "//third_party/xdg-utils/scripts/xdg-mime", 1073 "//third_party/xdg-utils/scripts/xdg-mime",
1074 "//third_party/xdg-utils/scripts/xdg-settings", 1074 "//third_party/xdg-utils/scripts/xdg-settings",
1075 ] 1075 ]
1076 outputs = [ 1076 outputs = [
1077 "$root_out_dir/{{source_file_part}}", 1077 "$root_out_dir/{{source_file_part}}",
1078 ] 1078 ]
1079 } 1079 }
1080 } 1080 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/BUILD.gn » ('j') | components/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698