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

Side by Side Diff: skia/BUILD.gn

Issue 1155743013: Move third_party/freetype DEPS to third_party/freetype-android/src (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix gyp build. Created 5 years, 6 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
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 510 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 } 521 }
522 deps += [ "//third_party/icu:icuuc" ] 522 deps += [ "//third_party/icu:icuuc" ]
523 } 523 }
524 524
525 if (is_android) { 525 if (is_android) {
526 set_sources_assignment_filter([]) 526 set_sources_assignment_filter([])
527 sources += [ "ext/platform_device_linux.cc" ] 527 sources += [ "ext/platform_device_linux.cc" ]
528 set_sources_assignment_filter(sources_assignment_filter) 528 set_sources_assignment_filter(sources_assignment_filter)
529 deps += [ 529 deps += [
530 "//third_party/expat", 530 "//third_party/expat",
531 "//third_party/freetype", 531 "//third_party/freetype-android:freetype",
532 "//third_party/android_tools:cpu_features", 532 "//third_party/android_tools:cpu_features",
533 ] 533 ]
534 } 534 }
535 535
536 if (skia_support_pdf) { 536 if (skia_support_pdf) {
537 deps += [ "//third_party/sfntly" ] 537 deps += [ "//third_party/sfntly" ]
538 sources += gypi_skia_pdf.sources 538 sources += gypi_skia_pdf.sources
539 } 539 }
540 540
541 if (is_android && !is_debug) { 541 if (is_android && !is_debug) {
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
669 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", 669 "tools/filter_fuzz_stub/filter_fuzz_stub.cc",
670 ] 670 ]
671 671
672 deps = [ 672 deps = [
673 ":skia", 673 ":skia",
674 "//base", 674 "//base",
675 "//base/test:test_support", 675 "//base/test:test_support",
676 ] 676 ]
677 } 677 }
678 } 678 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698