File tree Expand file tree Collapse file tree 5 files changed +10
-67
lines changed Expand file tree Collapse file tree 5 files changed +10
-67
lines changed Original file line number Diff line number Diff line change 1
1
[submodule "externals/skia "]
2
2
path = externals/skia
3
3
url = https://chromium.googlesource.com/skia/
4
- branch = chrome/m119
4
+ branch = chrome/m121
5
5
[submodule "externals/depot_tools "]
6
6
path = externals/depot_tools
7
7
url = https://chromium.googlesource.com/chromium/tools/depot_tools.git
Submodule
skia updated from 89907a0 to e8d7db9
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -190,13 +190,14 @@ try {
190
190
console . log ( "gclient sync done" ) ;
191
191
192
192
// lets check for any dependencies
193
- if ( platform . dependencies ) {
194
- console . log ( `Found dependencies for platform ${ SelectedPlatform } ` ) ;
195
- platform . dependencies . forEach ( ( dep ) => {
196
- console . log ( `Running dependency ${ dep . name } ` ) ;
197
- dep . executable ( ) ;
198
- } ) ;
199
- }
193
+ // TODO: to remove
194
+ // if (platform.dependencies) {
195
+ // console.log(`Found dependencies for platform ${SelectedPlatform}`);
196
+ // platform.dependencies.forEach((dep) => {
197
+ // console.log(`Running dependency ${dep.name}`);
198
+ // dep.executable();
199
+ // });
200
+ // }
200
201
201
202
try {
202
203
// Configure the platform
Original file line number Diff line number Diff line change 1
- import { buildLibGraphemeiOS } from "./build-libgrapheme-ios" ;
2
- import { executeCmdSync } from "./utils" ;
3
-
4
1
const NdkDir : string = process . env . ANDROID_NDK ?? "" ;
5
2
6
3
export const BUILD_WITH_PARAGRAPH = true ;
@@ -73,7 +70,6 @@ export type Platform = {
73
70
outputRoot : string ;
74
71
outputNames : string [ ] ;
75
72
options ?: Arg [ ] ;
76
- dependencies ?: { name : string ; executable : ( ) => void } [ ] ;
77
73
} ;
78
74
79
75
export const configurations : Configuration = {
@@ -164,11 +160,5 @@ export const configurations: Configuration = {
164
160
"libsksg.a" ,
165
161
...ParagraphOutputs ,
166
162
] ,
167
- dependencies : [
168
- {
169
- name : "libgrapheme" ,
170
- executable : buildLibGraphemeiOS ,
171
- } ,
172
- ] ,
173
163
} ,
174
164
} ;
You can’t perform that action at this time.
0 commit comments