• Home
  • Raw
  • Download

Lines Matching +full:- +full:ithird_party

3 # Use of this source code is governed by a BSD-style license that can be
7 set -ex
11 if [[ ! -d $EMSDK ]]; then
24 mkdir -p $BUILD_DIR
26 BUILTIN_FONT="$BASE_DIR/fonts/NotoMono-Regular.ttf.cpp"
29 --name SK_EMBEDDED_FONTS \
30 --input $BASE_DIR/fonts/NotoMono-Regular.ttf \
31 --output $BASE_DIR/fonts/NotoMono-Regular.ttf.cpp \
32 --align 4
36 ./bin/fetch-gn
41 --args="cc=\"${EMCC}\" \
43 extra_cflags_cc=[\"-frtti\"] \
44 extra_cflags=[\"-s\",\"USE_FREETYPE=1\",\"-s\",\"USE_LIBPNG=1\", \"-s\", \"WARN_UNALIGNED=1\",
45 \"-DSKNX_NO_SIMD\", \"-DSK_DISABLE_AAA\", \"-DSK_DISABLE_DAA\"
81 ${NINJA} -C ${BUILD_DIR} libskia.a libdebugcanvas.a
83 export EMCC_CLOSURE_ARGS="--externs $BASE_DIR/externs.js "
91 --closure 1 \
92 -Iexperimental \
93 -Iinclude/c \
94 -Iinclude/codec \
95 -Iinclude/config \
96 -Iinclude/core \
97 -Iinclude/effects \
98 -Iinclude/gpu \
99 -Iinclude/gpu/gl \
100 -Iinclude/pathops \
101 -Iinclude/private \
102 -Iinclude/utils/ \
103 -Isrc/core/ \
104 -Isrc/gpu/ \
105 -Isrc/sfnt/ \
106 -Isrc/shaders/ \
107 -Isrc/utils/ \
108 -Ithird_party/icu \
109 -Itools \
110 -Itools/debugger \
111 -DSK_DISABLE_AAA \
112 -DSK_DISABLE_DAA \
113 -std=c++14 \
114 --pre-js $BASE_DIR/cpu.js \
115 --post-js $BASE_DIR/ready.js \
116 --bind \
117 $BASE_DIR/fonts/NotoMono-Regular.ttf.cpp \
121 -s ALLOW_MEMORY_GROWTH=1 \
122 -s EXPORT_NAME="DebuggerInit" \
123 -s FORCE_FILESYSTEM=0 \
124 -s MODULARIZE=1 \
125 -s NO_EXIT_RUNTIME=1 \
126 -s STRICT=1 \
127 -s TOTAL_MEMORY=128MB \
128 -s USE_FREETYPE=1 \
129 -s USE_LIBPNG=1 \
130 -s WARN_UNALIGNED=1 \
131 -s WASM=1 \
132 -o $BUILD_DIR/debugger.js