| 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 23 matching lines...) Expand all Loading... |
| 34 "//third_party/skia/include/effects", | 34 "//third_party/skia/include/effects", |
| 35 "//third_party/skia/include/images", | 35 "//third_party/skia/include/images", |
| 36 "//third_party/skia/include/lazy", | 36 "//third_party/skia/include/lazy", |
| 37 "//third_party/skia/include/pathops", | 37 "//third_party/skia/include/pathops", |
| 38 "//third_party/skia/include/pdf", | 38 "//third_party/skia/include/pdf", |
| 39 "//third_party/skia/include/pipe", | 39 "//third_party/skia/include/pipe", |
| 40 "//third_party/skia/include/ports", | 40 "//third_party/skia/include/ports", |
| 41 "//third_party/skia/include/utils", | 41 "//third_party/skia/include/utils", |
| 42 ] | 42 ] |
| 43 | 43 |
| 44 defines = [ | 44 defines = [ "SK_IGNORE_DIRECTWRITE_GASP_FIX" ] |
| 45 "SK_IGNORE_DW_GRAY_FIX", | |
| 46 "SK_IGNORE_DIRECTWRITE_GASP_FIX", | |
| 47 ] | |
| 48 defines += skia_for_chromium_defines | 45 defines += skia_for_chromium_defines |
| 49 | 46 |
| 50 defines += [] | 47 defines += [] |
| 51 | 48 |
| 52 if (is_component_build) { | 49 if (is_component_build) { |
| 53 defines += [ | 50 defines += [ |
| 54 "SKIA_DLL", | 51 "SKIA_DLL", |
| 55 "GR_GL_IGNORE_ES3_MSAA=0", | 52 "GR_GL_IGNORE_ES3_MSAA=0", |
| 56 ] | 53 ] |
| 57 } | 54 } |
| (...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 | 670 |
| 674 deps = [ | 671 deps = [ |
| 675 ":skia", | 672 ":skia", |
| 676 "//base", | 673 "//base", |
| 677 "//base/test:test_support", | 674 "//base/test:test_support", |
| 678 "//build/config/sanitizers:deps", | 675 "//build/config/sanitizers:deps", |
| 679 "//build/win:default_exe_manifest", | 676 "//build/win:default_exe_manifest", |
| 680 ] | 677 ] |
| 681 } | 678 } |
| 682 } | 679 } |
| OLD | NEW |