This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -1565,6 +1565,10 @@ if (skia_enable_tools) {
1565
1565
public_deps = [
1566
1566
" :gpu_tool_utils" ,
1567
1567
]
1568
+ if (skia_enable_skshaper ) {
1569
+ deps += [ " modules/skshaper" ]
1570
+ defines = [ " SK_USING_SKSHAPER" ]
1571
+ }
1568
1572
}
1569
1573
1570
1574
import (" gn/tests.gni" )
@@ -1590,6 +1594,10 @@ if (skia_enable_tools) {
1590
1594
public_deps = [
1591
1595
" :gpu_tool_utils" , # Test.h #includes headers from this target.
1592
1596
]
1597
+ if (skia_enable_skshaper ) {
1598
+ deps += [ " modules/skshaper" ]
1599
+ defines = [ " SK_USING_SKSHAPER" ]
1600
+ }
1593
1601
}
1594
1602
1595
1603
import (" gn/bench.gni" )
Original file line number Diff line number Diff line change 4
4
5
5
declare_args () {
6
6
skia_use_icu = ! is_fuchsia && ! is_ios
7
+ skia_enable_skshaper = true
7
8
}
Original file line number Diff line number Diff line change 3
3
# Use of this source code is governed by a BSD-style license that can be
4
4
# found in the LICENSE file.
5
5
6
- declare_args () {
7
- skia_enable_skshaper = true
8
- }
9
-
10
6
import (" ../../gn/skia.gni" )
11
7
12
8
config (" public_config" ) {
You can’t perform that action at this time.
0 commit comments