| 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 if (cpu_arch == "arm") { | 7 if (cpu_arch == "arm") { |
| 8 import("//build/config/arm.gni") | 8 import("//build/config/arm.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 "//third_party/skia/src/ports/SkScalerContext_win_dw.h", | 431 "//third_party/skia/src/ports/SkScalerContext_win_dw.h", |
| 432 "//third_party/skia/src/ports/SkTLS_win.cpp", | 432 "//third_party/skia/src/ports/SkTLS_win.cpp", |
| 433 "//third_party/skia/src/ports/SkTypeface_win_dw.cpp", | 433 "//third_party/skia/src/ports/SkTypeface_win_dw.cpp", |
| 434 "//third_party/skia/src/ports/SkTypeface_win_dw.h", | 434 "//third_party/skia/src/ports/SkTypeface_win_dw.h", |
| 435 ] | 435 ] |
| 436 } | 436 } |
| 437 if (!is_android) { | 437 if (!is_android) { |
| 438 sources -= [ | 438 sources -= [ |
| 439 "//third_party/skia/src/ports/SkFontConfigInterface_android.cpp", | 439 "//third_party/skia/src/ports/SkFontConfigInterface_android.cpp", |
| 440 "//third_party/skia/src/ports/SkFontConfigParser_android.cpp", | 440 "//third_party/skia/src/ports/SkFontConfigParser_android.cpp", |
| 441 "//third_party/skia/src/ports/SkFontMgr_android.cpp", |
| 441 ] | 442 ] |
| 442 } | 443 } |
| 443 if (!is_mac) { | 444 if (!is_mac) { |
| 444 sources -= [ | 445 sources -= [ |
| 445 "//third_party/skia/src/ports/SkFontHost_mac.cpp", | 446 "//third_party/skia/src/ports/SkFontHost_mac.cpp", |
| 446 ] | 447 ] |
| 447 } | 448 } |
| 448 | 449 |
| 449 if (!is_linux) { | 450 if (!is_linux) { |
| 450 sources -= [ | 451 sources -= [ |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 ":skia_config", | 692 ":skia_config", |
| 692 "//build/config/compiler:no_chromium_code" | 693 "//build/config/compiler:no_chromium_code" |
| 693 ] | 694 ] |
| 694 | 695 |
| 695 deps = [ | 696 deps = [ |
| 696 "//base", | 697 "//base", |
| 697 ] | 698 ] |
| 698 | 699 |
| 699 visibility = ":skia" | 700 visibility = ":skia" |
| 700 } | 701 } |
| OLD | NEW |