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

Side by Side Diff: skia/BUILD.gn

Issue 866183002: Roll Chrome into Mojo. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 11 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 | « cc/test/animation_test_common.cc ('k') | skia/config/SkUserConfig.h » ('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 (cpu_arch == "arm") { 8 if (cpu_arch == "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 # Some files define WIN32_LEAN_AND_MEAN and we want to avoid a duplicate 515 # Some files define WIN32_LEAN_AND_MEAN and we want to avoid a duplicate
516 # definition warning. 516 # definition warning.
517 "//build/config/win:lean_and_mean", 517 "//build/config/win:lean_and_mean",
518 ] 518 ]
519 } 519 }
520 520
521 if (is_linux) { 521 if (is_linux) {
522 configs += [ 522 configs += [
523 "//build/config/linux:fontconfig", 523 "//build/config/linux:fontconfig",
524 "//build/config/linux:freetype2", 524 "//build/config/linux:freetype2",
525 "//build/config/linux:pangocairo",
526 ] 525 ]
526 if (use_pango) {
527 configs += [ "//build/config/linux:pangocairo" ]
528 }
527 deps += [ "//third_party/icu:icuuc" ] 529 deps += [ "//third_party/icu:icuuc" ]
528 } 530 }
529 531
530 if (is_android) { 532 if (is_android) {
531 set_sources_assignment_filter([]) 533 set_sources_assignment_filter([])
532 sources += [ "ext/platform_device_linux.cc" ] 534 sources += [ "ext/platform_device_linux.cc" ]
533 set_sources_assignment_filter(sources_assignment_filter) 535 set_sources_assignment_filter(sources_assignment_filter)
534 deps += [ 536 deps += [
535 "//third_party/expat", 537 "//third_party/expat",
536 "//third_party/freetype", 538 "//third_party/freetype",
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
724 726
725 deps = [ 727 deps = [
726 ":skia", 728 ":skia",
727 "//base", 729 "//base",
728 "//base/test:run_all_unittests", 730 "//base/test:run_all_unittests",
729 "//testing/gtest", 731 "//testing/gtest",
730 "//ui/gfx", 732 "//ui/gfx",
731 "//ui/gfx/geometry", 733 "//ui/gfx/geometry",
732 ] 734 ]
733 } 735 }
OLDNEW
« no previous file with comments | « cc/test/animation_test_common.cc ('k') | skia/config/SkUserConfig.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698