OLD | NEW |
1 # Copyright 2016 Google Inc. | 1 # Copyright 2016 Google Inc. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 declare_args() { | 6 declare_args() { |
7 } | 7 } |
8 | 8 |
9 skia_public_includes = [ | 9 skia_public_includes = [ |
10 "include/android", | 10 "include/android", |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 ] | 58 ] |
59 | 59 |
60 defines = [ | 60 defines = [ |
61 "SK_GAMMA_SRGB", | 61 "SK_GAMMA_SRGB", |
62 "SK_GAMMA_APPLY_TO_A8", | 62 "SK_GAMMA_APPLY_TO_A8", |
63 | 63 |
64 "SK_HAS_GIF_LIBRARY", | 64 "SK_HAS_GIF_LIBRARY", |
65 "SK_HAS_JPEG_LIBRARY", | 65 "SK_HAS_JPEG_LIBRARY", |
66 "SK_HAS_PNG_LIBRARY", | 66 "SK_HAS_PNG_LIBRARY", |
67 "SK_HAS_WEBP_LIBRARY", | 67 "SK_HAS_WEBP_LIBRARY", |
| 68 |
| 69 "TURBO_HAS_565", |
| 70 "TURBO_HAS_CROP", |
| 71 "TURBO_HAS_SKIP", |
68 ] | 72 ] |
69 } | 73 } |
70 | 74 |
71 # Any code that's linked into Skia-the-library should use this config via += ski
a_library_configs. | 75 # Any code that's linked into Skia-the-library should use this config via += ski
a_library_configs. |
72 config("skia_library") { | 76 config("skia_library") { |
73 visibility = [ ":*" ] | 77 visibility = [ ":*" ] |
74 defines = [ "SKIA_IMPLEMENTATION=1" ] | 78 defines = [ "SKIA_IMPLEMENTATION=1" ] |
75 } | 79 } |
76 | 80 |
77 skia_library_configs = [ | 81 skia_library_configs = [ |
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 ":flags", | 479 ":flags", |
476 ":gm", | 480 ":gm", |
477 ":gpu_tool_utils", | 481 ":gpu_tool_utils", |
478 ":skia", | 482 ":skia", |
479 ":tool_utils", | 483 ":tool_utils", |
480 "//third_party/jsoncpp", | 484 "//third_party/jsoncpp", |
481 ] | 485 ] |
482 testonly = true | 486 testonly = true |
483 } | 487 } |
484 } | 488 } |
OLD | NEW |