Reland the ULONG -> SIZE_T change from 317177
[chromium-blink-merge.git] / skia / BUILD.gn
blob69940ae470436028e8a081702d6f33771bfe2509
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 import("//build/config/features.gni")
6 import("//build/config/ui.gni")
7 import("//testing/test.gni")
8 if (current_cpu == "arm") {
9   import("//build/config/arm.gni")
12 skia_support_gpu = !is_ios
13 skia_support_pdf = !is_ios && (enable_basic_printing || enable_print_preview)
15 # The list of Skia defines that are to be set for blink.
16 gypi_blink_skia_defines =
17     exec_script("//build/gypi_to_gn.py",
18                 [
19                   rebase_path(
20                       "//third_party/WebKit/public/blink_skia_config.gypi"),
21                   "--replace=<(skia_include_path)=//third_party/skia/include",
22                   "--replace=<(skia_src_path)=//third_party/skia/src",
23                 ],
24                 "scope",
25                 [ "//third_party/WebKit/public/blink_skia_config.gypi" ])
27 # The list of Skia defines that are to be set for chromium.
28 gypi_skia_defines =
29     exec_script("//build/gypi_to_gn.py",
30                 [
31                   rebase_path(
32                       "//third_party/skia/gyp/skia_for_chromium_defines.gypi"),
33                   "--replace=<(skia_include_path)=//third_party/skia/include",
34                   "--replace=<(skia_src_path)=//third_party/skia/src",
35                 ],
36                 "scope",
37                 [ "//third_party/skia/gyp/skia_for_chromium_defines.gypi" ])
39 # The list of Skia core sources that are to be set for chromium.
40 gypi_skia_core =
41     exec_script("//build/gypi_to_gn.py",
42                 [
43                   rebase_path("//third_party/skia/gyp/core.gypi"),
44                   "--replace=<(skia_include_path)=//third_party/skia/include",
45                   "--replace=<(skia_src_path)=//third_party/skia/src",
46                 ],
47                 "scope",
48                 [ "//third_party/skia/gyp/core.gypi" ])
50 # The list of Skia gpu sources that are to be set for chromium.
51 gypi_skia_gpu =
52     exec_script("//build/gypi_to_gn.py",
53                 [
54                   rebase_path("//third_party/skia/gyp/gpu.gypi"),
55                   "--replace=<(skia_include_path)=//third_party/skia/include",
56                   "--replace=<(skia_src_path)=//third_party/skia/src",
57                 ],
58                 "scope",
59                 [ "//third_party/skia/gyp/gpu.gypi" ])
61 # The list of Skia pdf sources that are to be set for chromium.
62 gypi_skia_pdf =
63     exec_script("//build/gypi_to_gn.py",
64                 [
65                   rebase_path("//third_party/skia/gyp/pdf.gypi"),
66                   "--replace=<(skia_include_path)=//third_party/skia/include",
67                   "--replace=<(skia_src_path)=//third_party/skia/src",
68                 ],
69                 "scope",
70                 [ "//third_party/skia/gyp/pdf.gypi" ])
72 # The list of Skia effects that are to be set for chromium.
73 gypi_skia_effects =
74     exec_script("//build/gypi_to_gn.py",
75                 [
76                   rebase_path("//third_party/skia/gyp/effects.gypi"),
77                   "--replace=<(skia_include_path)=//third_party/skia/include",
78                   "--replace=<(skia_src_path)=//third_party/skia/src",
79                 ],
80                 "scope",
81                 [ "//third_party/skia/gyp/effects.gypi" ])
83 # The list of Skia utils that are to be set for chromium.
84 gypi_skia_utils =
85     exec_script("//build/gypi_to_gn.py",
86                 [
87                   rebase_path("//third_party/skia/gyp/utils.gypi"),
88                   "--replace=<(skia_include_path)=//third_party/skia/include",
89                   "--replace=<(skia_src_path)=//third_party/skia/src",
90                 ],
91                 "scope",
92                 [ "//third_party/skia/gyp/utils.gypi" ])
94 gypi_skia_opts =
95     exec_script("//build/gypi_to_gn.py",
96                 [
97                   rebase_path("//third_party/skia/gyp/opts.gypi"),
98                   "--replace=<(skia_include_path)=//third_party/skia/include",
99                   "--replace=<(skia_src_path)=//third_party/skia/src",
100                 ],
101                 "scope",
102                 [ "//third_party/skia/gyp/opts.gypi" ])
104 # The list of Skia files is kept in skia_gn_files.gypi. Read it.
105 gypi_values =
106     exec_script("//build/gypi_to_gn.py",
107                 [
108                   rebase_path("skia_gn_files.gypi"),
109                   "--replace=<(skia_include_path)=//third_party/skia/include",
110                   "--replace=<(skia_src_path)=//third_party/skia/src",
111                 ],
112                 "scope",
113                 [ "skia_gn_files.gypi" ])
115 # External-facing config for dependent code.
116 config("skia_config") {
117   include_dirs = [
118     "config",
119     "ext",
120     "//third_party/skia/include/c",
121     "//third_party/skia/include/config",
122     "//third_party/skia/include/core",
123     "//third_party/skia/include/effects",
124     "//third_party/skia/include/images",
125     "//third_party/skia/include/lazy",
126     "//third_party/skia/include/pathops",
127     "//third_party/skia/include/pdf",
128     "//third_party/skia/include/pipe",
129     "//third_party/skia/include/ports",
130     "//third_party/skia/include/utils",
132     # need to move this to internal. see crbug.com/457691
133     "//third_party/skia/src/core",
134   ]
136   defines = gypi_blink_skia_defines.blink_skia_defines
137   defines += gypi_skia_defines.skia_for_chromium_defines
139   defines += []
141   if (component_mode == "shared_library") {
142     defines += [ "SKIA_DLL" ]
143   }
145   if (skia_support_gpu) {
146     include_dirs += [
147       "//third_party/skia/include/gpu",
148       "//third_party/skia/src/gpu",
149     ]
150     defines += [ "SK_SUPPORT_GPU=1" ]
151   } else {
152     defines += [ "SK_SUPPORT_GPU=0" ]
153   }
155   if (is_android) {
156     defines += [
157       "SK_BUILD_FOR_ANDROID",
158       "USE_CHROMIUM_SKIA",
159     ]
160   }
162   if (is_mac) {
163     defines += [ "SK_BUILD_FOR_MAC" ]
164   }
167 # Internal-facing config for Skia library code.
168 config("skia_library_config") {
169   # These include directories are only included for Skia code and are not
170   # exported to dependents. It's not clear if this is on purpose, but this
171   # matches the GYP build.
172   include_dirs = [
173     "//third_party/skia/src/image",
174     "//third_party/skia/src/opts",
175     "//third_party/skia/src/pdf",
176     "//third_party/skia/src/ports",
177     "//third_party/skia/src/sfnt",
178     "//third_party/skia/src/utils",
179     "//third_party/skia/src/lazy",
180   ]
181   if (is_mac || is_ios) {
182     include_dirs += [ "//third_party/skia/include/utils/mac" ]
183   }
184   if (is_mac) {
185     include_dirs += [ "//third_party/skia/include/utils/ios" ]
186   }
188   defines = []
190   if (component_mode == "shared_library") {
191     defines += [ "SKIA_IMPLEMENTATION=1" ]
192   }
194   if (current_cpu == "arm") {
195     if (arm_use_neon) {
196       defines += [ "SK_ARM_HAS_NEON" ]
197     }
198     if (arm_optionally_use_neon) {
199       defines += [ "SK_ARM_HAS_OPTIONAL_NEON" ]
200     }
201   }
203   # Settings for text blitting, chosen to approximate the system browser.
204   if (is_linux) {
205     defines += [
206       "SK_GAMMA_EXPONENT=1.2",
207       "SK_GAMMA_CONTRAST=0.2",
208       "SK_HIGH_QUALITY_IS_LANCZOS",
209     ]
210   } else if (is_android) {
211     defines += [
212       "SK_GAMMA_APPLY_TO_A8",
213       "SK_GAMMA_EXPONENT=1.4",
214       "SK_GAMMA_CONTRAST=0.0",
215     ]
216   } else if (is_win) {
217     defines += [
218       "SK_GAMMA_SRGB",
219       "SK_GAMMA_CONTRAST=0.5",
220       "SK_HIGH_QUALITY_IS_LANCZOS",
221     ]
222   } else if (is_mac) {
223     defines += [
224       "SK_GAMMA_SRGB",
225       "SK_GAMMA_CONTRAST=0.0",
226       "SK_HIGH_QUALITY_IS_LANCZOS",
227     ]
228   }
230   if (is_android) {
231     defines += [
232       # Android devices are typically more memory constrained, so default to a
233       # smaller glyph cache (it may be overriden at runtime when the renderer
234       # starts up, depending on the actual device memory).
235       "SK_DEFAULT_FONT_CACHE_LIMIT=1048576",  # 1024 * 1024
236     ]
237   } else {
238     defines += [ "SK_DEFAULT_FONT_CACHE_LIMIT=20971520" ]  # 20 * 1024 * 1024
239   }
241   if (is_win) {
242     include_dirs += [
243       "//third_party/skia/include/utils/win",
244       "//third_party/skia/src/utils/win",
245     ]
247     defines += [ "SK_FONTHOST_USES_FONTMGR" ]
249     cflags = [
250       "/wd4244",  # conversion from 'type1( __int64)' to 'type2 (unsigned int)'
251       "/wd4267",  # conversion from 'size_t' (64 bit) to 'type'(32 bit).
252       "/wd4341",  # signed value is out of range for enum constant.
253       "/wd4345",  # Object is default-initialized if initialization is omitted.
254       "/wd4390",  # ';'empty statement found in looping;is it what was intended?
255       "/wd4554",  # 'operator' : check operator precedence for possible error
256       "/wd4748",  # compiler will disable optimizations if a function has inline
257                   # assembly code contains flow control(jmp or jcc) statements.
258       "/wd4800",  # forcing value to bool 'true/false'(assigning int to bool).
259     ]
260   }
263 component("skia") {
264   sources = [
265     # Chrome sources.
266     "config/SkUserConfig.h",
267     "ext/analysis_canvas.cc",
268     "ext/analysis_canvas.h",
269     "ext/benchmarking_canvas.cc",
270     "ext/benchmarking_canvas.h",
271     "ext/bitmap_platform_device.h",
272     "ext/convolver.cc",
273     "ext/convolver.h",
274     "ext/event_tracer_impl.cc",
275     "ext/event_tracer_impl.h",
276     "ext/fontmgr_default_win.cc",
277     "ext/fontmgr_default_win.h",
278     "ext/google_logging.cc",
279     "ext/image_operations.cc",
280     "ext/image_operations.h",
281     "ext/opacity_draw_filter.cc",
282     "ext/opacity_draw_filter.h",
283     "ext/pixel_ref_utils.cc",
284     "ext/pixel_ref_utils.h",
285     "ext/platform_canvas.cc",
286     "ext/platform_canvas.h",
287     "ext/platform_device.cc",
288     "ext/platform_device.h",
289     "ext/platform_device_linux.cc",
290     "ext/platform_device_mac.cc",
291     "ext/platform_device_win.cc",
292     "ext/recursive_gaussian_convolution.cc",
293     "ext/recursive_gaussian_convolution.h",
294     "ext/refptr.h",
295     "ext/SkDiscardableMemory_chrome.h",
296     "ext/SkDiscardableMemory_chrome.cc",
297     "ext/SkMemory_new_handler.cpp",
298     "ext/skia_utils_base.cc",
299     "ext/skia_utils_base.h",
300     "ext/skia_utils_ios.mm",
301     "ext/skia_utils_ios.h",
302     "ext/skia_utils_mac.mm",
303     "ext/skia_utils_mac.h",
304     "ext/skia_utils_win.cc",
305     "ext/skia_utils_win.h",
306   ]
308   # The skia gypi values are relative to the skia_dir, so we need to rebase.
309   sources += gypi_skia_core.sources
310   sources += gypi_skia_effects.sources
311   sources += gypi_skia_utils.sources
312   sources += gypi_values.skia_library_sources
314   # This and skia_opts are really the same conceptual target so share headers.
315   allow_circular_includes_from = [ ":skia_opts" ]
317   if (current_cpu == "arm") {
318     sources += [
319       "//third_party/skia/src/core/SkUtilsArm.cpp",
320       "//third_party/skia/src/core/SkUtilsArm.h",
321     ]
322   }
324   # GPU
325   if (skia_support_gpu) {
326     sources += gypi_skia_gpu.skgpu_sources
327     sources += gypi_skia_gpu.skgpu_null_gl_sources
328   }
330   # Remove unused util files include in utils.gypi
331   sources -= [
332     "//third_party/skia/include/utils/SkBoundaryPatch.h",
333     "//third_party/skia/include/utils/SkFrontBufferedStream.h",
334     "//third_party/skia/include/utils/SkCamera.h",
335     "//third_party/skia/include/utils/SkCanvasStateUtils.h",
336     "//third_party/skia/include/utils/SkCubicInterval.h",
337     "//third_party/skia/include/utils/SkCullPoints.h",
338     "//third_party/skia/include/utils/SkDebugUtils.h",
339     "//third_party/skia/include/utils/SkDumpCanvas.h",
340     "//third_party/skia/include/utils/SkEventTracer.h",
341     "//third_party/skia/include/utils/SkInterpolator.h",
342     "//third_party/skia/include/utils/SkLayer.h",
343     "//third_party/skia/include/utils/SkMeshUtils.h",
344     "//third_party/skia/include/utils/SkNinePatch.h",
345     "//third_party/skia/include/utils/SkParse.h",
346     "//third_party/skia/include/utils/SkParsePaint.h",
347     "//third_party/skia/include/utils/SkParsePath.h",
348     "//third_party/skia/include/utils/SkRandom.h",
349     "//third_party/skia/src/utils/SkBitmapHasher.cpp",
350     "//third_party/skia/src/utils/SkBitmapHasher.h",
351     "//third_party/skia/src/utils/SkBoundaryPatch.cpp",
352     "//third_party/skia/src/utils/SkFrontBufferedStream.cpp",
353     "//third_party/skia/src/utils/SkCamera.cpp",
354     "//third_party/skia/src/utils/SkCanvasStack.h",
355     "//third_party/skia/src/utils/SkCubicInterval.cpp",
356     "//third_party/skia/src/utils/SkCullPoints.cpp",
357     "//third_party/skia/src/utils/SkDumpCanvas.cpp",
358     "//third_party/skia/src/utils/SkFloatUtils.h",
359     "//third_party/skia/src/utils/SkInterpolator.cpp",
360     "//third_party/skia/src/utils/SkLayer.cpp",
361     "//third_party/skia/src/utils/SkMD5.cpp",
362     "//third_party/skia/src/utils/SkMD5.h",
363     "//third_party/skia/src/utils/SkMeshUtils.cpp",
364     "//third_party/skia/src/utils/SkNinePatch.cpp",
365     "//third_party/skia/src/utils/SkOSFile.cpp",
366     "//third_party/skia/src/utils/SkParse.cpp",
367     "//third_party/skia/src/utils/SkParseColor.cpp",
368     "//third_party/skia/src/utils/SkParsePath.cpp",
369     "//third_party/skia/src/utils/SkPathUtils.cpp",
370     "//third_party/skia/src/utils/SkSHA1.cpp",
371     "//third_party/skia/src/utils/SkSHA1.h",
372     "//third_party/skia/src/utils/SkTFitsIn.h",
373     "//third_party/skia/src/utils/SkTLogic.h",
375     # We don't currently need to change thread affinity, so leave out this complexity for now.
376     "//third_party/skia/src/utils/SkThreadUtils_pthread_mach.cpp",
377     "//third_party/skia/src/utils/SkThreadUtils_pthread_linux.cpp",
379     #testing
380     "//third_party/skia/src/fonts/SkGScalerContext.cpp",
381     "//third_party/skia/src/fonts/SkGScalerContext.h",
382   ]
384   if (is_win) {
385     sources -= [
386       # Keeping _win.cpp
387       "//third_party/skia/src/utils/SkThreadUtils_pthread.cpp",
388       "//third_party/skia/src/utils/SkThreadUtils_pthread_other.cpp",
389     ]
390   } else {
391     sources -= [
392       # Keeping _pthread.cpp and _pthread_other.cpp.
393       "//third_party/skia/src/utils/SkThreadUtils_win.cpp",
394     ]
395   }
397   # need separate win section to handle chromes auto gn filter
398   # (build/config/BUILDCONFIG.gn)
399   if (is_win) {
400     sources -= [
401       #windows
402       "//third_party/skia/include/utils/win/SkAutoCoInitialize.h",
403       "//third_party/skia/include/utils/win/SkHRESULT.h",
404       "//third_party/skia/include/utils/win/SkIStream.h",
405       "//third_party/skia/include/utils/win/SkTScopedComPtr.h",
406       "//third_party/skia/src/utils/win/SkAutoCoInitialize.cpp",
407       "//third_party/skia/src/utils/win/SkIStream.cpp",
408       "//third_party/skia/src/utils/win/SkWGL_win.cpp",
409     ]
410   }
412   if (is_android && (!enable_basic_printing && !enable_print_preview)) {
413     sources -= [ "ext/skia_utils_base.cc" ]
414   }
416   # Fixup skia library sources.
417   if (is_win) {
418     sources -= [
419       "//third_party/skia/src/ports/SkOSFile_posix.cpp",
420       "//third_party/skia/src/ports/SkTime_Unix.cpp",
421       "//third_party/skia/src/ports/SkTLS_pthread.cpp",
422     ]
423   } else {
424     sources -= [
425       "//third_party/skia/src/ports/SkFontHost_win.cpp",
426       "//third_party/skia/src/ports/SkFontMgr_win_dw.cpp",
427       "//third_party/skia/src/ports/SkOSFile_win.cpp",
428       "//third_party/skia/src/ports/SkRemotableFontMgr_win_dw.cpp",
429       "//third_party/skia/src/ports/SkScalerContext_win_dw.cpp",
430       "//third_party/skia/src/ports/SkScalerContext_win_dw.h",
431       "//third_party/skia/src/ports/SkTLS_win.cpp",
432       "//third_party/skia/src/ports/SkTypeface_win_dw.cpp",
433       "//third_party/skia/src/ports/SkTypeface_win_dw.h",
434     ]
435   }
436   if (!is_android) {
437     sources -= [
438       "//third_party/skia/src/ports/SkFontConfigParser_android.cpp",
439       "//third_party/skia/src/ports/SkFontMgr_android.cpp",
440     ]
441   }
442   if (!is_mac) {
443     sources -= [ "//third_party/skia/src/ports/SkFontHost_mac.cpp" ]
444   }
446   if (!is_linux) {
447     sources -= [
448       "//third_party/skia/src/ports/SkFontHost_fontconfig.cpp",
449       "//third_party/skia/src/fonts/SkFontMgr_fontconfig.cpp",
450       "//third_party/skia/src/ports/SkFontConfigInterface_direct.cpp",
451     ]
452   }
454   if (!is_linux && !is_android) {
455     sources -= [
456       "//third_party/skia/src/ports/SkFontHost_FreeType_common.cpp",
457       "//third_party/skia/src/ports/SkFontHost_FreeType.cpp",
458     ]
459   }
461   # Select the right BitmapPlatformDevice.
462   if (is_win) {
463     sources += [
464       "ext/bitmap_platform_device_win.cc",
465       "ext/bitmap_platform_device_win.h",
466     ]
467   } else if (is_mac) {
468     sources += [
469       "ext/bitmap_platform_device_mac.cc",
470       "ext/bitmap_platform_device_mac.h",
471     ]
472   } else if (use_cairo) {
473     sources += [
474       "ext/bitmap_platform_device_cairo.cc",
475       "ext/bitmap_platform_device_cairo.h",
476     ]
477   } else {
478     sources += [
479       "ext/bitmap_platform_device_skia.cc",
480       "ext/bitmap_platform_device_skia.h",
481     ]
482   }
484   if (is_clang) {
485     # Skia won't compile with some of the more strict clang warnings.
486     # e.g. it does:
487     #  SkASSERT(!"sk_out_of_memory");
488     configs -= [ "//build/config/clang:extra_warnings" ]
489   }
491   configs -= [ "//build/config/compiler:chromium_code" ]
492   configs += [
493     ":skia_library_config",
494     "//build/config/compiler:no_chromium_code",
495   ]
496   public_configs = [ ":skia_config" ]
498   deps = [
499     ":skia_opts",
500     "//base",
501     "//base/third_party/dynamic_annotations",
502     "//third_party/zlib",
503   ]
505   if (is_win) {
506     configs -= [
507       # Some files define WIN32_LEAN_AND_MEAN and we want to avoid a duplicate
508       # definition warning.
509       "//build/config/win:lean_and_mean",
510     ]
511   }
513   if (is_linux) {
514     configs += [
515       "//build/config/linux:fontconfig",
516       "//build/config/linux:freetype2",
517     ]
518     if (use_pango) {
519       configs += [ "//build/config/linux:pangocairo" ]
520     }
521     deps += [ "//third_party/icu:icuuc" ]
522   }
524   if (is_android) {
525     set_sources_assignment_filter([])
526     sources += [ "ext/platform_device_linux.cc" ]
527     set_sources_assignment_filter(sources_assignment_filter)
528     deps += [
529       "//third_party/expat",
530       "//third_party/freetype",
531       "//third_party/android_tools:cpu_features",
532     ]
533   }
535   if (skia_support_pdf) {
536     deps += [ "//third_party/sfntly" ]
537     sources += gypi_skia_pdf.sources
538   }
540   if (is_android && !is_debug) {
541     configs -= [ "//build/config/compiler:optimize" ]
542     configs += [ "//build/config/compiler:optimize_max" ]
543   }
546 # Separated out so it can be compiled with different flags for SSE.
547 source_set("skia_opts") {
548   cflags = []
549   defines = []
551   if (current_cpu == "x86" || current_cpu == "x64") {
552     sources = gypi_skia_opts.sse2_sources + gypi_skia_opts.ssse3_sources +
553               gypi_skia_opts.sse41_sources +
554               [
555                 # Chrome-specific.
556                 "ext/convolver_SSE2.cc",
557               ]
559     if (is_linux || is_mac) {
560       cflags += [ "-msse4.1" ]
561     }
562   } else if (current_cpu == "arm") {
563     # The assembly uses the frame pointer register (r7 in Thumb/r11 in
564     # ARM), the compiler doesn't like that.
565     cflags += [ "-fomit-frame-pointer" ]
567     if (arm_version >= 7) {
568       sources = gypi_skia_opts.armv7_sources
569       if (arm_use_neon || arm_optionally_use_neon) {
570         sources += gypi_skia_opts.neon_sources
572         # Root build config sets -mfpu=$arm_fpu, which we expect to be neon
573         # when running this.
574         if (!arm_use_neon) {
575           configs -= [ "//build/config/compiler:compiler_arm_fpu" ]
576           cflags += [ "-mfpu=neon" ]
577         }
578       }
579     } else {
580       sources = gypi_skia_opts.none_sourcees
581     }
582   } else if (current_cpu == "mipsel") {
583     cflags += [ "-fomit-frame-pointer" ]
584     sources = gypi_skia_opts.none_sources
585   } else {
586     assert(false, "Need to port cpu specific stuff from skia_library_opts.gyp")
587   }
589   if (is_android && !is_debug) {
590     configs -= [ "//build/config/compiler:optimize" ]
591     configs += [ "//build/config/compiler:optimize_max" ]
592   }
594   configs -= [ "//build/config/compiler:chromium_code" ]
595   configs += [
596     ":skia_config",
597     ":skia_library_config",
598     "//build/config/compiler:no_chromium_code",
599   ]
601   deps = [
602     "//base",
603   ]
605   visibility = [ ":skia" ]
608 test("skia_unittests") {
609   sources = [
610     "ext/analysis_canvas_unittest.cc",
611     "ext/bitmap_platform_device_mac_unittest.cc",
612     "ext/convolver_unittest.cc",
613     "ext/image_operations_unittest.cc",
614     "ext/pixel_ref_utils_unittest.cc",
615     "ext/platform_canvas_unittest.cc",
616     "ext/recursive_gaussian_convolution_unittest.cc",
617     "ext/refptr_unittest.cc",
618     "ext/skia_utils_ios_unittest.mm",
619     "ext/skia_utils_mac_unittest.mm",
620   ]
622   if (!is_win && !is_mac) {
623     sources -= [ "ext/platform_canvas_unittest.cc" ]
624   }
626   deps = [
627     ":skia",
628     "//base",
629     "//base/test:run_all_unittests",
630     "//cc:test_support",  # TODO: Fix this test to not depend on cc.
631     "//testing/gtest",
632     "//ui/gfx",
633     "//ui/gfx/geometry",
634   ]