OLD | NEW |
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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 public_configs = [ ":skia_config" ] | 451 public_configs = [ ":skia_config" ] |
452 | 452 |
453 deps = [ | 453 deps = [ |
454 ":skia_opts", | 454 ":skia_opts", |
455 "//base", | 455 "//base", |
456 "//base/third_party/dynamic_annotations", | 456 "//base/third_party/dynamic_annotations", |
457 "//third_party/zlib", | 457 "//third_party/zlib", |
458 ] | 458 ] |
459 | 459 |
460 if (is_linux) { | 460 if (is_linux) { |
461 configs += [ "//build/config/linux:freetype2" ] | |
462 | |
463 if (use_pango) { | 461 if (use_pango) { |
464 configs += [ "//build/config/linux:pangocairo" ] | 462 configs += [ "//build/config/linux:pangocairo" ] |
465 } | 463 } |
466 deps += [ | 464 deps += [ |
467 "//build/linux:fontconfig", | 465 "//build/linux:fontconfig", |
| 466 "//build/linux:freetype2", |
468 "//third_party/icu:icuuc", | 467 "//third_party/icu:icuuc", |
469 ] | 468 ] |
470 } | 469 } |
471 | 470 |
472 if (is_android) { | 471 if (is_android) { |
473 set_sources_assignment_filter([]) | 472 set_sources_assignment_filter([]) |
474 sources += [ "ext/platform_device_linux.cc" ] | 473 sources += [ "ext/platform_device_linux.cc" ] |
475 set_sources_assignment_filter(sources_assignment_filter) | 474 set_sources_assignment_filter(sources_assignment_filter) |
476 deps += [ | 475 deps += [ |
477 "//third_party/android_tools:cpu_features", | 476 "//third_party/android_tools:cpu_features", |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
719 ] | 718 ] |
720 | 719 |
721 deps = [ | 720 deps = [ |
722 ":skia", | 721 ":skia", |
723 "//base", | 722 "//base", |
724 "//base/test:test_support", | 723 "//base/test:test_support", |
725 "//build/config/sanitizers:deps", | 724 "//build/config/sanitizers:deps", |
726 ] | 725 ] |
727 } | 726 } |
728 } | 727 } |
OLD | NEW |