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 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 "//third_party/skia/src/ports/SkRemotableFontMgr_win_dw.cpp", | 426 "//third_party/skia/src/ports/SkRemotableFontMgr_win_dw.cpp", |
427 "//third_party/skia/src/ports/SkScalerContext_win_dw.cpp", | 427 "//third_party/skia/src/ports/SkScalerContext_win_dw.cpp", |
428 "//third_party/skia/src/ports/SkScalerContext_win_dw.h", | 428 "//third_party/skia/src/ports/SkScalerContext_win_dw.h", |
429 "//third_party/skia/src/ports/SkTLS_win.cpp", | 429 "//third_party/skia/src/ports/SkTLS_win.cpp", |
430 "//third_party/skia/src/ports/SkTypeface_win_dw.cpp", | 430 "//third_party/skia/src/ports/SkTypeface_win_dw.cpp", |
431 "//third_party/skia/src/ports/SkTypeface_win_dw.h", | 431 "//third_party/skia/src/ports/SkTypeface_win_dw.h", |
432 ] | 432 ] |
433 } | 433 } |
434 if (!is_android) { | 434 if (!is_android) { |
435 sources -= [ | 435 sources -= [ |
436 "//third_party/skia/src/ports/SkFontConfigParser_android.cpp", | |
437 "//third_party/skia/src/ports/SkFontMgr_android.cpp", | 436 "//third_party/skia/src/ports/SkFontMgr_android.cpp", |
| 437 "//third_party/skia/src/ports/SkFontMgr_android_factory.cpp", |
| 438 "//third_party/skia/src/ports/SkFontMgr_android_parser.cpp", |
438 ] | 439 ] |
439 } | 440 } |
440 if (!is_mac && !is_ios) { | 441 if (!is_mac && !is_ios) { |
441 sources -= [ "//third_party/skia/src/ports/SkFontHost_mac.cpp" ] | 442 sources -= [ "//third_party/skia/src/ports/SkFontHost_mac.cpp" ] |
442 } | 443 } |
443 | 444 |
444 if (!is_linux) { | 445 if (!is_linux) { |
445 sources -= [ | 446 sources -= [ |
446 "//third_party/skia/src/fonts/SkFontMgr_fontconfig.cpp", | 447 "//third_party/skia/src/fonts/SkFontMgr_fontconfig.cpp", |
447 "//third_party/skia/src/ports/SkFontConfigInterface_direct.cpp", | 448 "//third_party/skia/src/ports/SkFontConfigInterface_direct.cpp", |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 sources = [ | 649 sources = [ |
649 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", | 650 "tools/filter_fuzz_stub/filter_fuzz_stub.cc", |
650 ] | 651 ] |
651 | 652 |
652 deps = [ | 653 deps = [ |
653 ":skia", | 654 ":skia", |
654 "//base", | 655 "//base", |
655 ] | 656 ] |
656 } | 657 } |
657 } | 658 } |
OLD | NEW |