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

Side by Side Diff: skia/BUILD.gn

Issue 595073002: Replace forward_dependent_configs with public_deps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « sdch/BUILD.gn ('k') | sync/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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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/ui.gni") 6 import("//build/config/ui.gni")
7 if (cpu_arch == "arm") { 7 if (cpu_arch == "arm") {
8 import("//build/config/arm.gni") 8 import("//build/config/arm.gni")
9 } 9 }
10 10
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 # e.g. it does: 501 # e.g. it does:
502 # SkASSERT(!"sk_out_of_memory"); 502 # SkASSERT(!"sk_out_of_memory");
503 configs -= [ "//build/config/clang:extra_warnings" ] 503 configs -= [ "//build/config/clang:extra_warnings" ]
504 } 504 }
505 505
506 configs -= [ "//build/config/compiler:chromium_code" ] 506 configs -= [ "//build/config/compiler:chromium_code" ]
507 configs += [ 507 configs += [
508 ":skia_library_config", 508 ":skia_library_config",
509 "//build/config/compiler:no_chromium_code" 509 "//build/config/compiler:no_chromium_code"
510 ] 510 ]
511 direct_dependent_configs = [ ":skia_config" ] 511 public_configs = [ ":skia_config" ]
512 512
513 deps = [ 513 deps = [
514 ":skia_opts", 514 ":skia_opts",
515 "//base", 515 "//base",
516 "//base/third_party/dynamic_annotations", 516 "//base/third_party/dynamic_annotations",
517 "//third_party/zlib", 517 "//third_party/zlib",
518 ] 518 ]
519 519
520 if (is_win) { 520 if (is_win) {
521 configs -= [ 521 configs -= [
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 ":skia_library_config", 705 ":skia_library_config",
706 "//build/config/compiler:no_chromium_code" 706 "//build/config/compiler:no_chromium_code"
707 ] 707 ]
708 708
709 deps = [ 709 deps = [
710 "//base", 710 "//base",
711 ] 711 ]
712 712
713 visibility = [ ":skia" ] 713 visibility = [ ":skia" ]
714 } 714 }
OLDNEW
« no previous file with comments | « sdch/BUILD.gn ('k') | sync/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698