| 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("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//printing/features/features.gni") | 8 import("//printing/features/features.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//third_party/skia/gn/shared_sources.gni") | 10 import("//third_party/skia/gn/shared_sources.gni") |
| (...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 | 356 |
| 357 # Retain the files for the SkFontMgr_Android on linux to emulate android | 357 # Retain the files for the SkFontMgr_Android on linux to emulate android |
| 358 # fonts. See content/zygote/zygote_main_linux.cc | 358 # fonts. See content/zygote/zygote_main_linux.cc |
| 359 "//third_party/skia/src/ports/SkFontMgr_android.cpp", | 359 "//third_party/skia/src/ports/SkFontMgr_android.cpp", |
| 360 "//third_party/skia/src/ports/SkFontMgr_android_parser.cpp", | 360 "//third_party/skia/src/ports/SkFontMgr_android_parser.cpp", |
| 361 ] | 361 ] |
| 362 } | 362 } |
| 363 | 363 |
| 364 # Select the right BitmapPlatformDevice. | 364 # Select the right BitmapPlatformDevice. |
| 365 if (is_win) { | 365 if (is_win) { |
| 366 sources += [ "ext/bitmap_platform_device_win.cc" ] | 366 sources += [ "ext/raster_handle_allocator_win.cc" ] |
| 367 } | 367 } |
| 368 | 368 |
| 369 if (is_clang && !is_nacl) { | 369 if (is_clang && !is_nacl) { |
| 370 # Skia won't compile with some of the more strict clang warnings. | 370 # Skia won't compile with some of the more strict clang warnings. |
| 371 # e.g. it does: | 371 # e.g. it does: |
| 372 # SkASSERT(!"sk_out_of_memory"); | 372 # SkASSERT(!"sk_out_of_memory"); |
| 373 configs -= [ "//build/config/clang:extra_warnings" ] | 373 configs -= [ "//build/config/clang:extra_warnings" ] |
| 374 } | 374 } |
| 375 | 375 |
| 376 configs -= [ "//build/config/compiler:chromium_code" ] | 376 configs -= [ "//build/config/compiler:chromium_code" ] |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 | 695 |
| 696 deps = [ | 696 deps = [ |
| 697 ":skia", | 697 ":skia", |
| 698 "//base", | 698 "//base", |
| 699 "//base/test:test_support", | 699 "//base/test:test_support", |
| 700 "//build/config/sanitizers:deps", | 700 "//build/config/sanitizers:deps", |
| 701 "//build/win:default_exe_manifest", | 701 "//build/win:default_exe_manifest", |
| 702 ] | 702 ] |
| 703 } | 703 } |
| 704 } | 704 } |
| OLD | NEW |