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

Side by Side Diff: skia/BUILD.gn

Issue 2118563002: Revert of [Mac/GN] Explicitly link ApplicationServices wherever CoreGraphics is linked. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « media/capture/BUILD.gn ('k') | ui/accelerated_widget_mac/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 import("//testing/test.gni") 7 import("//testing/test.gni")
8 if (current_cpu == "arm") { 8 if (current_cpu == "arm") {
9 import("//build/config/arm.gni") 9 import("//build/config/arm.gni")
10 } 10 }
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 } 515 }
516 516
517 if (is_android && !is_debug) { 517 if (is_android && !is_debug) {
518 configs -= [ "//build/config/compiler:default_optimization" ] 518 configs -= [ "//build/config/compiler:default_optimization" ]
519 configs += [ "//build/config/compiler:optimize_max" ] 519 configs += [ "//build/config/compiler:optimize_max" ]
520 } 520 }
521 521
522 if (is_mac) { 522 if (is_mac) {
523 libs = [ 523 libs = [
524 "AppKit.framework", 524 "AppKit.framework",
525 "ApplicationServices.framework", # Temporary hack around https://crbug.co m/620127. Remove after https://crbug.com/622481 is fixed.
526 "CoreFoundation.framework", 525 "CoreFoundation.framework",
527 "CoreGraphics.framework", 526 "CoreGraphics.framework",
528 "CoreText.framework", 527 "CoreText.framework",
529 "Foundation.framework", 528 "Foundation.framework",
530 ] 529 ]
531 } 530 }
532 531
533 if (is_ios) { 532 if (is_ios) {
534 libs = [ "ImageIO.framework" ] 533 libs = [ "ImageIO.framework" ]
535 set_sources_assignment_filter([]) 534 set_sources_assignment_filter([])
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
761 760
762 deps = [ 761 deps = [
763 ":skia", 762 ":skia",
764 "//base", 763 "//base",
765 "//base/test:test_support", 764 "//base/test:test_support",
766 "//build/config/sanitizers:deps", 765 "//build/config/sanitizers:deps",
767 "//build/win:default_exe_manifest", 766 "//build/win:default_exe_manifest",
768 ] 767 ]
769 } 768 }
770 } 769 }
OLDNEW
« no previous file with comments | « media/capture/BUILD.gn ('k') | ui/accelerated_widget_mac/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698