Skip to content

Commit 2bd965b

Browse files
committed
⬆️
1 parent 4d06877 commit 2bd965b

File tree

5 files changed

+10
-67
lines changed

5 files changed

+10
-67
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[submodule "externals/skia"]
22
path = externals/skia
33
url = https://chromium.googlesource.com/skia/
4-
branch = chrome/m119
4+
branch = chrome/m121
55
[submodule "externals/depot_tools"]
66
path = externals/depot_tools
77
url = https://chromium.googlesource.com/chromium/tools/depot_tools.git

externals/skia

Submodule skia updated from 89907a0 to e8d7db9

scripts/build-libgrapheme-ios.ts

Lines changed: 0 additions & 48 deletions
This file was deleted.

scripts/build-skia.ts

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -190,13 +190,14 @@ try {
190190
console.log("gclient sync done");
191191

192192
// 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+
// }
200201

201202
try {
202203
// Configure the platform

scripts/skia-configuration.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
import { buildLibGraphemeiOS } from "./build-libgrapheme-ios";
2-
import { executeCmdSync } from "./utils";
3-
41
const NdkDir: string = process.env.ANDROID_NDK ?? "";
52

63
export const BUILD_WITH_PARAGRAPH = true;
@@ -73,7 +70,6 @@ export type Platform = {
7370
outputRoot: string;
7471
outputNames: string[];
7572
options?: Arg[];
76-
dependencies?: { name: string; executable: () => void }[];
7773
};
7874

7975
export const configurations: Configuration = {
@@ -164,11 +160,5 @@ export const configurations: Configuration = {
164160
"libsksg.a",
165161
...ParagraphOutputs,
166162
],
167-
dependencies: [
168-
{
169-
name: "libgrapheme",
170-
executable: buildLibGraphemeiOS,
171-
},
172-
],
173163
},
174164
};

0 commit comments

Comments
 (0)