| 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 import("//third_party/skia/gn/shared_sources.gni") | 8 import("//third_party/skia/gn/shared_sources.gni") |
| 9 | 9 |
| 10 if (current_cpu == "arm") { | 10 if (current_cpu == "arm") { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 "//third_party/skia/include/effects", | 41 "//third_party/skia/include/effects", |
| 42 "//third_party/skia/include/images", | 42 "//third_party/skia/include/images", |
| 43 "//third_party/skia/include/lazy", | 43 "//third_party/skia/include/lazy", |
| 44 "//third_party/skia/include/pathops", | 44 "//third_party/skia/include/pathops", |
| 45 "//third_party/skia/include/pdf", | 45 "//third_party/skia/include/pdf", |
| 46 "//third_party/skia/include/pipe", | 46 "//third_party/skia/include/pipe", |
| 47 "//third_party/skia/include/ports", | 47 "//third_party/skia/include/ports", |
| 48 "//third_party/skia/include/utils", | 48 "//third_party/skia/include/utils", |
| 49 ] | 49 ] |
| 50 | 50 |
| 51 defines = [ | 51 defines = [ "SK_IGNORE_DW_GRAY_FIX" ] |
| 52 "SK_IGNORE_DW_GRAY_FIX", | |
| 53 "SK_DECLARE_LEGACY_CREATE_FROM_FONTDATA", | |
| 54 ] | |
| 55 defines += skia_for_chromium_defines | 52 defines += skia_for_chromium_defines |
| 56 | 53 |
| 57 defines += [] | 54 defines += [] |
| 58 | 55 |
| 59 if (skia_build_no_opts) { | 56 if (skia_build_no_opts) { |
| 60 defines += [ "SK_BUILD_NO_OPTS" ] | 57 defines += [ "SK_BUILD_NO_OPTS" ] |
| 61 } | 58 } |
| 62 | 59 |
| 63 if (is_component_build) { | 60 if (is_component_build) { |
| 64 defines += [ | 61 defines += [ |
| (...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 | 714 |
| 718 deps = [ | 715 deps = [ |
| 719 ":skia", | 716 ":skia", |
| 720 "//base", | 717 "//base", |
| 721 "//base/test:test_support", | 718 "//base/test:test_support", |
| 722 "//build/config/sanitizers:deps", | 719 "//build/config/sanitizers:deps", |
| 723 "//build/win:default_exe_manifest", | 720 "//build/win:default_exe_manifest", |
| 724 ] | 721 ] |
| 725 } | 722 } |
| 726 } | 723 } |
| OLD | NEW |