diff --git a/.cirrus.yml b/.cirrus.yml new file mode 100644 index 0000000000000..f49b9da8bfea6 --- /dev/null +++ b/.cirrus.yml @@ -0,0 +1,48 @@ +gcp_credentials: ENCRYPTED[987a78af29b91ce8489594c9ab3fec21845bbe5ba68294b8f6def3cf0d380830f06687a89ea69c87344c5ade369700fe] + +gke_container: + image: gcr.io/flutter-cirrus/build-engine-image:latest + cluster_name: build-32-cluster + zone: us-central1-a + namespace: default + cpu: 30 # can't use all 30-cores; system pods needs cores too + memory: 100Gb # similarly, can't use all 100Gb memory + +task: + env: + CIRRUS_WORKING_DIR: "/tmp/github_repo" + + replace_engine_script: | + cd $ENGINE_PATH/src + rm -r flutter + mv $CIRRUS_WORKING_DIR flutter + gclient sync + + matrix: + - name: build_host + compile_host_script: | + cd $ENGINE_PATH/src + ./flutter/tools/gn --unoptimized + ninja -C out/host_debug_unopt + - name: build_android + compile_host_script: | + cd $ENGINE_PATH/src + ./flutter/tools/gn --android --unoptimized + ninja -C out/android_debug_unopt + +format_and_dart_test_task: + container: + image: gcr.io/flutter-cirrus/build-engine-image:latest + + env: + CIRRUS_WORKING_DIR: "/tmp/github_repo" + + replace_engine_script: | + cd $ENGINE_PATH/src + rm -r flutter + cp $CIRRUS_WORKING_DIR -r ./flutter + gclient sync + + format_script: cd $ENGINE_PATH/src/flutter && ./ci/format.sh + build_script: cd $ENGINE_PATH/src/flutter && ./ci/build.sh + test_script: cd $ENGINE_PATH/src/flutter && ./ci/test.sh diff --git a/.gitignore b/.gitignore index b5f80bd40a3fe..2e1362f0aae0b 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ .DS_Store .classpath .cproject +.dart_tool .gdb_history .checkstyle .gdbinit diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a5c1f32a3e622..0000000000000 --- a/.travis.yml +++ /dev/null @@ -1,13 +0,0 @@ -language: dart -dart: - - dev -sudo: false -before_script: - - ./travis/setup.sh -script: - - ./travis/format.sh - - ./travis/build.sh - - ./travis/test.sh - -# We don't build the engine or run the tests for the engine on Travis -# See testing/run_tests.sh if that's what you're looking for though. diff --git a/AUTHORS b/AUTHORS index 649be0fcbe92a..ddcf4d7bd4e18 100644 --- a/AUTHORS +++ b/AUTHORS @@ -7,3 +7,8 @@ Google Inc. Jim Simon Ali Bitek Jacob Greenfield +Dan Field +Victor Choueiri +Simon Lightfoot +Dwayne Slater +Tetsuhiro Ueda diff --git a/BUILD.gn b/BUILD.gn index 24dda026c6245..7b853b15cc06b 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -10,14 +10,18 @@ group("flutter") { public_deps = [ "$flutter_root/lib/snapshot:generate_snapshot_bin", "$flutter_root/lib/snapshot:kernel_platform_files", + "$flutter_root/shell/platform/embedder:flutter_engine", "$flutter_root/sky", - "$flutter_root/third_party/txt", ] - if (flutter_runtime_mode != "debug") { - public_deps += [ - "$flutter_root/lib/snapshot:entry_points_json_files", - ] + if (current_toolchain == host_toolchain) { + public_deps += [ "$flutter_root/shell/testing" ] + } + + if (flutter_runtime_mode != "debug" && + flutter_runtime_mode != "dynamic_profile" && + flutter_runtime_mode != "dynamic_release") { + public_deps += [ "$flutter_root/lib/snapshot:entry_points_json_files" ] } if (!is_fuchsia && !is_fuchsia_host) { @@ -29,35 +33,21 @@ group("flutter") { } } - if (is_fuchsia) { - public_deps += [ - "$flutter_root/content_handler:aot", - "$flutter_root/content_handler:jit", - "$flutter_root/flow", - ] - } - # If on the host, compile all unittests targets. if (current_toolchain == host_toolchain) { if (is_mac) { - public_deps += [ - "$flutter_root/shell/platform/darwin:flutter_channels_unittests", - "$flutter_root/shell/platform/embedder:flutter_embedder_framework", - ] - } - if (!is_win) { - public_deps += [ - "$flutter_root/shell/platform/embedder:embedder_unittests", - "$flutter_root/shell/platform/embedder:flutter_engine", - ] + public_deps += + [ "$flutter_root/shell/platform/darwin:flutter_channels_unittests" ] } + public_deps += [ "$flutter_root/flow:flow_unittests", "$flutter_root/fml:fml_unittests", - "$flutter_root/sky/engine/wtf:wtf_unittests", + "$flutter_root/runtime:runtime_unittests", + "$flutter_root/shell/common:shell_unittests", + "$flutter_root/shell/platform/embedder:embedder_unittests", "$flutter_root/synchronization:synchronization_unittests", "$flutter_root/third_party/txt:txt_unittests", - "//garnet/public/lib/fxl:fxl_unittests", ] } } @@ -66,74 +56,10 @@ config("config") { include_dirs = [ ".." ] } -if (is_fuchsia) { - import("//build/package.gni") - - package("flutter_aot_runner") { - deps = [ - "$flutter_root/content_handler:aot", - ] - if (flutter_runtime_mode != "release") { - deps += [ - "//third_party/dart/runtime/observatory:embedded_archive_observatory", - ] - } - - binary = "flutter_aot_runner" - - if (flutter_runtime_mode != "release") { - resources = [ - { - path = rebase_path( - "$root_gen_dir/observatory/embedded_archive_observatory.tar") - dest = "observatory.tar" - }, - ] - } - - meta = [ - { - path = rebase_path("content_handler/meta/sandbox") - dest = "sandbox" - }, - ] - } - - package("flutter_jit_runner") { - deps = [ - "$flutter_root/content_handler:jit", - ] - if (flutter_runtime_mode != "release") { - deps += [ - "//third_party/dart/runtime/observatory:embedded_archive_observatory", - ] - } - - binary = "flutter_jit_runner" - - if (flutter_runtime_mode != "release") { - resources = [ - { - path = rebase_path( - "$root_gen_dir/observatory/embedded_archive_observatory.tar") - dest = "observatory.tar" - }, - ] - } - - meta = [ - { - path = rebase_path("content_handler/meta/sandbox") - dest = "sandbox" - }, - ] - } -} else { - group("dist") { - testonly = true +group("dist") { + testonly = true - deps = [ - "$flutter_root/sky/dist", - ] - } + deps = [ + "$flutter_root/sky/dist", + ] } diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b8adf8cf129a3..6fe6a92aafd73 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,10 +1,20 @@ Contributing to the Flutter engine ================================== -[![Build Status](https://travis-ci.org/flutter/engine.svg)](https://travis-ci.org/flutter/engine) +[![Build Status](https://cirrus-ci.com/flutter/engine.svg)](https://cirrus-ci.com/flutter/engine) + +_See also: [Flutter's code of conduct](https://flutter.io/design-principles/#code-of-conduct)_ + +Welcome +------- + +This guide introduces you to building and contributing to the Flutter engine. +For an introduction to contributing to the Flutter framework, see [the equivalent +document in the framework's repository](https://github.com/flutter/flutter/blob/master/CONTRIBUTING.md). + I built it before. Remind me, how do I do it again? --------------------- +--------------------------------------------------- If you have previously built the engine (i.e. your environment is already setup) and just want a refresher, then feel free to skip to one of the following sections: @@ -35,7 +45,7 @@ Getting the code and configuring your environment ------------------------------------------------- * Ensure all the dependencies described in the previous section, in particular git, ssh, depot_tools, python, and curl, are installed. - * Fork `https://github.com/flutter/engine` into your own GitHub account. If you already have a fork, and are now installing a development environment on a new machine, make sure you've updated your fork so that you don't use stale configuration options from long ago. + * Fork `https://github.com/flutter/engine` into your own GitHub account. If you already have a fork, and are now installing a development environment on a new machine, make sure you've updated your fork so that you don't use stale configuration options from long ago. Do not use `git clone` to check out this repository; `gclient` will do it for you. * If you haven't configured your machine with an SSH key that's known to github then follow the directions here: https://help.github.com/articles/generating-ssh-keys/. * Create an empty directory for your copy of the repository. For best results, call it `engine`: some of the tools assume this name when working across repositories. (They can be configured to use other names too, so this isn't a strict requirement.) @@ -56,7 +66,7 @@ solutions = [ ``` * `cd engine` (Change to the directory in which you put the `.gclient` file.) - * `gclient sync` This will fetch all the source code that Flutter depends on. Avoid interrupting this script, it can leave your repository in an inconsistent state that is tedious to clean up. + * `gclient sync` This will fetch all the source code that Flutter depends on. Avoid interrupting this script, it can leave your repository in an inconsistent state that is tedious to clean up. (This step automatically runs `git clone`, among other things.) * `cd src/flutter` (Change to the `flutter` directory of the `src` directory that `gclient sync` created in your `engine` directory.) * `git remote add upstream git@github.com:flutter/engine.git` (So that you fetch from the master `flutter/engine` repository, not your clone, when running `git fetch` et al.) * `cd ..` (Return to the `src` directory that `gclient sync` created in your `engine` directory.) @@ -93,10 +103,22 @@ Depending on the platform you choose below, you will need to replace `host_debug Run the following steps, from the `src` directory created in the steps above: -* `git pull upstream master` in `src/flutter` to update the Flutter Engine repo. -* `gclient sync` to update your dependencies. -* `./flutter/tools/gn --android --unoptimized` to prepare your build files (or `--android --android-cpu [x86|x64] --unoptimized` for x86/x64 emulators) . -* `ninja -C out/android_debug_unopt` to actually build the Android binary (or `out/android_debug_unopt_x64` for x86/x64 emulators). +* Update the Flutter Engine repo. + * `git pull upstream master` in `src/flutter` +* Update your dependencies + * `gclient sync` +* Prepare your build files + * `./flutter/tools/gn --android --unoptimized` for device-side executables + * `./flutter/tools/gn --android --android-cpu x86 --unoptimized` for x86 emulators + * `./flutter/tools/gn --android --android-cpu x64 --unoptimized` for x64 emulators + * `./flutter/tools/gn --unoptimized` for host-side executables +* Build your executables + * `ninja -C out/android_debug_unopt` for device-side executables + * `ninja -C out/android_debug_unopt_x86` for x86 emulators + * `ninja -C out/android_debug_unopt_x64` for x64 emulators + * `ninja -C out/host_debug_unopt` for host-side executables + * These commands can be combined. Ex: `ninja -C out/android_debug_unopt && ninja -C out/host_debug_unopt` + * For Googlers, consider also using the option `-j 1000` to parallelize the build using Goma. This builds a debug-enabled ("unoptimized") binary configured to run Dart in checked mode ("debug"). There are other versions, [discussed on the wiki](https://github.com/flutter/flutter/wiki/Flutter's-modes). @@ -137,10 +159,12 @@ to test the engine. * Make sure you have Xcode 9.0+ installed. * `git pull upstream master` in `src/flutter` to update the Flutter Engine repo. * `gclient sync` to update dependencies. -* `./flutter/tools/gn --ios --unoptimized` to prepare build files (or `--ios --simulator --unoptimized` for simulator). +* `./flutter/tools/gn --ios --unoptimized` to prepare build files for device-side executables (or `--ios --simulator --unoptimized` for simulator). * For a discussion on the various flags and modes, [read this discussion](https://github.com/flutter/flutter/wiki/Flutter's-modes). * This also produces an Xcode project for working with the engine source code at `out/ios_debug_unopt` -* `ninja -C out/ios_debug_unopt` to build iOS artifacts (or `out/ios_debug_sim_unopt` for simulator). +* `./flutter/tools/gn --unoptimized` to prepare the build files for host-side executables. +* `ninja -C out/ios_debug_unopt && ninja -C out/host_debug_unopt` to build all artifacts (use `out/ios_debug_sim_unopt` for Simulator). + * For Googlers, consider also using the option `-j 1000` to parallelize the build using Goma. Once the artifacts are built, you can start using them in your application by following these steps: * `cd /path/to/flutter/examples/hello_world` @@ -151,15 +175,18 @@ Once the artifacts are built, you can start using them in your application by fo ### Desktop (Mac and Linux), for tests +To run the tests, you should first clone [the main Flutter repository](https://github.com/flutter/flutter). +See [the instructions for contributing](https://github.com/flutter/flutter/blob/master/CONTRIBUTING.md) +to the main Flutter repository for detailed instructions. By default, Flutter will use the bundled version +of the engine. Follow the next steps to run tests using the locally-built engine: + * `git pull upstream master` in `src/flutter` to update the Flutter Engine repo. * `gclient sync` to update your dependencies. * `./flutter/tools/gn --unoptimized` to prepare your build files. * `ninja -C out/host_debug_unopt` to build a desktop unoptimized binary. + * For Googlers, consider also using the option `-j 1000` to parallelize the build using Goma. * `--unoptimized` disables C++ compiler optimizations and does not strip debug symbols. You may skip the flag and invoke `ninja -C out/host_debug` if you would rather have the native components optimized. - -To run the tests, you'll also need to clone [the main Flutter repository](https://github.com/flutter/flutter). -See [the instructions for contributing](https://github.com/flutter/flutter/blob/master/CONTRIBUTING.md) -to the main Flutter repository for detailed instructions. +* `flutter test --local-engine=host_debug_unopt` will run tests using the locally-built `flutter_tester`. ### Desktop (gen_snapshot for Windows) @@ -200,7 +227,8 @@ find . -mindepth 1 -maxdepth 1 -type d | xargs -n 1 sh -c 'ninja -C $0 || exit 2 Contributing code ----------------- -We gladly accept contributions via GitHub pull requests. +We gladly accept contributions via GitHub pull requests. See [the wiki](https://github.com/flutter/engine/wiki) for +information about the engine's architecture. To start working on a patch: diff --git a/DEPS b/DEPS index 94a8cd5bb4a18..360f443cb8eba 100644 --- a/DEPS +++ b/DEPS @@ -23,7 +23,7 @@ vars = { 'fuchsia_git': 'https://fuchsia.googlesource.com', 'github_git': 'https://github.com', 'skia_git': 'https://skia.googlesource.com', - 'skia_revision': '91fba61f24943a6e12f69732d9308beb76f8a7c6', + 'skia_revision': '40c7c64572bc73348e510be610cdb4f6e097f89c', # When updating the Dart revision, ensure that all entries that are # dependencies of Dart are also updated to match the entries in the @@ -31,78 +31,78 @@ vars = { # Dart is: https://github.com/dart-lang/sdk/blob/master/DEPS. # You can use //tools/dart/create_updated_flutter_deps.py to produce # updated revision list of existing dependencies. - 'dart_revision': '06949dc98556adb807e270c47cbb9407ec781064', - - 'dart_args_tag': '1.4.1', - 'dart_async_tag': '2.0.6', - 'dart_barback_tag': '0.15.2+14', - 'dart_bazel_worker_tag': 'v0.1.9', - 'dart_boolean_selector_tag': '1.0.3', - 'dart_boringssl_gen_rev': '344f455fd13d46f054726638e76026156ea73aa9', - 'dart_boringssl_rev': '672f6fc2486745d0cabc3aaeb4e0a3cd13b37b12', - 'dart_charcode_tag': 'v1.1.1', - 'dart_cli_util_tag': '0.1.2+1', - 'dart_collection_tag': '1.14.6', - 'dart_convert_tag': '2.0.1', - 'dart_crypto_tag': '2.0.2+1', - 'dart_csslib_tag': '0.14.1', - 'dart_dart2js_info_tag': '0.5.5+1', - 'dart_dart_style_tag': '1.0.10', - 'dart_dartdoc_tag': 'v0.17.1+1', - 'dart_fixnum_tag': '0.10.5', - 'dart_glob_tag': '1.1.5', - 'dart_html_tag': '0.13.3', - 'dart_http_multi_server_tag': '2.0.4', + 'dart_revision': 'cd9a42239f76e110dd73aeaac4c69a057a76ddf1', + + 'dart_args_tag': '1.4.4', + 'dart_async_tag': '2.0.8', + 'dart_bazel_worker_tag': '0.1.11', + 'dart_boolean_selector_tag': '1.0.4', + 'dart_boringssl_gen_rev': 'fc47eaa1a245d858bae462cd64d4155605b850ea', + 'dart_boringssl_rev': '189270cd190267f5bd60cfe8f8ce7a61d07ba6f4', + 'dart_charcode_tag': 'v1.1.2', + 'dart_cli_util_rev': '4ad7ccbe3195fd2583b30f86a86697ef61e80f41', + 'dart_collection_tag': '1.14.11', + 'dart_convert_tag': '2.0.2', + 'dart_crypto_tag': '2.0.6', + 'dart_csslib_tag': '0.14.4+1', + 'dart_dart2js_info_tag': '0.5.6+4', + 'dart_dart_style_tag': '6f3efd209ff1828835936397b64be79265cc0c19', + 'dart_dartdoc_tag': 'v0.20.4', + 'dart_fixnum_tag': '0.10.8', + 'dart_glob_tag': '1.1.7', + 'dart_html_tag': '0.13.3+2', + 'dart_http_multi_server_tag': '2.0.5', 'dart_http_parser_tag': '3.1.1', - 'dart_http_retry_tag': '0.1.0', - 'dart_http_tag': '0.11.3+16', - 'dart_http_throttle_tag': '1.0.1', - 'dart_intl_tag': '0.15.2', - 'dart_isolate_tag': '1.1.0', - 'dart_json_rpc_2_tag': '2.0.6', - 'dart_linter_tag': '0.1.44', - 'dart_logging_tag': '0.11.3+1', - 'dart_markdown_tag': '1.1.1', - 'dart_matcher_tag': '0.12.1+4', - 'dart_mime_tag': '0.9.6', - 'dart_mockito_tag': 'a92db054fba18bc2d605be7670aee74b7cadc00a', - 'dart_mustache4dart_tag': 'v2.1.0', - 'dart_oauth2_tag': '1.1.0', - 'dart_observatory_pub_packages_rev': '4c282bb240b68f407c8c7779a65c68eeb0139dc6', - 'dart_package_config_tag': '1.0.3', - 'dart_package_resolver_tag': '1.0.2+1', - 'dart_path_tag': '1.5.1', - 'dart_plugin_tag': '0.2.0+2', - 'dart_pool_tag': '1.3.4', - 'dart_protobuf_tag': '0.7.1', - 'dart_pub_rev': 'dbe8be2bb8bca9b26ba7bd583272c62f9a0153fd', - 'dart_pub_semver_tag': '1.3.2', - 'dart_quiver_tag': '5aaa3f58c48608af5b027444d561270b53f15dbf', - 'dart_resource_rev': 'af5a5bf65511943398146cf146e466e5f0b95cb9', + 'dart_http_retry_tag': '0.1.1', + 'dart_http_tag': '0.11.3+17', + 'dart_http_throttle_tag': '1.0.2', + 'dart_intl_tag': '0.15.6', + 'dart_json_rpc_2_tag': '2.0.9', + 'dart_linter_tag': '0.1.60', + 'dart_logging_tag': '0.11.3+2', + 'dart_markdown_tag': '2.0.2', + 'dart_matcher_tag': '0.12.3', + 'dart_mime_tag': '0.9.6+2', + 'dart_mockito_tag': 'd39ac507483b9891165e422ec98d9fb480037c8b', + 'dart_mustache4dart_tag': 'v2.1.2', + 'dart_oauth2_tag': '1.2.1', + 'dart_observatory_pub_packages_rev': '0894122173b0f98eb08863a7712e78407d4477bc', + 'dart_package_config_tag': '1.0.5', + 'dart_package_resolver_tag': '1.0.4', + 'dart_path_tag': '1.6.2', + 'dart_plugin_tag': 'f5b4b0e32d1406d62daccea030ba6457d14b1c47', + 'dart_pool_tag': '1.3.6', + 'dart_protobuf_tag': '0.9.0', + 'dart_pub_rev': '9f00679ef47bc79cadc18e143720ade6c06c0100', + 'dart_pub_semver_tag': '1.4.2', + 'dart_quiver_tag': '2.0.0+1', + 'dart_resource_rev': '2.1.5', 'dart_root_certificates_rev': '16ef64be64c7dfdff2b9f4b910726e635ccc519e', - 'dart_shelf_packages_handler_tag': '1.0.3', - 'dart_shelf_static_rev': 'v0.2.7', - 'dart_shelf_tag': '0.7.2', - 'dart_shelf_web_socket_tag': '0.2.2', - 'dart_source_map_stack_trace_tag': '1.1.4', - 'dart_source_maps_tag': '0.10.4', - 'dart_source_span_tag': '1.4.0', - 'dart_stack_trace_tag': '1.9.2', - 'dart_stream_channel_tag': '1.6.4', - 'dart_string_scanner_tag': '1.0.2', - 'dart_test_tag': '0.12.30+1', + 'dart_shelf_packages_handler_tag': '1.0.4', + 'dart_shelf_static_rev': 'v0.2.8', + 'dart_shelf_tag': '0.7.3+3', + 'dart_shelf_web_socket_tag': '0.2.2+3', + 'dart_source_map_stack_trace_tag': '1.1.5', + 'dart_source_maps_tag': '8af7cc1a1c3a193c1fba5993ce22a546a319c40e', + 'dart_source_span_tag': '1.4.1', + 'dart_stack_trace_tag': '1.9.3', + 'dart_stream_channel_tag': '1.6.8', + 'dart_string_scanner_tag': '1.0.3', + 'dart_term_glyph_tag': '1.0.1', + 'dart_test_reflective_loader_tag': '0.1.8', + 'dart_test_tag': '1.0.0', 'dart_tuple_tag': 'v1.0.1', - 'dart_typed_data_tag': '1.1.3', - 'dart_usage_tag': '3.3.0', - 'dart_utf_tag': '0.9.0+4', - 'dart_watcher_tag': '0.9.7+7', - 'dart_web_socket_channel_tag': '1.0.7', - 'dart_yaml_tag': '2.1.13', + 'dart_typed_data_tag': '1.1.6', + 'dart_usage_tag': '3.4.0', + 'dart_utf_tag': '0.9.0+5', + 'dart_watcher_rev': '0.9.7+10', + 'dart_web_socket_channel_tag': '1.0.9', + 'dart_yaml_tag': '2.1.15', # Build bot tooling for iOS 'ios_tools_revision': '69b7c1b160e7107a6a98d948363772dc9caea46f', - 'buildtools_revision': 'ae85410691b10aa2469695c2421b1fe751843e64', + 'buildtools_revision': 'c1408453246f0475547b6fe634c2f3dad71c6457', } # Only these hosts are allowed for dependencies in this DEPS file. @@ -115,7 +115,7 @@ allowed_hosts = [ ] deps = { - 'src': 'https://github.com/flutter/buildroot.git' + '@' + '35d44f8c4e20043de7615adf2f1203acb12ad236', + 'src': 'https://github.com/flutter/buildroot.git' + '@' + 'be483cb1cd3a9c4313b2e534034d23a05c3d849e', # Fuchsia compatibility # @@ -123,11 +123,8 @@ deps = { # build. Eventually, we'll manage these dependencies together with Fuchsia # and not have to specific specific hashes. - 'src/garnet': - Var('fuchsia_git') + '/garnet' + '@' + 'b7492b5f34e32248b164eb48ae8e67995aebda67', - - 'src/topaz': - Var('fuchsia_git') + '/topaz' + '@' + 'e331f910c1003d154a4de6e1b5356f8d785fd6ec', + 'src/third_party/tonic': + Var('fuchsia_git') + '/tonic' + '@' + 'd91fa62844f8531a3701450f6192298d0e873246', 'src/third_party/benchmark': Var('fuchsia_git') + '/third_party/benchmark' + '@' + '296537bc48d380adf21567c5d736ab79f5363d22', @@ -139,7 +136,7 @@ deps = { Var('fuchsia_git') + '/third_party/rapidjson' + '@' + '9defbb0209a534ffeb3a2b79d5ee440a77407292', 'src/third_party/harfbuzz': - Var('fuchsia_git') + '/third_party/harfbuzz' + '@' + '39b423660aacf916f1cb01f24913f78eaacb3baf', + Var('fuchsia_git') + '/third_party/harfbuzz' + '@' + 'd837034f09a957faf2814002e8ebd81da6151d1b', # Chromium-style # @@ -153,7 +150,7 @@ deps = { Var('chromium_git') + '/chromium/src/ios.git' + '@' + Var('ios_tools_revision'), 'src/third_party/icu': - Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '08cb956852a5ccdba7f9c941728bb833529ba3c6', + Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'c56c671998902fcc4fc9ace88c83daa99f980793', 'src/third_party/dart': Var('dart_git') + '/sdk.git' + '@' + Var('dart_revision'), @@ -176,9 +173,6 @@ deps = { 'src/third_party/dart/third_party/pkg/async': Var('dart_git') + '/async.git' + '@' + Var('dart_async_tag'), - 'src/third_party/dart/third_party/pkg/barback': - Var('dart_git') + '/barback.git' + '@' + Var('dart_barback_tag'), - 'src/third_party/dart/third_party/pkg/bazel_worker': Var('dart_git') + '/bazel_worker.git' + '@' + Var('dart_bazel_worker_tag'), @@ -189,7 +183,7 @@ deps = { Var('dart_git') + '/charcode.git' + '@' + Var('dart_charcode_tag'), 'src/third_party/dart/third_party/pkg/cli_util': - Var('dart_git') + '/cli_util.git' + '@' + Var('dart_cli_util_tag'), + Var('dart_git') + '/cli_util.git' + '@' + Var('dart_cli_util_rev'), 'src/third_party/dart/third_party/pkg/collection': Var('dart_git') + '/collection.git' + '@' + Var('dart_collection_tag'), @@ -209,9 +203,6 @@ deps = { 'src/third_party/dart/third_party/pkg/dartdoc': Var('dart_git') + '/dartdoc.git' + '@' + Var('dart_dartdoc_tag'), - 'src/third_party/dart/third_party/pkg/isolate': - Var('dart_git') + '/isolate.git' + '@' + Var('dart_isolate_tag'), - 'src/third_party/dart/third_party/pkg/json_rpc_2': Var('dart_git') + '/json_rpc_2.git' + '@' + Var('dart_json_rpc_2_tag'), @@ -329,6 +320,12 @@ deps = { 'src/third_party/dart/third_party/pkg/typed_data': Var('dart_git') + '/typed_data.git' + '@' + Var('dart_typed_data_tag'), + 'src/third_party/dart/third_party/pkg/term_glyph': + Var('dart_git') + '/term_glyph.git' + '@' + Var('dart_term_glyph_tag'), + + 'src/third_party/dart/third_party/pkg/test_reflective_loader': + Var('dart_git') + '/test_reflective_loader.git' + '@' + Var('dart_test_reflective_loader_tag'), + 'src/third_party/dart/third_party/pkg/test': Var('dart_git') + '/test.git' + '@' + Var('dart_test_tag'), @@ -342,7 +339,7 @@ deps = { Var('dart_git') + '/usage.git' + '@' + Var('dart_usage_tag'), 'src/third_party/dart/third_party/pkg/watcher': - Var('dart_git') + '/watcher.git' + '@' + Var('dart_watcher_tag'), + Var('dart_git') + '/watcher.git' + '@' + Var('dart_watcher_rev'), 'src/third_party/dart/third_party/pkg/web_socket_channel': Var('dart_git') + '/web_socket_channel.git' + '@' + Var('dart_web_socket_channel_tag'), @@ -354,7 +351,7 @@ deps = { Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8', 'src/third_party/freetype2': - Var('fuchsia_git') + '/third_party/freetype2' + '@' + 'e23a030e9b43c648249477fdf7bf5305d2cc8f59', + Var('fuchsia_git') + '/third_party/freetype2' + '@' + '3515a77bb83002b69a2957efdbcb764de4de07da', 'src/third_party/root_certificates': Var('dart_git') + '/root_certificates.git' + '@' + Var('dart_root_certificates_rev'), @@ -424,31 +421,10 @@ hooks = [ 'action': ['python', 'src/tools/dart/update.py'], }, { - 'name': 'frontend_server_packages', + 'name': 'generate_package_files', 'pattern': '.', - 'condition': 'host_os == "linux"', - 'cwd': 'src/flutter/frontend_server/', - 'action': [ - '../../../src/third_party/dart/tools/sdks/linux/dart-sdk/bin/pub', 'get', - ], - }, - { - 'name': 'frontend_server_packages', - 'pattern': '.', - 'condition': 'host_os == "mac"', - 'cwd': 'src/flutter/frontend_server/', - 'action': [ - '../../../src/third_party/dart/tools/sdks/mac/dart-sdk/bin/pub', 'get', - ], - }, - { - 'name': 'frontend_server_packages', - 'pattern': '.', - 'condition': 'host_os == "win"', - 'cwd': 'src/flutter/frontend_server/', - 'action': [ - '..\\..\\..\\src\\third_party\\dart\\tools\\sdks\\win\\dart-sdk\\bin\\pub.bat', 'get', - ], + 'cwd': 'src/', + 'action': ['python', 'flutter/tools/generate_package_files.py'], }, { # Ensure that we don't accidentally reference any .pyc files whose diff --git a/README.md b/README.md index 763035baaee5c..7f2d8a53c4850 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,19 @@ Flutter Engine ============== -[![Build Status](https://travis-ci.org/flutter/engine.svg)](https://travis-ci.org/flutter/engine) +[![Build Status](https://api.cirrus-ci.com/github/flutter/engine.svg)](https://cirrus-ci.com/github/flutter/engine) Flutter is a new way to build high-performance, cross-platform mobile apps. Flutter is optimized for today's, and tomorrow's, mobile devices. We are focused on low-latency input and high frame rates on Android and iOS. -The Flutter Engine is the runtime environment for hosting Flutter applications. -Most developers will interact with Flutter via the Flutter Framework and APIs, -which run inside the engine. +The Flutter Engine is a portable runtime for hosting +[Flutter](https://flutter.io) applications. It implements Flutter's core +libraries, including animation and graphics, file and network I/O, +accessibility support, plugin architecture, and a Dart runtime and compile +toolchain. Most developers will interact with Flutter via the [Flutter +Framework](https://github.com/flutter/flutter), which provides a modern, +reactive framework, and a rich set of platform, layout and foundation widgets. + _Flutter is still under development and we continue to add features._ However, it is ready for use by early adopters who are willing to deal @@ -23,6 +28,9 @@ us [feedback](mailto:flutter-dev@googlegroups.com). - For information about contributing code to the engine itself, please see [CONTRIBUTING.md](CONTRIBUTING.md). + + - For information about the engine's architecture, please see + [the wiki](https://github.com/flutter/engine/wiki). Community --------- diff --git a/analysis_options.yaml b/analysis_options.yaml index a0bdf532504ed..6420a5457adca 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -1,13 +1,13 @@ # Specify analysis options. # # This file is a copy of analysis_options_repo.yaml from flutter repo -# as of 2018-01-07, but with "sort_constructors_first" disabled -# (because we have private fake constructors), with -# "always_require_non_null_named_parameters" disabled (because we -# can't import the meta package from the SDK), and with -# "prefer_final_fields" disabled (because we do weird things with -# private fields, especially on the Window object): -# https://github.com/lfutter/flutter/blob/master/analysis_options_repo.yaml +# as of 2018-05-30, but with: +# - "always_require_non_null_named_parameters" disabled (because we +# can't import the meta package from the SDK), and +# - "sort_constructors_first" disabled (because we have private fake +# constructors), +# - "prefer_final_fields" disabled (because we do weird things with +# private fields, especially on the Window object): analyzer: language: @@ -22,6 +22,9 @@ analyzer: missing_return: warning # allow having TODOs in the code todo: ignore + # `flutter analyze` (without `--watch`) just ignores directories + # that contain a .dartignore file, and this file does not have any + # effect on what files are actually analyzed. linter: rules: @@ -31,24 +34,30 @@ linter: - always_declare_return_types - always_put_control_body_on_new_line # - always_put_required_named_parameters_first # we prefer having parameters in the same order as fields https://github.com/flutter/flutter/issues/10219 - # always_require_non_null_named_parameters + # always_require_non_null_named_parameters # DIFFERENT FROM FLUTTER/FLUTTER - always_specify_types - annotate_overrides # - avoid_annotating_with_dynamic # conflicts with always_specify_types - avoid_as + # - avoid_bool_literals_in_conditional_expressions # not yet tested # - avoid_catches_without_on_clauses # we do this commonly # - avoid_catching_errors # we do this commonly - - avoid_classes_with_only_static_members + - avoid_classes_with_only_static_members # We want to avoid classes that can be instantiated but only have statics - avoid_empty_else - avoid_function_literals_in_foreach_calls - avoid_init_to_null - avoid_null_checks_in_equality_operators # - avoid_positional_boolean_parameters # not yet tested + # - avoid_private_typedef_functions # we prefer having typedef (discussion in https://github.com/flutter/flutter/pull/16356) + - avoid_relative_lib_imports + - avoid_renaming_method_parameters - avoid_return_types_on_setters # - avoid_returning_null # we do this commonly # - avoid_returning_this # https://github.com/dart-lang/linter/issues/842 # - avoid_setters_without_getters # not yet tested + # - avoid_single_cascade_in_expression_statements # not yet tested - avoid_slow_async_io + # - avoid_types_as_parameter_names # https://github.com/dart-lang/linter/pull/954/files # - avoid_types_on_closure_parameters # conflicts with always_specify_types # - avoid_unused_constructor_parameters # https://github.com/dart-lang/linter/pull/847 - await_only_futures @@ -85,18 +94,22 @@ linter: # - parameter_assignments # we do this commonly - prefer_adjacent_string_concatenation - prefer_asserts_in_initializer_lists - # - prefer_bool_in_asserts # not yet tested + - prefer_bool_in_asserts - prefer_collection_literals - prefer_conditional_assignment - prefer_const_constructors - prefer_const_constructors_in_immutables + - prefer_const_declarations + - prefer_const_literals_to_create_immutables # - prefer_constructors_over_static_methods # not yet tested - prefer_contains + # - prefer_equal_for_default_values # not yet tested # - prefer_expression_function_bodies # conflicts with https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo#consider-using--for-short-functions-and-methods - # - prefer_final_fields + # - prefer_final_fields # DIFFERENT FROM FLUTTER/FLUTTER - prefer_final_locals - prefer_foreach # - prefer_function_declarations_over_variables # not yet tested + - prefer_generic_function_type_aliases - prefer_initializing_formals # - prefer_interpolation_to_compose_strings # not yet tested - prefer_is_empty @@ -106,7 +119,7 @@ linter: - public_member_api_docs # this is the only difference from analysis_options.yaml - recursive_getters - slash_for_doc_comments - # - sort_constructors_first + # - sort_constructors_first # DIFFERENT FROM FLUTTER/FLUTTER - sort_unnamed_constructors_first - super_goes_last - test_types_in_equals @@ -120,6 +133,7 @@ linter: - unnecessary_null_aware_assignments - unnecessary_null_in_if_null_operators - unnecessary_overrides + - unnecessary_parenthesis # - unnecessary_statements # not yet tested - unnecessary_this - unrelated_type_equality_checks diff --git a/assets/BUILD.gn b/assets/BUILD.gn index c4901375ad810..f28e9bdd0a6ea 100644 --- a/assets/BUILD.gn +++ b/assets/BUILD.gn @@ -4,26 +4,23 @@ source_set("assets") { sources = [ - "asset_provider.h", + "asset_manager.cc", + "asset_manager.h", + "asset_resolver.h", "directory_asset_bundle.cc", "directory_asset_bundle.h", - "unzipper_provider.cc", - "unzipper_provider.h", "zip_asset_store.cc", "zip_asset_store.h", ] deps = [ - "$flutter_root/glue", - "//garnet/public/lib/fxl", - "//garnet/public/lib/zip", + "$flutter_root/common", + "$flutter_root/fml", ] public_deps = [ "//third_party/zlib:minizip", ] - public_configs = [ - "$flutter_root:config", - ] + public_configs = [ "$flutter_root:config" ] } diff --git a/assets/asset_manager.cc b/assets/asset_manager.cc new file mode 100644 index 0000000000000..2155d24a78a26 --- /dev/null +++ b/assets/asset_manager.cc @@ -0,0 +1,58 @@ +// Copyright 2017 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "flutter/assets/asset_manager.h" + +#include "flutter/assets/directory_asset_bundle.h" +#include "flutter/fml/trace_event.h" + +#ifdef ERROR +#undef ERROR +#endif + +namespace blink { + +AssetManager::AssetManager() = default; + +AssetManager::~AssetManager() = default; + +void AssetManager::PushFront(std::unique_ptr resolver) { + if (resolver == nullptr || !resolver->IsValid()) { + return; + } + + resolvers_.push_front(std::move(resolver)); +} + +void AssetManager::PushBack(std::unique_ptr resolver) { + if (resolver == nullptr || !resolver->IsValid()) { + return; + } + + resolvers_.push_back(std::move(resolver)); +} + +// |blink::AssetResolver| +std::unique_ptr AssetManager::GetAsMapping( + const std::string& asset_name) const { + if (asset_name.size() == 0) { + return nullptr; + } + TRACE_EVENT0("flutter", "AssetManager::GetAsMapping"); + for (const auto& resolver : resolvers_) { + auto mapping = resolver->GetAsMapping(asset_name); + if (mapping != nullptr) { + return mapping; + } + } + FML_DLOG(WARNING) << "Could not find asset: " << asset_name; + return nullptr; +} + +// |blink::AssetResolver| +bool AssetManager::IsValid() const { + return resolvers_.size() > 0; +} + +} // namespace blink diff --git a/assets/asset_manager.h b/assets/asset_manager.h new file mode 100644 index 0000000000000..4ab58ed0f2bf7 --- /dev/null +++ b/assets/asset_manager.h @@ -0,0 +1,46 @@ +// Copyright 2017 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_ASSETS_ASSET_MANAGER_H_ +#define FLUTTER_ASSETS_ASSET_MANAGER_H_ + +#include +#include +#include + +#include "flutter/assets/asset_resolver.h" +#include "flutter/fml/macros.h" +#include "flutter/fml/memory/ref_counted.h" + +namespace blink { + +class AssetManager final : public AssetResolver, + public fml::RefCountedThreadSafe { + public: + void PushFront(std::unique_ptr resolver); + + void PushBack(std::unique_ptr resolver); + + // |blink::AssetResolver| + bool IsValid() const override; + + // |blink::AssetResolver| + std::unique_ptr GetAsMapping( + const std::string& asset_name) const override; + + private: + std::deque> resolvers_; + + AssetManager(); + + ~AssetManager(); + + FML_DISALLOW_COPY_AND_ASSIGN(AssetManager); + FML_FRIEND_MAKE_REF_COUNTED(AssetManager); + FML_FRIEND_REF_COUNTED_THREAD_SAFE(AssetManager); +}; + +} // namespace blink + +#endif // FLUTTER_ASSETS_ASSET_MANAGER_H_ diff --git a/assets/asset_provider.h b/assets/asset_provider.h deleted file mode 100644 index 68b7f5c2b7b9c..0000000000000 --- a/assets/asset_provider.h +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright 2018 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef FLUTTER_ASSETS_ASSET_PROVIDER_H_ -#define FLUTTER_ASSETS_ASSET_PROVIDER_H_ - -#include -#include - -#include "lib/fxl/memory/ref_counted.h" - -namespace blink { - -class AssetProvider - : public fxl::RefCountedThreadSafe - { - public: - virtual bool GetAsBuffer(const std::string& asset_name, - std::vector* data) = 0; - virtual ~AssetProvider() = default; -}; - -} // namespace blink -#endif // FLUTTER_ASSETS_ASSET_PROVIDER_H diff --git a/assets/asset_resolver.h b/assets/asset_resolver.h new file mode 100644 index 0000000000000..d0a68f0bf2cd8 --- /dev/null +++ b/assets/asset_resolver.h @@ -0,0 +1,34 @@ +// Copyright 2017 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_ASSETS_ASSET_RESOLVER_H_ +#define FLUTTER_ASSETS_ASSET_RESOLVER_H_ + +#include +#include + +#include "flutter/fml/macros.h" +#include "flutter/fml/mapping.h" + +namespace blink { + +class AssetResolver { + public: + AssetResolver() = default; + + virtual ~AssetResolver() = default; + + virtual bool IsValid() const = 0; + + FML_WARN_UNUSED_RESULT + virtual std::unique_ptr GetAsMapping( + const std::string& asset_name) const = 0; + + private: + FML_DISALLOW_COPY_AND_ASSIGN(AssetResolver); +}; + +} // namespace blink + +#endif // FLUTTER_ASSETS_ASSET_RESOLVER_H_ diff --git a/assets/directory_asset_bundle.cc b/assets/directory_asset_bundle.cc index 43933079a81bd..830e96d9f5d18 100644 --- a/assets/directory_asset_bundle.cc +++ b/assets/directory_asset_bundle.cc @@ -3,73 +3,48 @@ // found in the LICENSE file. #include "flutter/assets/directory_asset_bundle.h" -#include "lib/fxl/build_config.h" - -#include #include -#include "lib/fxl/files/eintr_wrapper.h" -#include "lib/fxl/files/file.h" -#include "lib/fxl/files/path.h" -#include "lib/fxl/files/unique_fd.h" -#include "lib/fxl/portable_unistd.h" +#include "flutter/fml/eintr_wrapper.h" +#include "flutter/fml/file.h" +#include "flutter/fml/mapping.h" namespace blink { -bool DirectoryAssetBundle::GetAsBuffer(const std::string& asset_name, - std::vector* data) { - if (fd_.is_valid()) { -#if defined(OS_WIN) - // This code path is not valid in a Windows environment. - return false; -#else - fxl::UniqueFD asset_file(openat(fd_.get(), asset_name.c_str(), O_RDONLY)); - if (!asset_file.is_valid()) - return false; - - constexpr size_t kBufferSize = 1 << 16; - size_t offset = 0; - ssize_t bytes_read = 0; - do { - offset += bytes_read; - data->resize(offset + kBufferSize); - bytes_read = read(asset_file.get(), &(*data)[offset], kBufferSize); - } while (bytes_read > 0); - - if (bytes_read < 0) { - FXL_LOG(ERROR) << "Reading " << asset_name << " failed"; - data->clear(); - return false; - } - - data->resize(offset + bytes_read); - return true; -#endif +DirectoryAssetBundle::DirectoryAssetBundle(fml::UniqueFD descriptor) + : descriptor_(std::move(descriptor)) { + if (!fml::IsDirectory(descriptor_)) { + return; } - std::string asset_path = GetPathForAsset(asset_name); - if (asset_path.empty()) - return false; - return files::ReadFileToVector(asset_path, data); + is_valid_ = true; } -DirectoryAssetBundle::~DirectoryAssetBundle() {} +DirectoryAssetBundle::~DirectoryAssetBundle() = default; -DirectoryAssetBundle::DirectoryAssetBundle(std::string directory) - : directory_(std::move(directory)), fd_() {} +// |blink::AssetResolver| +bool DirectoryAssetBundle::IsValid() const { + return is_valid_; +} + +// |blink::AssetResolver| +std::unique_ptr DirectoryAssetBundle::GetAsMapping( + const std::string& asset_name) const { + if (!is_valid_) { + FML_DLOG(WARNING) << "Asset bundle was not valid."; + return nullptr; + } -DirectoryAssetBundle::DirectoryAssetBundle(fxl::UniqueFD fd) - : fd_(std::move(fd)) {} + auto mapping = std::make_unique( + fml::OpenFile(descriptor_, asset_name.c_str(), fml::OpenPermission::kRead, + false /* directory */), + false /* executable */); -std::string DirectoryAssetBundle::GetPathForAsset( - const std::string& asset_name) { - std::string asset_path = files::SimplifyPath(directory_ + "/" + asset_name); - if (asset_path.find(directory_) != 0u) { - FXL_LOG(ERROR) << "Asset name '" << asset_name - << "' attempted to traverse outside asset bundle."; - return std::string(); + if (mapping->GetMapping() == nullptr) { + return nullptr; } - return asset_path; + + return mapping; } } // namespace blink diff --git a/assets/directory_asset_bundle.h b/assets/directory_asset_bundle.h index c710a513796ae..f61ac147ff1fb 100644 --- a/assets/directory_asset_bundle.h +++ b/assets/directory_asset_bundle.h @@ -5,33 +5,31 @@ #ifndef FLUTTER_ASSETS_DIRECTORY_ASSET_BUNDLE_H_ #define FLUTTER_ASSETS_DIRECTORY_ASSET_BUNDLE_H_ -#include -#include - -#include "flutter/assets/asset_provider.h" -#include "lib/fxl/files/unique_fd.h" -#include "lib/fxl/macros.h" -#include "lib/fxl/memory/ref_counted.h" +#include "flutter/assets/asset_resolver.h" +#include "flutter/fml/macros.h" +#include "flutter/fml/memory/ref_counted.h" +#include "flutter/fml/unique_fd.h" namespace blink { -class DirectoryAssetBundle - : public AssetProvider { +class DirectoryAssetBundle : public AssetResolver { public: - explicit DirectoryAssetBundle(std::string directory); - // Expects fd to be valid, otherwise the file descriptor is ignored. - explicit DirectoryAssetBundle(fxl::UniqueFD fd); - virtual ~DirectoryAssetBundle(); - - virtual bool GetAsBuffer(const std::string& asset_name, std::vector* data); + explicit DirectoryAssetBundle(fml::UniqueFD descriptor); - std::string GetPathForAsset(const std::string& asset_name); + ~DirectoryAssetBundle() override; private: - const std::string directory_; - fxl::UniqueFD fd_; + const fml::UniqueFD descriptor_; + bool is_valid_ = false; + + // |blink::AssetResolver| + bool IsValid() const override; + + // |blink::AssetResolver| + std::unique_ptr GetAsMapping( + const std::string& asset_name) const override; - FXL_DISALLOW_COPY_AND_ASSIGN(DirectoryAssetBundle); + FML_DISALLOW_COPY_AND_ASSIGN(DirectoryAssetBundle); }; } // namespace blink diff --git a/assets/unzipper_provider.cc b/assets/unzipper_provider.cc deleted file mode 100644 index 8ed023f9a20e9..0000000000000 --- a/assets/unzipper_provider.cc +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright 2016 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "flutter/assets/unzipper_provider.h" - -#include "lib/fxl/logging.h" -#include "third_party/zlib/contrib/minizip/unzip.h" - -namespace blink { - -UnzipperProvider GetUnzipperProviderForPath(std::string zip_path) { - return [zip_path]() { - zip::UniqueUnzipper unzipper(unzOpen2(zip_path.c_str(), nullptr)); - if (!unzipper.is_valid()) - FXL_LOG(ERROR) << "Unable to open zip file: " << zip_path; - return unzipper; - }; -} - -} // namespace blink diff --git a/assets/unzipper_provider.h b/assets/unzipper_provider.h deleted file mode 100644 index f0f8d9597dffd..0000000000000 --- a/assets/unzipper_provider.h +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright 2016 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef FLUTTER_ASSETS_UNZIP_PROVIDER_H_ -#define FLUTTER_ASSETS_UNZIP_PROVIDER_H_ - -#include - -#include "lib/zip/unique_unzipper.h" - -namespace blink { - -using UnzipperProvider = std::function; - -UnzipperProvider GetUnzipperProviderForPath(std::string zip_path); - -} // namespace blink - -#endif // FLUTTER_ASSETS_UNZIP_PROVIDER_H_ diff --git a/assets/zip_asset_store.cc b/assets/zip_asset_store.cc index c8534fa10c216..7823f6e594396 100644 --- a/assets/zip_asset_store.cc +++ b/assets/zip_asset_store.cc @@ -3,7 +3,7 @@ // found in the LICENSE file. #include "flutter/assets/zip_asset_store.h" -#include "lib/fxl/build_config.h" +#include "flutter/fml/build_config.h" #include @@ -14,66 +14,78 @@ #include #include -#include "flutter/glue/trace_event.h" -#include "lib/fxl/files/eintr_wrapper.h" -#include "lib/fxl/files/unique_fd.h" -#include "lib/zip/unique_unzipper.h" +#include "flutter/fml/trace_event.h" namespace blink { -ZipAssetStore::ZipAssetStore(UnzipperProvider unzipper_provider) - : unzipper_provider_(std::move(unzipper_provider)) { +void UniqueUnzipperTraits::Free(void* file) { + unzClose(file); +} + +ZipAssetStore::ZipAssetStore(std::string file_path) + : file_path_(std::move(file_path)) { BuildStatCache(); } ZipAssetStore::~ZipAssetStore() = default; -bool ZipAssetStore::GetAsBuffer(const std::string& asset_name, - std::vector* data) { - TRACE_EVENT0("flutter", "ZipAssetStore::GetAsBuffer"); +UniqueUnzipper ZipAssetStore::CreateUnzipper() const { + return UniqueUnzipper{::unzOpen2(file_path_.c_str(), nullptr)}; +} + +// |blink::AssetResolver| +bool ZipAssetStore::IsValid() const { + return stat_cache_.size() > 0; +} + +// |blink::AssetResolver| +std::unique_ptr ZipAssetStore::GetAsMapping( + const std::string& asset_name) const { + TRACE_EVENT0("flutter", "ZipAssetStore::GetAsMapping"); auto found = stat_cache_.find(asset_name); if (found == stat_cache_.end()) { - return false; + return nullptr; } - auto unzipper = unzipper_provider_(); + auto unzipper = CreateUnzipper(); if (!unzipper.is_valid()) { - return false; + return nullptr; } int result = UNZ_OK; result = unzGoToFilePos(unzipper.get(), &(found->second.file_pos)); if (result != UNZ_OK) { - FXL_LOG(WARNING) << "unzGetCurrentFileInfo failed, error=" << result; - return false; + FML_LOG(WARNING) << "unzGetCurrentFileInfo failed, error=" << result; + return nullptr; } result = unzOpenCurrentFile(unzipper.get()); if (result != UNZ_OK) { - FXL_LOG(WARNING) << "unzOpenCurrentFile failed, error=" << result; - return false; + FML_LOG(WARNING) << "unzOpenCurrentFile failed, error=" << result; + return nullptr; } - data->resize(found->second.uncompressed_size); + std::vector data(found->second.uncompressed_size); int total_read = 0; - while (total_read < static_cast(data->size())) { + while (total_read < static_cast(data.size())) { int bytes_read = unzReadCurrentFile( - unzipper.get(), data->data() + total_read, data->size() - total_read); + unzipper.get(), data.data() + total_read, data.size() - total_read); if (bytes_read <= 0) { - return false; + return nullptr; } total_read += bytes_read; } - return true; + return std::make_unique(std::move(data)); } void ZipAssetStore::BuildStatCache() { TRACE_EVENT0("flutter", "ZipAssetStore::BuildStatCache"); - auto unzipper = unzipper_provider_(); + + auto unzipper = CreateUnzipper(); if (!unzipper.is_valid()) { return; diff --git a/assets/zip_asset_store.h b/assets/zip_asset_store.h index 1ffda483ba9b7..f801e0b0cca25 100644 --- a/assets/zip_asset_store.h +++ b/assets/zip_asset_store.h @@ -6,21 +6,26 @@ #define FLUTTER_ASSETS_ZIP_ASSET_STORE_H_ #include -#include -#include "flutter/assets/unzipper_provider.h" -#include "lib/fxl/macros.h" -#include "lib/fxl/memory/ref_counted.h" +#include "flutter/assets/asset_resolver.h" +#include "flutter/fml/macros.h" #include "third_party/zlib/contrib/minizip/unzip.h" namespace blink { -class ZipAssetStore : public fxl::RefCountedThreadSafe { +struct UniqueUnzipperTraits { + static inline void* InvalidValue() { return nullptr; } + static inline bool IsValid(void* value) { return value != InvalidValue(); } + static void Free(void* file); +}; + +using UniqueUnzipper = fml::UniqueObject; + +class ZipAssetStore final : public AssetResolver { public: - explicit ZipAssetStore(UnzipperProvider unzipper_provider); - ~ZipAssetStore(); + ZipAssetStore(std::string file_path); - bool GetAsBuffer(const std::string& asset_name, std::vector* data); + ~ZipAssetStore() override; private: struct CacheEntry { @@ -30,12 +35,21 @@ class ZipAssetStore : public fxl::RefCountedThreadSafe { : file_pos(p_file_pos), uncompressed_size(p_uncompressed_size) {} }; - UnzipperProvider unzipper_provider_; - std::map stat_cache_; + std::string file_path_; + mutable std::map stat_cache_; + + // |blink::AssetResolver| + bool IsValid() const override; + + // |blink::AssetResolver| + std::unique_ptr GetAsMapping( + const std::string& asset_name) const override; void BuildStatCache(); - FXL_DISALLOW_COPY_AND_ASSIGN(ZipAssetStore); + UniqueUnzipper CreateUnzipper() const; + + FML_DISALLOW_COPY_AND_ASSIGN(ZipAssetStore); }; } // namespace blink diff --git a/build/git_revision.py b/build/git_revision.py new file mode 100755 index 0000000000000..bc58320306d14 --- /dev/null +++ b/build/git_revision.py @@ -0,0 +1,43 @@ +#!/usr/bin/env python +# +# Copyright 2018 The Flutter Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +"""Get the Git HEAD revision of a specified Git repository.""" + +import sys +import subprocess +import os +import argparse + +def main(): + parser = argparse.ArgumentParser(); + + parser.add_argument('--repository', + action='store', + help='Path to the Git repository.', + required=True) + + args = parser.parse_args() + + repository = os.path.abspath(args.repository) + + if not os.path.exists(repository): + exit -1 + + version = subprocess.check_output([ + 'git', + '-C', + repository, + 'rev-parse', + '--short', + 'HEAD', + ]) + + print version.strip() + + return 0 + +if __name__ == '__main__': + sys.exit(main()) diff --git a/ci/README.md b/ci/README.md new file mode 100644 index 0000000000000..6b19e2f10dac5 --- /dev/null +++ b/ci/README.md @@ -0,0 +1 @@ +This directory includes scripts and tools for continuous integration tests. diff --git a/travis/analyze.sh b/ci/analyze.sh similarity index 78% rename from travis/analyze.sh rename to ci/analyze.sh index 6209e8dbf84fb..c86d506858e0c 100755 --- a/travis/analyze.sh +++ b/ci/analyze.sh @@ -20,7 +20,6 @@ if [ -n "$RESULTS" ]; then fi echo "Analyzing frontend_server..." -pushd flutter/frontend_server/; pub get; popd RESULTS=`dartanalyzer \ --packages=flutter/frontend_server/.packages \ --options flutter/analysis_options.yaml \ @@ -35,7 +34,6 @@ if [ -n "$RESULTS" ]; then fi echo "Analyzing flutter_kernel_transformers..." -pushd flutter/flutter_kernel_transformers/; pub get; popd RESULTS=`dartanalyzer \ --packages=flutter/flutter_kernel_transformers/.packages \ --options flutter/analysis_options.yaml \ @@ -48,3 +46,18 @@ if [ -n "$RESULTS" ]; then echo "Failed." exit 1; fi + +echo "Analyzing tools/licenses..." +(cd flutter/tools/licenses && pub get) +RESULTS=`dartanalyzer \ + --packages=flutter/tools/licenses/.packages \ + --options flutter/tools/licenses/analysis_options.yaml \ + flutter/tools/licenses \ + 2>&1 \ + | grep -Ev "No issues found!" \ + | grep -Ev "Analyzing.+tools/licenses"` +echo "$RESULTS" +if [ -n "$RESULTS" ]; then + echo "Failed." + exit 1; +fi diff --git a/travis/build.sh b/ci/build.sh similarity index 72% rename from travis/build.sh rename to ci/build.sh index 73252bbb84375..bf517b64cc0fe 100755 --- a/travis/build.sh +++ b/ci/build.sh @@ -7,5 +7,5 @@ cd .. flutter/tools/gn --unoptimized ninja -C out/host_debug_unopt generate_dart_ui -flutter/travis/analyze.sh -flutter/travis/licenses.sh +flutter/ci/analyze.sh +flutter/ci/licenses.sh diff --git a/ci/check_roll.sh b/ci/check_roll.sh new file mode 100755 index 0000000000000..296300d3eaef8 --- /dev/null +++ b/ci/check_roll.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +if git remote get-url upstream >/dev/null 2>&1; then + UPSTREAM=upstream/master +else + UPSTREAM=master +fi; + +FLUTTER_VERSION="$(curl -s https://raw.githubusercontent.com/flutter/flutter/master/bin/internal/engine.version)" +BEHIND="$(git rev-list $FLUTTER_VERSION..$UPSTREAM --oneline | wc -l)" +MAX_BEHIND=16 # no more than 4 bisections to identify the issue + +if [[ $BEHIND -le $MAX_BEHIND ]]; then + echo "OK, the flutter/engine to flutter/flutter roll is only $BEHIND commits behind." +else + echo "ERROR: The flutter/engine to flutter/flutter roll is $BEHIND commits behind!" + echo " It exceeds our max allowance of $MAX_BEHIND. Unless that this commit fixes the roll," + echo " please roll engine into flutter first before merging more commits into engine." + exit 1 +fi + diff --git a/ci/docker/build/Dockerfile b/ci/docker/build/Dockerfile new file mode 100644 index 0000000000000..81655f7adf228 --- /dev/null +++ b/ci/docker/build/Dockerfile @@ -0,0 +1,25 @@ +FROM ubuntu:14.04 + +ENV DEPOT_TOOLS_PATH $HOME/depot_tools +ENV ENGINE_PATH $HOME/engine + +RUN apt-get update +RUN apt-get install -y git wget curl unzip python lsb-release sudo + +RUN git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git $DEPOT_TOOLS_PATH +ENV PATH $PATH:$DEPOT_TOOLS_PATH + +RUN mkdir --parents $ENGINE_PATH +WORKDIR $ENGINE_PATH +ADD engine_gclient .gclient +RUN gclient sync + +WORKDIR $ENGINE_PATH/src +RUN ./build/install-build-deps.sh --no-prompt +RUN ./build/install-build-deps-android.sh --no-prompt + +WORKDIR $HOME/dart +RUN wget https://storage.googleapis.com/dart-archive/channels/dev/release/2.0.0-dev.63.0/sdk/dartsdk-linux-x64-release.zip +RUN unzip dartsdk-linux-x64-release.zip +ENV PATH $PATH:$HOME/dart/dart-sdk/bin + diff --git a/ci/docker/build/README.md b/ci/docker/build/README.md new file mode 100644 index 0000000000000..a4f12e16ca34e --- /dev/null +++ b/ci/docker/build/README.md @@ -0,0 +1,12 @@ +This directory includes scripts to build the docker container image used for +building flutter/engine in our CI system (currently [Cirrus](cirrus-ci.org)). + +In order to run the scripts, you have to setup `docker` and `gcloud`. Please +refer to internal doc go/installdocker for how to setup `docker` on gLinux. + +After setup, +* edit `Dockerfile` to change how the container image is built. +* run `./build_docker.sh` to build the container image. +* run `./push_docker.sh` to push the image to google cloud registry. This will + affect our CI tests. + diff --git a/ci/docker/build/build_docker.sh b/ci/docker/build/build_docker.sh new file mode 100755 index 0000000000000..5eeb0fc83d565 --- /dev/null +++ b/ci/docker/build/build_docker.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +# pull to make sure we are not rebuilding for nothing +docker pull gcr.io/flutter-cirrus/build-engine-image:latest + +docker build --tag gcr.io/flutter-cirrus/build-engine-image:latest . + diff --git a/travis/gclient b/ci/docker/build/engine_gclient similarity index 87% rename from travis/gclient rename to ci/docker/build/engine_gclient index 030049953eaa0..d89fe98de2b57 100644 --- a/travis/gclient +++ b/ci/docker/build/engine_gclient @@ -5,5 +5,3 @@ solutions = [{ "managed" : False, "safesync_url": "", }] - -target_os = ["android"] diff --git a/ci/docker/build/push_docker.sh b/ci/docker/build/push_docker.sh new file mode 100755 index 0000000000000..80c79cb8d7c25 --- /dev/null +++ b/ci/docker/build/push_docker.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +docker push gcr.io/flutter-cirrus/build-engine-image:latest + diff --git a/ci/format.sh b/ci/format.sh new file mode 100755 index 0000000000000..de00b6d3a67b7 --- /dev/null +++ b/ci/format.sh @@ -0,0 +1,75 @@ +#!/bin/bash +# +# Code formatting presubmit +# +# This presubmit script ensures that code under the src/flutter directory is +# formatted according to the Flutter engine style requirements. On failure, a +# diff is emitted that can be applied from within the src/flutter directory +# via: +# +# patch -p0 < diff.patch + +set -e +echo "Checking formatting..." + +case "$(uname -s)" in + Darwin) + OS="mac-x64" + ;; + Linux) + OS="linux-x64" + ;; + *) + echo "Unknown operating system." + exit -1 + ;; +esac + +# Tools +CLANG_FORMAT="../buildtools/$OS/clang/bin/clang-format" +$CLANG_FORMAT --version + +# Compute the diffs. +FILETYPES="*.c *.cc *.cpp *.h *.m *.mm" +DIFF_OPTS="-U0 --no-color --name-only" + +if git remote get-url upstream >/dev/null 2>&1; then + UPSTREAM=upstream +else + UPSTREAM=origin +fi; + + +BASE_SHA="$(git fetch $UPSTREAM master > /dev/null 2>&1 && \ + (git merge-base --fork-point FETCH_HEAD HEAD || git merge-base FETCH_HEAD HEAD))" +FILES_TO_CHECK="$(git diff $DIFF_OPTS $BASE_SHA..HEAD -- $FILETYPES)" + +FAILED_CHECKS=0 +for f in $FILES_TO_CHECK; do + set +e + CUR_DIFF="$(diff -u "$f" <("$CLANG_FORMAT" --style=file "$f"))" + set -e + if [[ ! -z "$CUR_DIFF" ]]; then + echo "$CUR_DIFF" + FAILED_CHECKS=$(($FAILED_CHECKS+1)) + fi +done + +if [[ $FAILED_CHECKS -ne 0 ]]; then + echo "" + echo "ERROR: Some files are formatted incorrectly. To fix, apply diffs above via patch -p0." + exit 1 +fi + +FILETYPES="*.dart" + +set +e +TRAILING_SPACES=$(git diff $DIFF_OPTS $BASE_SHA..HEAD -- $FILETYPES | xargs grep --line-number --with-filename '[[:blank:]]\+$') +set -e + +if [[ ! -z "$TRAILING_SPACES" ]]; then + echo "$TRAILING_SPACES" + echo "" + echo "ERROR: Some files have trailing spaces. To fix, try something like \`find . -name "*.dart" -exec sed -i -e 's/\s\+$//' {} \;\`." + exit 1 +fi diff --git a/travis/licenses.sh b/ci/licenses.sh similarity index 70% rename from travis/licenses.sh rename to ci/licenses.sh index adc74b5c553bd..472285b5b88c3 100755 --- a/travis/licenses.sh +++ b/ci/licenses.sh @@ -3,10 +3,10 @@ set -e shopt -s nullglob echo "Verifying license script is still happy..." -(cd flutter/tools/licenses; pub get; dart --checked lib/main.dart --src ../../.. --out ../../../out/license_script_output --golden ../../travis/licenses_golden) +(cd flutter/tools/licenses; pub get; dart --enable-asserts lib/main.dart --src ../../.. --out ../../../out/license_script_output --golden ../../ci/licenses_golden) for f in out/license_script_output/licenses_*; do - if ! cmp -s flutter/travis/licenses_golden/$(basename $f) $f + if ! cmp -s flutter/ci/licenses_golden/$(basename $f) $f then echo "License script got different results than expected for $f." echo "Please rerun the licenses script locally to verify that it is" @@ -16,7 +16,7 @@ for f in out/license_script_output/licenses_*; do echo "For more information, see the script in:" echo " https://github.com/flutter/engine/tree/master/tools/licenses" echo "" - diff -U 6 flutter/travis/licenses_golden/$(basename $f) $f + diff -U 6 flutter/ci/licenses_golden/$(basename $f) $f exit 1 fi done diff --git a/ci/licenses_golden/licenses_flutter b/ci/licenses_golden/licenses_flutter new file mode 100644 index 0000000000000..f697e110945bb --- /dev/null +++ b/ci/licenses_golden/licenses_flutter @@ -0,0 +1,1239 @@ +UNUSED LICENSES: + + +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +USED LICENSES: + +==================================================================================================== +LIBRARY: engine +LIBRARY: txt +ORIGIN: ../../../flutter/flow/layers/physical_shape_layer.cc + ../../../LICENSE +TYPE: LicenseType.bsd +FILE: ../../../flutter/flow/debug_print.cc +FILE: ../../../flutter/flow/debug_print.h +FILE: ../../../flutter/flow/export_node.h +FILE: ../../../flutter/flow/layers/physical_shape_layer.cc +FILE: ../../../flutter/flow/layers/physical_shape_layer.h +FILE: ../../../flutter/flow/layers/texture_layer.cc +FILE: ../../../flutter/flow/layers/texture_layer.h +FILE: ../../../flutter/flow/matrix_decomposition.cc +FILE: ../../../flutter/flow/matrix_decomposition.h +FILE: ../../../flutter/flow/matrix_decomposition_unittests.cc +FILE: ../../../flutter/flow/paint_utils.cc +FILE: ../../../flutter/flow/paint_utils.h +FILE: ../../../flutter/flow/raster_cache_key.cc +FILE: ../../../flutter/flow/raster_cache_key.h +FILE: ../../../flutter/flow/raster_cache_unittests.cc +FILE: ../../../flutter/flow/texture.cc +FILE: ../../../flutter/flow/texture.h +FILE: ../../../flutter/fml/icu_util.cc +FILE: ../../../flutter/fml/icu_util.h +FILE: ../../../flutter/fml/mapping.h +FILE: ../../../flutter/fml/message_loop.cc +FILE: ../../../flutter/fml/message_loop.h +FILE: ../../../flutter/fml/message_loop_impl.cc +FILE: ../../../flutter/fml/message_loop_impl.h +FILE: ../../../flutter/fml/message_loop_unittests.cc +FILE: ../../../flutter/fml/paths.h +FILE: ../../../flutter/fml/platform/android/jni_util.cc +FILE: ../../../flutter/fml/platform/android/jni_util.h +FILE: ../../../flutter/fml/platform/android/jni_weak_ref.cc +FILE: ../../../flutter/fml/platform/android/jni_weak_ref.h +FILE: ../../../flutter/fml/platform/android/message_loop_android.cc +FILE: ../../../flutter/fml/platform/android/message_loop_android.h +FILE: ../../../flutter/fml/platform/android/paths_android.cc +FILE: ../../../flutter/fml/platform/android/scoped_java_ref.cc +FILE: ../../../flutter/fml/platform/android/scoped_java_ref.h +FILE: ../../../flutter/fml/platform/darwin/cf_utils.cc +FILE: ../../../flutter/fml/platform/darwin/cf_utils.h +FILE: ../../../flutter/fml/platform/darwin/message_loop_darwin.h +FILE: ../../../flutter/fml/platform/darwin/message_loop_darwin.mm +FILE: ../../../flutter/fml/platform/darwin/paths_darwin.mm +FILE: ../../../flutter/fml/platform/darwin/platform_version.h +FILE: ../../../flutter/fml/platform/darwin/platform_version.mm +FILE: ../../../flutter/fml/platform/darwin/scoped_block.mm +FILE: ../../../flutter/fml/platform/darwin/scoped_nsobject.h +FILE: ../../../flutter/fml/platform/darwin/scoped_nsobject.mm +FILE: ../../../flutter/fml/platform/linux/message_loop_linux.cc +FILE: ../../../flutter/fml/platform/linux/message_loop_linux.h +FILE: ../../../flutter/fml/platform/linux/paths_linux.cc +FILE: ../../../flutter/fml/platform/linux/timerfd.cc +FILE: ../../../flutter/fml/platform/linux/timerfd.h +FILE: ../../../flutter/fml/platform/posix/mapping_posix.cc +FILE: ../../../flutter/fml/platform/win/mapping_win.cc +FILE: ../../../flutter/fml/platform/win/message_loop_win.cc +FILE: ../../../flutter/fml/platform/win/message_loop_win.h +FILE: ../../../flutter/fml/platform/win/paths_win.cc +FILE: ../../../flutter/fml/task_runner.cc +FILE: ../../../flutter/fml/task_runner.h +FILE: ../../../flutter/fml/thread.cc +FILE: ../../../flutter/fml/thread.h +FILE: ../../../flutter/fml/thread_local.h +FILE: ../../../flutter/fml/thread_local_unittests.cc +FILE: ../../../flutter/fml/thread_unittests.cc +FILE: ../../../flutter/fml/trace_event.cc +FILE: ../../../flutter/fml/trace_event.h +FILE: ../../../flutter/lib/ui/compositing/scene_host.cc +FILE: ../../../flutter/lib/ui/compositing/scene_host.h +FILE: ../../../flutter/lib/ui/painting/codec.cc +FILE: ../../../flutter/lib/ui/painting/codec.h +FILE: ../../../flutter/lib/ui/painting/frame_info.cc +FILE: ../../../flutter/lib/ui/painting/frame_info.h +FILE: ../../../flutter/lib/ui/painting/vertices.cc +FILE: ../../../flutter/lib/ui/painting/vertices.h +FILE: ../../../flutter/lib/ui/text/font_collection.cc +FILE: ../../../flutter/lib/ui/text/font_collection.h +FILE: ../../../flutter/shell/gpu/gpu_surface_software.cc +FILE: ../../../flutter/shell/gpu/gpu_surface_software.h +FILE: ../../../flutter/shell/platform/android/android_external_texture_gl.cc +FILE: ../../../flutter/shell/platform/android/android_external_texture_gl.h +FILE: ../../../flutter/shell/platform/android/android_surface_software.cc +FILE: ../../../flutter/shell/platform/android/android_surface_software.h +FILE: ../../../flutter/shell/platform/android/io/flutter/app/FlutterActivityDelegate.java +FILE: ../../../flutter/shell/platform/android/io/flutter/app/FlutterActivityEvents.java +FILE: ../../../flutter/shell/platform/android/io/flutter/app/FlutterFragmentActivity.java +FILE: ../../../flutter/shell/platform/android/io/flutter/app/FlutterPluginRegistry.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/BasicMessageChannel.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/BinaryCodec.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/BinaryMessenger.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/EventChannel.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/FlutterException.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/JSONMessageCodec.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/JSONMethodCodec.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/MessageCodec.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/MethodCall.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/MethodChannel.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/MethodCodec.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/PluginRegistry.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/StandardMessageCodec.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/StandardMethodCodec.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/StringCodec.java +FILE: ../../../flutter/shell/platform/android/io/flutter/util/PathUtils.java +FILE: ../../../flutter/shell/platform/android/io/flutter/util/Preconditions.java +FILE: ../../../flutter/shell/platform/android/io/flutter/view/FlutterNativeView.java +FILE: ../../../flutter/shell/platform/android/io/flutter/view/TextureRegistry.java +FILE: ../../../flutter/shell/platform/android/platform_view_android_jni.cc +FILE: ../../../flutter/shell/platform/android/platform_view_android_jni.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterBinaryMessenger.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterChannels.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterCodecs.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterHeadlessDartRunner.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterNavigationController.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterPlugin.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterTexture.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterChannels.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterCodecs.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterHeadlessDartRunner.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterNavigationController.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterStandardCodec.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterStandardCodec_Internal.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterUmbrellaImport.m +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/flutter_codecs_unittest.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/flutter_standard_codec_unittest.mm +FILE: ../../../flutter/shell/platform/darwin/ios/ios_external_texture_gl.h +FILE: ../../../flutter/shell/platform/darwin/ios/ios_external_texture_gl.mm +FILE: ../../../flutter/shell/platform/darwin/ios/ios_gl_context.h +FILE: ../../../flutter/shell/platform/darwin/ios/ios_gl_context.mm +FILE: ../../../flutter/shell/platform/darwin/ios/ios_surface.h +FILE: ../../../flutter/shell/platform/darwin/ios/ios_surface.mm +FILE: ../../../flutter/shell/platform/darwin/ios/ios_surface_gl.h +FILE: ../../../flutter/shell/platform/darwin/ios/ios_surface_gl.mm +FILE: ../../../flutter/shell/platform/darwin/ios/ios_surface_software.h +FILE: ../../../flutter/shell/platform/darwin/ios/ios_surface_software.mm +FILE: ../../../flutter/shell/platform/embedder/embedder.cc +FILE: ../../../flutter/shell/platform/embedder/embedder_include.c +FILE: ../../../flutter/shell/platform/embedder/platform_view_embedder.cc +FILE: ../../../flutter/shell/platform/embedder/platform_view_embedder.h +FILE: ../../../flutter/third_party/txt/src/txt/platform.cc +FILE: ../../../flutter/third_party/txt/src/txt/platform.h +FILE: ../../../flutter/third_party/txt/src/txt/platform_android.cc +FILE: ../../../flutter/third_party/txt/src/txt/platform_mac.mm +FILE: ../../../flutter/vulkan/skia_vulkan_header.h +FILE: ../../../flutter/vulkan/vulkan_native_surface_magma.cc +FILE: ../../../flutter/vulkan/vulkan_native_surface_magma.h +FILE: ../../../flutter/vulkan/vulkan_provider.cc +FILE: ../../../flutter/vulkan/vulkan_provider.h +---------------------------------------------------------------------------------------------------- +Copyright 2017 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: engine +ORIGIN: ../../../LICENSE +TYPE: LicenseType.bsd +FILE: ../../../flutter/DEPS +FILE: ../../../flutter/lib/io/dart_io.cc +FILE: ../../../flutter/lib/io/dart_io.h +FILE: ../../../flutter/lib/snapshot/libraries.json +FILE: ../../../flutter/lib/ui/dart_runtime_hooks.cc +FILE: ../../../flutter/lib/ui/dart_runtime_hooks.h +FILE: ../../../flutter/lib/ui/dart_ui.cc +FILE: ../../../flutter/lib/ui/dart_ui.h +FILE: ../../../flutter/lib/ui/natives.dart +FILE: ../../../flutter/lib/ui/window/window.h +FILE: ../../../flutter/shell/common/skia_event_tracer_impl.cc +FILE: ../../../flutter/shell/platform/android/apk_asset_provider.cc +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/JSONUtil.java +FILE: ../../../flutter/shell/platform/darwin/desktop/Info.plist +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Flutter.podspec +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Info.plist +FILE: ../../../flutter/shell/platform/darwin/ios/framework/module.modulemap +FILE: ../../../flutter/shell/platform/darwin/ios/headless_platform_view_ios.mm +FILE: ../../../flutter/shell/platform/embedder/assets/EmbedderInfo.plist +FILE: ../../../flutter/shell/platform/embedder/assets/embedder.modulemap +FILE: ../../../flutter/shell/platform/embedder/fixtures/simple_main.dart +FILE: ../../../flutter/sky/tools/roll/patches/chromium/android_build.patch +---------------------------------------------------------------------------------------------------- +Copyright 2014 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: engine +ORIGIN: ../../../flutter/assets/asset_manager.cc + ../../../LICENSE +TYPE: LicenseType.bsd +FILE: ../../../flutter/assets/asset_manager.cc +FILE: ../../../flutter/assets/asset_manager.h +FILE: ../../../flutter/assets/asset_resolver.h +FILE: ../../../flutter/common/task_runners.cc +FILE: ../../../flutter/common/task_runners.h +FILE: ../../../flutter/flow/layers/default_layer_builder.cc +FILE: ../../../flutter/flow/layers/default_layer_builder.h +FILE: ../../../flutter/flow/layers/layer_builder.cc +FILE: ../../../flutter/flow/layers/layer_builder.h +FILE: ../../../flutter/flow/skia_gpu_object.cc +FILE: ../../../flutter/flow/skia_gpu_object.h +FILE: ../../../flutter/runtime/dart_isolate.cc +FILE: ../../../flutter/runtime/dart_isolate.h +FILE: ../../../flutter/runtime/dart_isolate_unittests.cc +FILE: ../../../flutter/runtime/dart_snapshot.cc +FILE: ../../../flutter/runtime/dart_snapshot.h +FILE: ../../../flutter/runtime/dart_snapshot_buffer.cc +FILE: ../../../flutter/runtime/dart_snapshot_buffer.h +FILE: ../../../flutter/runtime/dart_vm.cc +FILE: ../../../flutter/runtime/dart_vm.h +FILE: ../../../flutter/runtime/dart_vm_unittests.cc +FILE: ../../../flutter/runtime/service_protocol.cc +FILE: ../../../flutter/runtime/service_protocol.h +FILE: ../../../flutter/shell/common/io_manager.cc +FILE: ../../../flutter/shell/common/io_manager.h +FILE: ../../../flutter/shell/common/run_configuration.cc +FILE: ../../../flutter/shell/common/run_configuration.h +FILE: ../../../flutter/shell/common/shell_unittests.cc +FILE: ../../../flutter/shell/common/thread_host.cc +FILE: ../../../flutter/shell/common/thread_host.h +FILE: ../../../flutter/shell/platform/darwin/common/command_line.h +FILE: ../../../flutter/shell/platform/darwin/common/command_line.mm +FILE: ../../../flutter/shell/platform/darwin/desktop/flutter_application_delegate.h +FILE: ../../../flutter/shell/platform/darwin/desktop/flutter_application_delegate.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterViewController_Internal.h +FILE: ../../../flutter/shell/platform/embedder/embedder.h +FILE: ../../../flutter/shell/platform/embedder/embedder_engine.cc +FILE: ../../../flutter/shell/platform/embedder/embedder_engine.h +---------------------------------------------------------------------------------------------------- +Copyright 2017 The Flutter Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: engine +ORIGIN: ../../../flutter/assets/directory_asset_bundle.cc + ../../../LICENSE +TYPE: LicenseType.bsd +FILE: ../../../flutter/assets/directory_asset_bundle.cc +FILE: ../../../flutter/assets/directory_asset_bundle.h +FILE: ../../../flutter/assets/zip_asset_store.cc +FILE: ../../../flutter/assets/zip_asset_store.h +FILE: ../../../flutter/common/settings.cc +FILE: ../../../flutter/common/settings.h +FILE: ../../../flutter/flow/export_node.cc +FILE: ../../../flutter/flow/layers/backdrop_filter_layer.cc +FILE: ../../../flutter/flow/layers/backdrop_filter_layer.h +FILE: ../../../flutter/flow/layers/child_scene_layer.cc +FILE: ../../../flutter/flow/layers/child_scene_layer.h +FILE: ../../../flutter/flow/layers/shader_mask_layer.cc +FILE: ../../../flutter/flow/layers/shader_mask_layer.h +FILE: ../../../flutter/flow/raster_cache.cc +FILE: ../../../flutter/flow/raster_cache.h +FILE: ../../../flutter/flow/scene_update_context.cc +FILE: ../../../flutter/flow/scene_update_context.h +FILE: ../../../flutter/lib/ui/painting/image_filter.cc +FILE: ../../../flutter/lib/ui/painting/image_filter.h +FILE: ../../../flutter/lib/ui/semantics.dart +FILE: ../../../flutter/lib/ui/semantics/semantics_node.cc +FILE: ../../../flutter/lib/ui/semantics/semantics_node.h +FILE: ../../../flutter/lib/ui/semantics/semantics_update.cc +FILE: ../../../flutter/lib/ui/semantics/semantics_update.h +FILE: ../../../flutter/lib/ui/semantics/semantics_update_builder.cc +FILE: ../../../flutter/lib/ui/semantics/semantics_update_builder.h +FILE: ../../../flutter/lib/ui/text/text_box.h +FILE: ../../../flutter/lib/ui/window/platform_message.cc +FILE: ../../../flutter/lib/ui/window/platform_message.h +FILE: ../../../flutter/lib/ui/window/platform_message_response.cc +FILE: ../../../flutter/lib/ui/window/platform_message_response.h +FILE: ../../../flutter/lib/ui/window/platform_message_response_dart.cc +FILE: ../../../flutter/lib/ui/window/platform_message_response_dart.h +FILE: ../../../flutter/lib/ui/window/pointer_data.h +FILE: ../../../flutter/lib/ui/window/pointer_data_packet.h +FILE: ../../../flutter/lib/ui/window/viewport_metrics.h +FILE: ../../../flutter/runtime/embedder_resources.cc +FILE: ../../../flutter/runtime/embedder_resources.h +FILE: ../../../flutter/runtime/fixtures/simple_main.dart +FILE: ../../../flutter/runtime/start_up.cc +FILE: ../../../flutter/runtime/start_up.h +FILE: ../../../flutter/runtime/test_font_data.cc +FILE: ../../../flutter/runtime/test_font_data.h +FILE: ../../../flutter/shell/common/skia_event_tracer_impl.h +FILE: ../../../flutter/shell/common/surface.cc +FILE: ../../../flutter/shell/common/surface.h +FILE: ../../../flutter/shell/common/vsync_waiter_fallback.cc +FILE: ../../../flutter/shell/gpu/gpu_surface_gl.cc +FILE: ../../../flutter/shell/gpu/gpu_surface_gl.h +FILE: ../../../flutter/shell/gpu/gpu_surface_vulkan.cc +FILE: ../../../flutter/shell/gpu/gpu_surface_vulkan.h +FILE: ../../../flutter/shell/platform/android/android_context_gl.cc +FILE: ../../../flutter/shell/platform/android/android_context_gl.h +FILE: ../../../flutter/shell/platform/android/android_environment_gl.cc +FILE: ../../../flutter/shell/platform/android/android_environment_gl.h +FILE: ../../../flutter/shell/platform/android/android_native_window.cc +FILE: ../../../flutter/shell/platform/android/android_native_window.h +FILE: ../../../flutter/shell/platform/android/android_surface.cc +FILE: ../../../flutter/shell/platform/android/android_surface.h +FILE: ../../../flutter/shell/platform/android/android_surface_gl.cc +FILE: ../../../flutter/shell/platform/android/android_surface_gl.h +FILE: ../../../flutter/shell/platform/android/android_surface_vulkan.cc +FILE: ../../../flutter/shell/platform/android/android_surface_vulkan.h +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/common/ActivityLifecycleListener.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/editing/InputConnectionAdaptor.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/editing/TextInputPlugin.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/PlatformPlugin.java +FILE: ../../../flutter/shell/platform/android/io/flutter/view/VsyncWaiter.java +FILE: ../../../flutter/shell/platform/android/vsync_waiter_android.cc +FILE: ../../../flutter/shell/platform/android/vsync_waiter_android.h +FILE: ../../../flutter/shell/platform/darwin/common/buffer_conversions.mm +FILE: ../../../flutter/shell/platform/darwin/desktop/vsync_waiter_mac.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/Flutter.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterAppDelegate.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterDartProject.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterMacros.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterViewController.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterDartProject.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterDartProject_Internal.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterPlatformPlugin.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterPlatformPlugin.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputDelegate.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterTextInputPlugin.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterView.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterView.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterViewController.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/accessibility_bridge.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/accessibility_bridge.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/flutter_touch_mapper.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/flutter_touch_mapper.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/platform_message_router.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/platform_message_router.mm +FILE: ../../../flutter/shell/platform/darwin/ios/platform_view_ios.h +FILE: ../../../flutter/shell/platform/darwin/ios/platform_view_ios.mm +FILE: ../../../flutter/sky/packages/flutter_services/lib/empty.dart +FILE: ../../../flutter/synchronization/pipeline.cc +FILE: ../../../flutter/synchronization/pipeline.h +FILE: ../../../flutter/synchronization/semaphore.cc +FILE: ../../../flutter/synchronization/semaphore.h +FILE: ../../../flutter/synchronization/semaphore_unittest.cc +FILE: ../../../flutter/vulkan/vulkan_application.cc +FILE: ../../../flutter/vulkan/vulkan_application.h +FILE: ../../../flutter/vulkan/vulkan_backbuffer.cc +FILE: ../../../flutter/vulkan/vulkan_backbuffer.h +FILE: ../../../flutter/vulkan/vulkan_command_buffer.cc +FILE: ../../../flutter/vulkan/vulkan_command_buffer.h +FILE: ../../../flutter/vulkan/vulkan_debug_report.cc +FILE: ../../../flutter/vulkan/vulkan_debug_report.h +FILE: ../../../flutter/vulkan/vulkan_device.cc +FILE: ../../../flutter/vulkan/vulkan_device.h +FILE: ../../../flutter/vulkan/vulkan_handle.cc +FILE: ../../../flutter/vulkan/vulkan_handle.h +FILE: ../../../flutter/vulkan/vulkan_image.cc +FILE: ../../../flutter/vulkan/vulkan_image.h +FILE: ../../../flutter/vulkan/vulkan_interface.cc +FILE: ../../../flutter/vulkan/vulkan_interface.h +FILE: ../../../flutter/vulkan/vulkan_native_surface.cc +FILE: ../../../flutter/vulkan/vulkan_native_surface.h +FILE: ../../../flutter/vulkan/vulkan_native_surface_android.cc +FILE: ../../../flutter/vulkan/vulkan_native_surface_android.h +FILE: ../../../flutter/vulkan/vulkan_proc_table.cc +FILE: ../../../flutter/vulkan/vulkan_proc_table.h +FILE: ../../../flutter/vulkan/vulkan_surface.cc +FILE: ../../../flutter/vulkan/vulkan_surface.h +FILE: ../../../flutter/vulkan/vulkan_swapchain.cc +FILE: ../../../flutter/vulkan/vulkan_swapchain.h +FILE: ../../../flutter/vulkan/vulkan_utilities.cc +FILE: ../../../flutter/vulkan/vulkan_utilities.h +FILE: ../../../flutter/vulkan/vulkan_window.cc +FILE: ../../../flutter/vulkan/vulkan_window.h +---------------------------------------------------------------------------------------------------- +Copyright 2016 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: engine +ORIGIN: ../../../flutter/flutter_kernel_transformers/lib/track_widget_constructor_locations.dart + ../../../LICENSE +TYPE: LicenseType.bsd +FILE: ../../../flutter/flutter_kernel_transformers/lib/track_widget_constructor_locations.dart +FILE: ../../../flutter/fml/paths_unittests.cc +FILE: ../../../flutter/lib/ui/isolate_name_server.dart +FILE: ../../../flutter/lib/ui/painting/image_encoding.cc +FILE: ../../../flutter/lib/ui/painting/image_encoding.h +FILE: ../../../flutter/lib/ui/plugins.dart +FILE: ../../../flutter/lib/ui/semantics/custom_accessibility_action.cc +FILE: ../../../flutter/lib/ui/semantics/custom_accessibility_action.h +FILE: ../../../flutter/lib/ui/text/asset_manager_font_provider.cc +FILE: ../../../flutter/lib/ui/text/asset_manager_font_provider.h +FILE: ../../../flutter/shell/platform/android/apk_asset_provider.h +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/PlatformView.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/PlatformViewFactory.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/PlatformViewRegistry.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/PlatformViewRegistryImpl.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/PlatformViewsController.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/SingleViewPresentation.java +FILE: ../../../flutter/shell/platform/android/io/flutter/plugin/platform/VirtualDisplayController.java +FILE: ../../../flutter/shell/platform/android/io/flutter/view/FlutterCallbackInformation.java +FILE: ../../../flutter/shell/platform/android/io/flutter/view/FlutterRunArguments.java +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterCallbackCache.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Headers/FlutterPluginAppLifeCycleDelegate.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterCallbackCache.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterCallbackCache_Internal.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterPluginAppLifeCycleDelegate.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/accessibility_text_entry.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/accessibility_text_entry.mm +FILE: ../../../flutter/shell/platform/darwin/ios/headless_platform_view_ios.h +---------------------------------------------------------------------------------------------------- +Copyright 2018 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: engine +ORIGIN: ../../../flutter/fml/platform/darwin/scoped_block.h + ../../../LICENSE +TYPE: LicenseType.bsd +FILE: ../../../flutter/fml/platform/darwin/scoped_block.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2013 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: engine +ORIGIN: ../../../flutter/fml/platform/fuchsia/paths_fuchsia.cc + ../../../LICENSE +TYPE: LicenseType.bsd +FILE: ../../../flutter/fml/file.h +FILE: ../../../flutter/fml/macros.h +FILE: ../../../flutter/fml/mapping.cc +FILE: ../../../flutter/fml/message.cc +FILE: ../../../flutter/fml/message.h +FILE: ../../../flutter/fml/message_unittests.cc +FILE: ../../../flutter/fml/native_library.h +FILE: ../../../flutter/fml/paths.cc +FILE: ../../../flutter/fml/platform/fuchsia/paths_fuchsia.cc +FILE: ../../../flutter/fml/platform/posix/file_posix.cc +FILE: ../../../flutter/fml/platform/posix/native_library_posix.cc +FILE: ../../../flutter/fml/platform/posix/paths_posix.cc +FILE: ../../../flutter/fml/platform/win/file_win.cc +FILE: ../../../flutter/fml/platform/win/native_library_win.cc +FILE: ../../../flutter/fml/platform/win/wstring_conversion.h +FILE: ../../../flutter/fml/unique_fd.cc +FILE: ../../../flutter/fml/unique_fd.h +FILE: ../../../flutter/fml/unique_object.h +FILE: ../../../flutter/lib/ui/isolate_name_server/isolate_name_server.cc +FILE: ../../../flutter/lib/ui/isolate_name_server/isolate_name_server.h +FILE: ../../../flutter/lib/ui/isolate_name_server/isolate_name_server_natives.cc +FILE: ../../../flutter/lib/ui/isolate_name_server/isolate_name_server_natives.h +FILE: ../../../flutter/lib/ui/plugins/callback_cache.cc +FILE: ../../../flutter/lib/ui/plugins/callback_cache.h +FILE: ../../../flutter/shell/common/isolate_configuration.cc +FILE: ../../../flutter/shell/common/isolate_configuration.h +FILE: ../../../flutter/shell/platform/android/android_shell_holder.cc +FILE: ../../../flutter/shell/platform/android/android_shell_holder.h +FILE: ../../../flutter/shell/platform/android/platform_message_response_android.cc +FILE: ../../../flutter/shell/platform/android/platform_message_response_android.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterAppDelegate_Internal.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/platform_message_response_darwin.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/platform_message_response_darwin.mm +FILE: ../../../flutter/shell/platform/embedder/embedder_surface.cc +FILE: ../../../flutter/shell/platform/embedder/embedder_surface.h +FILE: ../../../flutter/shell/platform/embedder/embedder_surface_gl.cc +FILE: ../../../flutter/shell/platform/embedder/embedder_surface_gl.h +FILE: ../../../flutter/shell/platform/embedder/embedder_surface_software.cc +FILE: ../../../flutter/shell/platform/embedder/embedder_surface_software.h +FILE: ../../../flutter/shell/version/version.cc +FILE: ../../../flutter/shell/version/version.h +---------------------------------------------------------------------------------------------------- +Copyright 2018 The Flutter Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: engine +ORIGIN: ../../../flutter/fml/time/time_delta_unittest.cc + ../../../third_party/tonic/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../flutter/fml/export.h +FILE: ../../../flutter/fml/time/time_delta_unittest.cc +FILE: ../../../flutter/fml/time/time_point_unittest.cc +---------------------------------------------------------------------------------------------------- +Copyright 2017 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: engine +ORIGIN: ../../../flutter/lib/ui/painting/image.cc + ../../../LICENSE +TYPE: LicenseType.bsd +FILE: ../../../flutter/lib/ui/painting/image.cc +FILE: ../../../flutter/lib/ui/painting/image.h +FILE: ../../../flutter/shell/common/switches.cc +FILE: ../../../flutter/shell/common/switches.h +FILE: ../../../flutter/shell/platform/android/io/flutter/view/AccessibilityBridge.java +FILE: ../../../flutter/shell/platform/android/io/flutter/view/FlutterMain.java +FILE: ../../../flutter/shell/platform/android/io/flutter/view/FlutterView.java +---------------------------------------------------------------------------------------------------- +Copyright 2013 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: engine +ORIGIN: ../../../third_party/icu/scripts/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../flutter/flow/compositor_context.cc +FILE: ../../../flutter/flow/compositor_context.h +FILE: ../../../flutter/flow/instrumentation.cc +FILE: ../../../flutter/flow/instrumentation.h +FILE: ../../../flutter/flow/layers/clip_path_layer.cc +FILE: ../../../flutter/flow/layers/clip_path_layer.h +FILE: ../../../flutter/flow/layers/clip_rect_layer.cc +FILE: ../../../flutter/flow/layers/clip_rect_layer.h +FILE: ../../../flutter/flow/layers/clip_rrect_layer.cc +FILE: ../../../flutter/flow/layers/clip_rrect_layer.h +FILE: ../../../flutter/flow/layers/color_filter_layer.cc +FILE: ../../../flutter/flow/layers/color_filter_layer.h +FILE: ../../../flutter/flow/layers/container_layer.cc +FILE: ../../../flutter/flow/layers/container_layer.h +FILE: ../../../flutter/flow/layers/layer.cc +FILE: ../../../flutter/flow/layers/layer.h +FILE: ../../../flutter/flow/layers/layer_tree.cc +FILE: ../../../flutter/flow/layers/layer_tree.h +FILE: ../../../flutter/flow/layers/opacity_layer.cc +FILE: ../../../flutter/flow/layers/opacity_layer.h +FILE: ../../../flutter/flow/layers/performance_overlay_layer.cc +FILE: ../../../flutter/flow/layers/performance_overlay_layer.h +FILE: ../../../flutter/flow/layers/picture_layer.cc +FILE: ../../../flutter/flow/layers/picture_layer.h +FILE: ../../../flutter/flow/layers/transform_layer.cc +FILE: ../../../flutter/flow/layers/transform_layer.h +FILE: ../../../flutter/lib/snapshot/snapshot.dart +FILE: ../../../flutter/lib/snapshot/snapshot.h +FILE: ../../../flutter/lib/snapshot/snapshot_fuchsia.dart +FILE: ../../../flutter/lib/ui/compositing.dart +FILE: ../../../flutter/lib/ui/compositing/scene.cc +FILE: ../../../flutter/lib/ui/compositing/scene.h +FILE: ../../../flutter/lib/ui/compositing/scene_builder.cc +FILE: ../../../flutter/lib/ui/compositing/scene_builder.h +FILE: ../../../flutter/lib/ui/dart_wrapper.h +FILE: ../../../flutter/lib/ui/geometry.dart +FILE: ../../../flutter/lib/ui/hash_codes.dart +FILE: ../../../flutter/lib/ui/hooks.dart +FILE: ../../../flutter/lib/ui/lerp.dart +FILE: ../../../flutter/lib/ui/painting.dart +FILE: ../../../flutter/lib/ui/painting/canvas.cc +FILE: ../../../flutter/lib/ui/painting/canvas.h +FILE: ../../../flutter/lib/ui/painting/gradient.cc +FILE: ../../../flutter/lib/ui/painting/gradient.h +FILE: ../../../flutter/lib/ui/painting/image_shader.cc +FILE: ../../../flutter/lib/ui/painting/image_shader.h +FILE: ../../../flutter/lib/ui/painting/matrix.cc +FILE: ../../../flutter/lib/ui/painting/matrix.h +FILE: ../../../flutter/lib/ui/painting/paint.cc +FILE: ../../../flutter/lib/ui/painting/paint.h +FILE: ../../../flutter/lib/ui/painting/path.cc +FILE: ../../../flutter/lib/ui/painting/path.h +FILE: ../../../flutter/lib/ui/painting/path_measure.cc +FILE: ../../../flutter/lib/ui/painting/path_measure.h +FILE: ../../../flutter/lib/ui/painting/picture.cc +FILE: ../../../flutter/lib/ui/painting/picture.h +FILE: ../../../flutter/lib/ui/painting/picture_recorder.cc +FILE: ../../../flutter/lib/ui/painting/picture_recorder.h +FILE: ../../../flutter/lib/ui/painting/rrect.cc +FILE: ../../../flutter/lib/ui/painting/rrect.h +FILE: ../../../flutter/lib/ui/painting/shader.cc +FILE: ../../../flutter/lib/ui/painting/shader.h +FILE: ../../../flutter/lib/ui/pointer.dart +FILE: ../../../flutter/lib/ui/text.dart +FILE: ../../../flutter/lib/ui/text/paragraph.cc +FILE: ../../../flutter/lib/ui/text/paragraph.h +FILE: ../../../flutter/lib/ui/text/paragraph_builder.cc +FILE: ../../../flutter/lib/ui/text/paragraph_builder.h +FILE: ../../../flutter/lib/ui/text/paragraph_impl.cc +FILE: ../../../flutter/lib/ui/text/paragraph_impl.h +FILE: ../../../flutter/lib/ui/text/paragraph_impl_txt.cc +FILE: ../../../flutter/lib/ui/text/paragraph_impl_txt.h +FILE: ../../../flutter/lib/ui/text/text_box.cc +FILE: ../../../flutter/lib/ui/ui.dart +FILE: ../../../flutter/lib/ui/ui_dart_state.cc +FILE: ../../../flutter/lib/ui/ui_dart_state.h +FILE: ../../../flutter/lib/ui/window.dart +FILE: ../../../flutter/lib/ui/window/pointer_data.cc +FILE: ../../../flutter/lib/ui/window/pointer_data_packet.cc +FILE: ../../../flutter/lib/ui/window/window.cc +FILE: ../../../flutter/runtime/dart_service_isolate.cc +FILE: ../../../flutter/runtime/dart_service_isolate.h +FILE: ../../../flutter/runtime/runtime_controller.cc +FILE: ../../../flutter/runtime/runtime_controller.h +FILE: ../../../flutter/runtime/runtime_delegate.cc +FILE: ../../../flutter/runtime/runtime_delegate.h +FILE: ../../../flutter/shell/common/animator.cc +FILE: ../../../flutter/shell/common/animator.h +FILE: ../../../flutter/shell/common/engine.cc +FILE: ../../../flutter/shell/common/engine.h +FILE: ../../../flutter/shell/common/platform_view.cc +FILE: ../../../flutter/shell/common/platform_view.h +FILE: ../../../flutter/shell/common/rasterizer.cc +FILE: ../../../flutter/shell/common/rasterizer.h +FILE: ../../../flutter/shell/common/shell.cc +FILE: ../../../flutter/shell/common/shell.h +FILE: ../../../flutter/shell/common/vsync_waiter.cc +FILE: ../../../flutter/shell/common/vsync_waiter.h +FILE: ../../../flutter/shell/common/vsync_waiter_fallback.h +FILE: ../../../flutter/shell/platform/android/AndroidManifest.xml +FILE: ../../../flutter/shell/platform/android/flutter_main.cc +FILE: ../../../flutter/shell/platform/android/flutter_main.h +FILE: ../../../flutter/shell/platform/android/io/flutter/app/FlutterActivity.java +FILE: ../../../flutter/shell/platform/android/io/flutter/app/FlutterApplication.java +FILE: ../../../flutter/shell/platform/android/io/flutter/view/ResourceCleaner.java +FILE: ../../../flutter/shell/platform/android/io/flutter/view/ResourceExtractor.java +FILE: ../../../flutter/shell/platform/android/io/flutter/view/ResourcePaths.java +FILE: ../../../flutter/shell/platform/android/library_loader.cc +FILE: ../../../flutter/shell/platform/android/platform_view_android.cc +FILE: ../../../flutter/shell/platform/android/platform_view_android.h +FILE: ../../../flutter/shell/platform/darwin/common/buffer_conversions.h +FILE: ../../../flutter/shell/platform/darwin/desktop/flutter_window.h +FILE: ../../../flutter/shell/platform/darwin/desktop/flutter_window.mm +FILE: ../../../flutter/shell/platform/darwin/desktop/main_mac.mm +FILE: ../../../flutter/shell/platform/darwin/desktop/platform_view_mac.h +FILE: ../../../flutter/shell/platform/darwin/desktop/platform_view_mac.mm +FILE: ../../../flutter/shell/platform/darwin/desktop/vsync_waiter_mac.cc +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/FlutterAppDelegate.mm +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/vsync_waiter_ios.h +FILE: ../../../flutter/shell/platform/darwin/ios/framework/Source/vsync_waiter_ios.mm +---------------------------------------------------------------------------------------------------- +Copyright 2015 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: engine +ORIGIN: ../../../third_party/tonic/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../flutter/fml/arraysize.h +FILE: ../../../flutter/fml/build_config.h +FILE: ../../../flutter/fml/closure.h +FILE: ../../../flutter/fml/command_line.cc +FILE: ../../../flutter/fml/command_line.h +FILE: ../../../flutter/fml/command_line_unittest.cc +FILE: ../../../flutter/fml/compiler_specific.h +FILE: ../../../flutter/fml/eintr_wrapper.h +FILE: ../../../flutter/fml/log_level.h +FILE: ../../../flutter/fml/log_settings.cc +FILE: ../../../flutter/fml/log_settings.h +FILE: ../../../flutter/fml/log_settings_state.cc +FILE: ../../../flutter/fml/logging.cc +FILE: ../../../flutter/fml/logging.h +FILE: ../../../flutter/fml/make_copyable.h +FILE: ../../../flutter/fml/memory/ref_counted.h +FILE: ../../../flutter/fml/memory/ref_counted_internal.h +FILE: ../../../flutter/fml/memory/ref_counted_unittest.cc +FILE: ../../../flutter/fml/memory/ref_ptr.h +FILE: ../../../flutter/fml/memory/ref_ptr_internal.h +FILE: ../../../flutter/fml/memory/thread_checker.h +FILE: ../../../flutter/fml/memory/weak_ptr.h +FILE: ../../../flutter/fml/memory/weak_ptr_internal.cc +FILE: ../../../flutter/fml/memory/weak_ptr_internal.h +FILE: ../../../flutter/fml/memory/weak_ptr_unittest.cc +FILE: ../../../flutter/fml/string_view.cc +FILE: ../../../flutter/fml/string_view.h +FILE: ../../../flutter/fml/string_view_unittest.cc +FILE: ../../../flutter/fml/synchronization/thread_annotations.h +FILE: ../../../flutter/fml/synchronization/thread_annotations_unittest.cc +FILE: ../../../flutter/fml/synchronization/thread_checker.h +FILE: ../../../flutter/fml/synchronization/thread_checker_unittest.cc +FILE: ../../../flutter/fml/synchronization/waitable_event.cc +FILE: ../../../flutter/fml/synchronization/waitable_event.h +FILE: ../../../flutter/fml/synchronization/waitable_event_unittest.cc +FILE: ../../../flutter/fml/time/time_delta.h +FILE: ../../../flutter/fml/time/time_point.cc +FILE: ../../../flutter/fml/time/time_point.h +FILE: ../../../flutter/fml/time/time_unittest.cc +---------------------------------------------------------------------------------------------------- +Copyright 2016 The Fuchsia Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: txt +ORIGIN: ../../../flutter/third_party/txt/LICENSE +TYPE: LicenseType.apache +FILE: ../../../flutter/third_party/txt/benchmarks/paint_record_benchmarks.cc +FILE: ../../../flutter/third_party/txt/benchmarks/paragraph_benchmarks.cc +FILE: ../../../flutter/third_party/txt/benchmarks/paragraph_builder_benchmarks.cc +FILE: ../../../flutter/third_party/txt/benchmarks/styled_runs_benchmarks.cc +FILE: ../../../flutter/third_party/txt/benchmarks/txt_run_all_benchmarks.cc +FILE: ../../../flutter/third_party/txt/src/log/log.cc +FILE: ../../../flutter/third_party/txt/src/log/log.h +FILE: ../../../flutter/third_party/txt/src/minikin/CmapCoverage.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/CmapCoverage.h +FILE: ../../../flutter/third_party/txt/src/minikin/Emoji.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/Emoji.h +FILE: ../../../flutter/third_party/txt/src/minikin/FontCollection.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/FontCollection.h +FILE: ../../../flutter/third_party/txt/src/minikin/FontFamily.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/FontFamily.h +FILE: ../../../flutter/third_party/txt/src/minikin/FontLanguage.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/FontLanguage.h +FILE: ../../../flutter/third_party/txt/src/minikin/FontLanguageListCache.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/FontLanguageListCache.h +FILE: ../../../flutter/third_party/txt/src/minikin/FontUtils.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/FontUtils.h +FILE: ../../../flutter/third_party/txt/src/minikin/GraphemeBreak.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/GraphemeBreak.h +FILE: ../../../flutter/third_party/txt/src/minikin/HbFontCache.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/HbFontCache.h +FILE: ../../../flutter/third_party/txt/src/minikin/Hyphenator.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/Hyphenator.h +FILE: ../../../flutter/third_party/txt/src/minikin/Layout.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/Layout.h +FILE: ../../../flutter/third_party/txt/src/minikin/LayoutUtils.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/LayoutUtils.h +FILE: ../../../flutter/third_party/txt/src/minikin/LineBreaker.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/LineBreaker.h +FILE: ../../../flutter/third_party/txt/src/minikin/Measurement.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/Measurement.h +FILE: ../../../flutter/third_party/txt/src/minikin/MinikinFont.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/MinikinFont.h +FILE: ../../../flutter/third_party/txt/src/minikin/MinikinInternal.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/MinikinInternal.h +FILE: ../../../flutter/third_party/txt/src/minikin/SparseBitSet.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/SparseBitSet.h +FILE: ../../../flutter/third_party/txt/src/minikin/WordBreaker.cpp +FILE: ../../../flutter/third_party/txt/src/minikin/WordBreaker.h +FILE: ../../../flutter/third_party/txt/src/txt/asset_font_manager.cc +FILE: ../../../flutter/third_party/txt/src/txt/asset_font_manager.h +FILE: ../../../flutter/third_party/txt/src/txt/font_asset_provider.h +FILE: ../../../flutter/third_party/txt/src/txt/font_collection.cc +FILE: ../../../flutter/third_party/txt/src/txt/font_collection.h +FILE: ../../../flutter/third_party/txt/src/txt/font_skia.cc +FILE: ../../../flutter/third_party/txt/src/txt/font_skia.h +FILE: ../../../flutter/third_party/txt/src/txt/font_style.h +FILE: ../../../flutter/third_party/txt/src/txt/font_weight.h +FILE: ../../../flutter/third_party/txt/src/txt/paint_record.cc +FILE: ../../../flutter/third_party/txt/src/txt/paint_record.h +FILE: ../../../flutter/third_party/txt/src/txt/paragraph.cc +FILE: ../../../flutter/third_party/txt/src/txt/paragraph.h +FILE: ../../../flutter/third_party/txt/src/txt/paragraph_builder.cc +FILE: ../../../flutter/third_party/txt/src/txt/paragraph_builder.h +FILE: ../../../flutter/third_party/txt/src/txt/paragraph_style.cc +FILE: ../../../flutter/third_party/txt/src/txt/paragraph_style.h +FILE: ../../../flutter/third_party/txt/src/txt/styled_runs.cc +FILE: ../../../flutter/third_party/txt/src/txt/styled_runs.h +FILE: ../../../flutter/third_party/txt/src/txt/test_font_manager.cc +FILE: ../../../flutter/third_party/txt/src/txt/test_font_manager.h +FILE: ../../../flutter/third_party/txt/src/txt/text_baseline.h +FILE: ../../../flutter/third_party/txt/src/txt/text_decoration.cc +FILE: ../../../flutter/third_party/txt/src/txt/text_decoration.h +FILE: ../../../flutter/third_party/txt/src/txt/text_style.cc +FILE: ../../../flutter/third_party/txt/src/txt/text_style.h +FILE: ../../../flutter/third_party/txt/src/txt/typeface_font_asset_provider.cc +FILE: ../../../flutter/third_party/txt/src/txt/typeface_font_asset_provider.h +FILE: ../../../flutter/third_party/txt/src/utils/JenkinsHash.cpp +FILE: ../../../flutter/third_party/txt/src/utils/JenkinsHash.h +FILE: ../../../flutter/third_party/txt/src/utils/LruCache.h +FILE: ../../../flutter/third_party/txt/src/utils/TypeHelpers.h +FILE: ../../../flutter/third_party/txt/src/utils/WindowsUtils.h +---------------------------------------------------------------------------------------------------- +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +==================================================================================================== +Total license count: 12 diff --git a/travis/licenses_golden/licenses_garnet b/ci/licenses_golden/licenses_garnet similarity index 100% rename from travis/licenses_golden/licenses_garnet rename to ci/licenses_golden/licenses_garnet diff --git a/travis/licenses_golden/licenses_lib b/ci/licenses_golden/licenses_lib similarity index 100% rename from travis/licenses_golden/licenses_lib rename to ci/licenses_golden/licenses_lib diff --git a/ci/licenses_golden/licenses_skia b/ci/licenses_golden/licenses_skia new file mode 100644 index 0000000000000..72d03362ba3ca --- /dev/null +++ b/ci/licenses_golden/licenses_skia @@ -0,0 +1,5958 @@ +Signature: 817e8b75d1b857f78f54b3a5bb5e0210 + +UNUSED LICENSES: + +==================================================================================================== +ORIGIN: ../../../third_party/skia/third_party/gif/LICENSE +TYPE: LicenseType.unknown +---------------------------------------------------------------------------------------------------- +Version: MPL 1.1/GPL 2.0/LGPL 2.1 + +The contents of this file are subject to the Mozilla Public License Version +1.1 (the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at +http://www.mozilla.org/MPL + +Software distributed under the License is distributed on an "AS IS" basis, +WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +for the specific language governing rights and limitations under the +License. + +The Original Code is mozilla.org code. + +The Initial Developer of the Original Code is +Netscape Communications Corporation. +Portions created by the Initial Developer are Copyright (C) 1998 +the Initial Developer. All Rights Reserved. + +Contributor(s): + Chris Saari + Apple Computer + +Alternatively, the contents of this file may be used under the terms of +either the GNU General Public License Version 2 or later (the "GPL"), or +the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), +in which case the provisions of the GPL or the LGPL are applicable instead +of those above. If you wish to allow use of your version of this file only +under the terms of either the GPL or the LGPL, and not to allow others to +use your version of this file under the terms of the MPL, indicate your +decision by deleting the provisions above and replace them with the notice +and other provisions required by the GPL or the LGPL. If you do not delete +the provisions above, a recipient may use your version of this file under +the terms of any one of the MPL, the GPL or the LGPL. +==================================================================================================== +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +USED LICENSES: + +==================================================================================================== +LIBRARY: gif +ORIGIN: ../../../third_party/skia/third_party/gif/SkGifImageReader.cpp +TYPE: LicenseType.lgpl +FILE: ../../../third_party/skia/third_party/gif/SkGifImageReader.cpp +FILE: ../../../third_party/skia/third_party/gif/SkGifImageReader.h +---------------------------------------------------------------------------------------------------- +GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + +Copyright (C) 1991, 1999 Free Software Foundation, Inc. +51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +Everyone is permitted to copy and distribute verbatim copies +of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! +==================================================================================================== + +==================================================================================================== +LIBRARY: gif +ORIGIN: ../../../third_party/skia/third_party/gif/SkGifImageReader.cpp +TYPE: LicenseType.unknown +FILE: ../../../third_party/skia/third_party/gif/SkGifImageReader.cpp +---------------------------------------------------------------------------------------------------- +The Graphics Interchange Format(c) is the copyright property of CompuServe +Incorporated. Only CompuServe Incorporated is authorized to define, redefine, +enhance, alter, modify or change in any way the definition of the format. + +CompuServe Incorporated hereby grants a limited, non-exclusive, royalty-free +license for the use of the Graphics Interchange Format(sm) in computer +software; computer software utilizing GIF(sm) must acknowledge ownership of the +Graphics Interchange Format and its Service Mark by CompuServe Incorporated, in +User and Technical Documentation. Computer software utilizing GIF, which is +distributed or may be distributed without User or Technical Documentation must +display to the screen or printer a message acknowledging ownership of the +Graphics Interchange Format and the Service Mark by CompuServe Incorporated; in +this case, the acknowledgement may be displayed in an opening screen or leading +banner, or a closing screen or trailing banner. A message such as the following +may be used: + + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/skia/third_party/harfbuzz/hb-buffer-deserialize-json.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/skia/third_party/harfbuzz/hb-buffer-deserialize-json.hh +FILE: ../../../third_party/skia/third_party/harfbuzz/hb-buffer-deserialize-text.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/skia/third_party/harfbuzz/hb-ot-shape-complex-indic-machine.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/skia/third_party/harfbuzz/hb-ot-shape-complex-indic-machine.hh +FILE: ../../../third_party/skia/third_party/harfbuzz/hb-ot-shape-complex-myanmar-machine.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/skia/third_party/harfbuzz/hb-ot-shape-complex-use-machine.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/skia/third_party/harfbuzz/hb-ot-shape-complex-use-machine.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2015 Mozilla Foundation. +Copyright © 2015 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/skia/third_party/harfbuzz/hb-version.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/skia/third_party/harfbuzz/hb-version.h +---------------------------------------------------------------------------------------------------- +Copyright © 2011 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: libsdl +LIBRARY: skia +ORIGIN: ../../../third_party/skia/bench/AndroidCodecBench.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/bench/AndroidCodecBench.cpp +FILE: ../../../third_party/skia/bench/AndroidCodecBench.h +FILE: ../../../third_party/skia/bench/DrawLatticeBench.cpp +FILE: ../../../third_party/skia/bench/EncoderBench.cpp +FILE: ../../../third_party/skia/bench/GrMipMapBench.cpp +FILE: ../../../third_party/skia/bench/HardStopGradientBench_ScaleNumColors.cpp +FILE: ../../../third_party/skia/bench/HardStopGradientBench_ScaleNumHardStops.cpp +FILE: ../../../third_party/skia/bench/HardStopGradientBench_SpecialHardStops.cpp +FILE: ../../../third_party/skia/bench/ImageCacheBudgetBench.cpp +FILE: ../../../third_party/skia/bench/PDFBench.cpp +FILE: ../../../third_party/skia/bench/QuickRejectBench.cpp +FILE: ../../../third_party/skia/bench/ShapesBench.cpp +FILE: ../../../third_party/skia/bench/SkRasterPipelineBench.cpp +FILE: ../../../third_party/skia/bench/StreamBench.cpp +FILE: ../../../third_party/skia/bench/SwizzleBench.cpp +FILE: ../../../third_party/skia/bench/TileImageFilterBench.cpp +FILE: ../../../third_party/skia/bench/VertexColorSpaceBench.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkPEG.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGAttribute.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGAttribute.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGAttributeParser.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGAttributeParser.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGCircle.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGCircle.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGClipPath.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGClipPath.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGContainer.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGContainer.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGDOM.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGDOM.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGDefs.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGEllipse.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGEllipse.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGG.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGHiddenContainer.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGIDMapper.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGLine.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGLine.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGLinearGradient.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGLinearGradient.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGNode.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGNode.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGPath.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGPath.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGPoly.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGPoly.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGRect.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGRect.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGRenderContext.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGRenderContext.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGSVG.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGSVG.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGShape.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGShape.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGStop.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGStop.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGTransformableNode.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGTransformableNode.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGTypes.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGValue.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGValue.h +FILE: ../../../third_party/skia/experimental/xps_to_png/xps_to_png.cs +FILE: ../../../third_party/skia/fuzz/Fuzz.h +FILE: ../../../third_party/skia/fuzz/FuzzGradients.cpp +FILE: ../../../third_party/skia/fuzz/FuzzParsePath.cpp +FILE: ../../../third_party/skia/fuzz/FuzzPathop.cpp +FILE: ../../../third_party/skia/fuzz/fuzz.cpp +FILE: ../../../third_party/skia/gm/OverStroke.cpp +FILE: ../../../third_party/skia/gm/animatedGif.cpp +FILE: ../../../third_party/skia/gm/animatedimageblurs.cpp +FILE: ../../../third_party/skia/gm/arcto.cpp +FILE: ../../../third_party/skia/gm/bigrect.cpp +FILE: ../../../third_party/skia/gm/bitmapimage.cpp +FILE: ../../../third_party/skia/gm/blurcircles2.cpp +FILE: ../../../third_party/skia/gm/bug5252.cpp +FILE: ../../../third_party/skia/gm/bug530095.cpp +FILE: ../../../third_party/skia/gm/bug615686.cpp +FILE: ../../../third_party/skia/gm/circulararcs.cpp +FILE: ../../../third_party/skia/gm/clip_error.cpp +FILE: ../../../third_party/skia/gm/colorfilteralpha8.cpp +FILE: ../../../third_party/skia/gm/complexclip4.cpp +FILE: ../../../third_party/skia/gm/complexclip_blur_tiled.cpp +FILE: ../../../third_party/skia/gm/croppedrects.cpp +FILE: ../../../third_party/skia/gm/dashcircle.cpp +FILE: ../../../third_party/skia/gm/drawregion.cpp +FILE: ../../../third_party/skia/gm/drawregionmodes.cpp +FILE: ../../../third_party/skia/gm/encode-platform.cpp +FILE: ../../../third_party/skia/gm/encode-srgb.cpp +FILE: ../../../third_party/skia/gm/filterbug.cpp +FILE: ../../../third_party/skia/gm/gamut.cpp +FILE: ../../../third_party/skia/gm/hardstop_gradients.cpp +FILE: ../../../third_party/skia/gm/imagemakewithfilter.cpp +FILE: ../../../third_party/skia/gm/imagemasksubset.cpp +FILE: ../../../third_party/skia/gm/lattice.cpp +FILE: ../../../third_party/skia/gm/lightingshader2.cpp +FILE: ../../../third_party/skia/gm/overdrawcolorfilter.cpp +FILE: ../../../third_party/skia/gm/pathmaskcache.cpp +FILE: ../../../third_party/skia/gm/readpixels.cpp +FILE: ../../../third_party/skia/gm/rectangletexture.cpp +FILE: ../../../third_party/skia/gm/rrectclipdrawpaint.cpp +FILE: ../../../third_party/skia/gm/shapes.cpp +FILE: ../../../third_party/skia/gm/showmiplevels.cpp +FILE: ../../../third_party/skia/gm/simplerect.cpp +FILE: ../../../third_party/skia/gm/skbug_4868.cpp +FILE: ../../../third_party/skia/gm/skbug_5321.cpp +FILE: ../../../third_party/skia/gm/stroke_rect_shader.cpp +FILE: ../../../third_party/skia/gm/strokedlines.cpp +FILE: ../../../third_party/skia/gm/subsetshader.cpp +FILE: ../../../third_party/skia/gm/textblobblockreordering.cpp +FILE: ../../../third_party/skia/gm/windowrectangles.cpp +FILE: ../../../third_party/skia/include/codec/SkCodecAnimation.h +FILE: ../../../third_party/skia/include/core/SkBlendMode.h +FILE: ../../../third_party/skia/include/core/SkClipOp.h +FILE: ../../../third_party/skia/include/core/SkColorSpace.h +FILE: ../../../third_party/skia/include/core/SkColorSpaceXform.h +FILE: ../../../third_party/skia/include/core/SkICC.h +FILE: ../../../third_party/skia/include/core/SkMilestone.h +FILE: ../../../third_party/skia/include/core/SkOverdrawCanvas.h +FILE: ../../../third_party/skia/include/core/SkRasterHandleAllocator.h +FILE: ../../../third_party/skia/include/core/SkSwizzle.h +FILE: ../../../third_party/skia/include/core/SkYUVSizeInfo.h +FILE: ../../../third_party/skia/include/effects/SkArithmeticImageFilter.h +FILE: ../../../third_party/skia/include/effects/SkOverdrawColorFilter.h +FILE: ../../../third_party/skia/include/effects/SkPaintImageFilter.h +FILE: ../../../third_party/skia/include/gpu/vk/GrVkBackendContext.h +FILE: ../../../third_party/skia/include/gpu/vk/GrVkDefines.h +FILE: ../../../third_party/skia/include/gpu/vk/GrVkExtensions.h +FILE: ../../../third_party/skia/include/gpu/vk/GrVkTypes.h +FILE: ../../../third_party/skia/include/ports/SkFontMgr_FontConfigInterface.h +FILE: ../../../third_party/skia/include/ports/SkImageGeneratorCG.h +FILE: ../../../third_party/skia/include/ports/SkImageGeneratorWIC.h +FILE: ../../../third_party/skia/include/private/GrAuditTrail.h +FILE: ../../../third_party/skia/include/private/GrOpList.h +FILE: ../../../third_party/skia/include/private/GrRenderTargetProxy.h +FILE: ../../../third_party/skia/include/private/GrSingleOwner.h +FILE: ../../../third_party/skia/include/private/GrSurfaceProxy.h +FILE: ../../../third_party/skia/include/private/GrTextureProxy.h +FILE: ../../../third_party/skia/include/private/SkArenaAlloc.h +FILE: ../../../third_party/skia/include/private/SkBitmaskEnum.h +FILE: ../../../third_party/skia/include/private/SkEncodedInfo.h +FILE: ../../../third_party/skia/include/private/SkLeanWindows.h +FILE: ../../../third_party/skia/include/private/SkSafe_math.h +FILE: ../../../third_party/skia/include/utils/SkNoDrawCanvas.h +FILE: ../../../third_party/skia/modules/sksg/samples/SampleSVGPong.cpp +FILE: ../../../third_party/skia/modules/skshaper/include/SkShaper.h +FILE: ../../../third_party/skia/modules/skshaper/src/SkShaper_harfbuzz.cpp +FILE: ../../../third_party/skia/modules/skshaper/src/SkShaper_primitive.cpp +FILE: ../../../third_party/skia/samplecode/DecodeFile.h +FILE: ../../../third_party/skia/samplecode/Sample.cpp +FILE: ../../../third_party/skia/samplecode/SampleAndroidShadows.cpp +FILE: ../../../third_party/skia/samplecode/SampleLitAtlas.cpp +FILE: ../../../third_party/skia/samplecode/SampleMegaStroke.cpp +FILE: ../../../third_party/skia/samplecode/SamplePathOverstroke.cpp +FILE: ../../../third_party/skia/samplecode/SampleSVGFile.cpp +FILE: ../../../third_party/skia/src/codec/SkCodecAnimationPriv.h +FILE: ../../../third_party/skia/src/codec/SkRawAdapterCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkRawAdapterCodec.h +FILE: ../../../third_party/skia/src/codec/SkRawCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkRawCodec.h +FILE: ../../../third_party/skia/src/codec/SkStreamBuffer.cpp +FILE: ../../../third_party/skia/src/codec/SkStreamBuffer.h +FILE: ../../../third_party/skia/src/compute/common/cl/assert_cl.c +FILE: ../../../third_party/skia/src/compute/common/cl/assert_cl.h +FILE: ../../../third_party/skia/src/compute/common/cuda/assert_cuda.c +FILE: ../../../third_party/skia/src/compute/common/cuda/assert_cuda.h +FILE: ../../../third_party/skia/src/compute/common/macros.h +FILE: ../../../third_party/skia/src/compute/common/util.c +FILE: ../../../third_party/skia/src/compute/common/util.h +FILE: ../../../third_party/skia/src/compute/common/vk/assert_vk.c +FILE: ../../../third_party/skia/src/compute/common/vk/assert_vk.h +FILE: ../../../third_party/skia/src/compute/hs/cl/bench/main.c +FILE: ../../../third_party/skia/src/compute/hs/cl/hs_cl.c +FILE: ../../../third_party/skia/src/compute/hs/cl/hs_cl.h +FILE: ../../../third_party/skia/src/compute/hs/cl/hs_cl_target.h +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u32/hs_config.h +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u32/hs_intel_gen8_u32.c +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u32/hs_kernels.cl +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u32/hs_target.h +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u64/hs_config.h +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u64/hs_intel_gen8_u64.c +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u64/hs_kernels.cl +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u64/hs_target.h +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/hs_cl_macros.h +FILE: ../../../third_party/skia/src/compute/hs/cuda/bench/main.c +FILE: ../../../third_party/skia/src/compute/hs/cuda/hs_cuda.inl +FILE: ../../../third_party/skia/src/compute/hs/cuda/sm_35/hs_cuda_macros.h +FILE: ../../../third_party/skia/src/compute/hs/cuda/sm_35/u32/hs_cuda_config.h +FILE: ../../../third_party/skia/src/compute/hs/cuda/sm_35/u32/hs_cuda_u32.cu +FILE: ../../../third_party/skia/src/compute/hs/cuda/sm_35/u64/hs_cuda_config.h +FILE: ../../../third_party/skia/src/compute/hs/cuda/sm_35/u64/hs_cuda_u64.cu +FILE: ../../../third_party/skia/src/compute/hs/gen/gen.h +FILE: ../../../third_party/skia/src/compute/hs/gen/main.c +FILE: ../../../third_party/skia/src/compute/hs/gen/networks.h +FILE: ../../../third_party/skia/src/compute/hs/gen/networks_merging.c +FILE: ../../../third_party/skia/src/compute/hs/gen/networks_sorting.c +FILE: ../../../third_party/skia/src/compute/hs/gen/target_cuda.c +FILE: ../../../third_party/skia/src/compute/hs/gen/target_glsl.c +FILE: ../../../third_party/skia/src/compute/hs/gen/target_opencl.c +FILE: ../../../third_party/skia/src/compute/hs/vk/bench/main.c +FILE: ../../../third_party/skia/src/compute/hs/vk/hs_glsl_macros.h +FILE: ../../../third_party/skia/src/compute/hs/vk/hs_glsl_preamble.h +FILE: ../../../third_party/skia/src/compute/hs/vk/hs_vk.c +FILE: ../../../third_party/skia/src/compute/hs/vk/hs_vk.h +FILE: ../../../third_party/skia/src/compute/hs/vk/hs_vk_target.h +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_config.h +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_intel_gen8_u32.c +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_modules.h +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_target.h +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_config.h +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_intel_gen8_u64.c +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_modules.h +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_target.h +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/hs_glsl_macros.h +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/hs_glsl_macros.h +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_config.h +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_modules.h +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_nvidia_sm35_u32.c +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_target.h +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_config.h +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_modules.h +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_nvidia_sm35_u64.c +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_target.h +FILE: ../../../third_party/skia/src/compute/sk/SkContext_Compute.cpp +FILE: ../../../third_party/skia/src/compute/sk/SkContext_Compute.h +FILE: ../../../third_party/skia/src/compute/sk/SkDevice_Compute.cpp +FILE: ../../../third_party/skia/src/compute/sk/SkImage_Compute.cpp +FILE: ../../../third_party/skia/src/compute/sk/SkImage_Compute.h +FILE: ../../../third_party/skia/src/compute/sk/SkSurface_Compute.cpp +FILE: ../../../third_party/skia/src/compute/sk/SkSurface_Compute.h +FILE: ../../../third_party/skia/src/compute/skc/assert_skc.c +FILE: ../../../third_party/skia/src/compute/skc/assert_skc.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/kernels/render.cl +FILE: ../../../third_party/skia/src/compute/skc/styling.c +FILE: ../../../third_party/skia/src/compute/skc/styling.h +FILE: ../../../third_party/skia/src/compute/skc/styling_types.h +FILE: ../../../third_party/skia/src/compute/skc/tile.h +FILE: ../../../third_party/skia/src/core/Sk4x4f.h +FILE: ../../../third_party/skia/src/core/SkATrace.cpp +FILE: ../../../third_party/skia/src/core/SkATrace.h +FILE: ../../../third_party/skia/src/core/SkAnnotationKeys.h +FILE: ../../../third_party/skia/src/core/SkArenaAlloc.cpp +FILE: ../../../third_party/skia/src/core/SkAutoMalloc.h +FILE: ../../../third_party/skia/src/core/SkAutoPixmapStorage.cpp +FILE: ../../../third_party/skia/src/core/SkAutoPixmapStorage.h +FILE: ../../../third_party/skia/src/core/SkBlendModePriv.h +FILE: ../../../third_party/skia/src/core/SkClipOpPriv.h +FILE: ../../../third_party/skia/src/core/SkColorLookUpTable.cpp +FILE: ../../../third_party/skia/src/core/SkColorLookUpTable.h +FILE: ../../../third_party/skia/src/core/SkColorMatrixFilterRowMajor255.h +FILE: ../../../third_party/skia/src/core/SkColorSpace.cpp +FILE: ../../../third_party/skia/src/core/SkColorSpacePriv.h +FILE: ../../../third_party/skia/src/core/SkColorSpaceXform.cpp +FILE: ../../../third_party/skia/src/core/SkColorSpaceXformPriv.h +FILE: ../../../third_party/skia/src/core/SkCpu.cpp +FILE: ../../../third_party/skia/src/core/SkCpu.h +FILE: ../../../third_party/skia/src/core/SkDeduper.h +FILE: ../../../third_party/skia/src/core/SkExchange.h +FILE: ../../../third_party/skia/src/core/SkFixed15.h +FILE: ../../../third_party/skia/src/core/SkFuzzLogging.h +FILE: ../../../third_party/skia/src/core/SkGlobalInitialization_core.cpp +FILE: ../../../third_party/skia/src/core/SkICC.cpp +FILE: ../../../third_party/skia/src/core/SkICCPriv.h +FILE: ../../../third_party/skia/src/core/SkImageFilterCache.cpp +FILE: ../../../third_party/skia/src/core/SkImageFilterCache.h +FILE: ../../../third_party/skia/src/core/SkLRUCache.h +FILE: ../../../third_party/skia/src/core/SkLights.cpp +FILE: ../../../third_party/skia/src/core/SkLiteDL.cpp +FILE: ../../../third_party/skia/src/core/SkLiteDL.h +FILE: ../../../third_party/skia/src/core/SkLiteRecorder.cpp +FILE: ../../../third_party/skia/src/core/SkLiteRecorder.h +FILE: ../../../third_party/skia/src/core/SkMSAN.h +FILE: ../../../third_party/skia/src/core/SkMakeUnique.h +FILE: ../../../third_party/skia/src/core/SkMatrixPriv.h +FILE: ../../../third_party/skia/src/core/SkModeColorFilter.h +FILE: ../../../third_party/skia/src/core/SkNormalFlatSource.cpp +FILE: ../../../third_party/skia/src/core/SkNormalFlatSource.h +FILE: ../../../third_party/skia/src/core/SkNormalMapSource.cpp +FILE: ../../../third_party/skia/src/core/SkNormalMapSource.h +FILE: ../../../third_party/skia/src/core/SkNormalSource.cpp +FILE: ../../../third_party/skia/src/core/SkNormalSource.h +FILE: ../../../third_party/skia/src/core/SkOverdrawCanvas.cpp +FILE: ../../../third_party/skia/src/core/SkPM4f.h +FILE: ../../../third_party/skia/src/core/SkPM4fPriv.h +FILE: ../../../third_party/skia/src/core/SkPathMeasurePriv.h +FILE: ../../../third_party/skia/src/core/SkPipe.h +FILE: ../../../third_party/skia/src/core/SkRasterPipeline.cpp +FILE: ../../../third_party/skia/src/core/SkRasterPipeline.h +FILE: ../../../third_party/skia/src/core/SkRasterPipelineBlitter.cpp +FILE: ../../../third_party/skia/src/core/SkRecordedDrawable.cpp +FILE: ../../../third_party/skia/src/core/SkRecordedDrawable.h +FILE: ../../../third_party/skia/src/core/SkScaleToSides.h +FILE: ../../../third_party/skia/src/core/SkScopeExit.h +FILE: ../../../third_party/skia/src/core/SkSinglyLinkedList.h +FILE: ../../../third_party/skia/src/core/SkSpecialImage.cpp +FILE: ../../../third_party/skia/src/core/SkSpecialImage.h +FILE: ../../../third_party/skia/src/core/SkSpecialSurface.cpp +FILE: ../../../third_party/skia/src/core/SkSpecialSurface.h +FILE: ../../../third_party/skia/src/core/SkSwizzle.cpp +FILE: ../../../third_party/skia/src/effects/SkOverdrawColorFilter.cpp +FILE: ../../../third_party/skia/src/effects/imagefilters/SkArithmeticImageFilter.cpp +FILE: ../../../third_party/skia/src/effects/imagefilters/SkPaintImageFilter.cpp +FILE: ../../../third_party/skia/src/gpu/GrAppliedClip.h +FILE: ../../../third_party/skia/src/gpu/GrAuditTrail.cpp +FILE: ../../../third_party/skia/src/gpu/GrBitmapTextureMaker.cpp +FILE: ../../../third_party/skia/src/gpu/GrBitmapTextureMaker.h +FILE: ../../../third_party/skia/src/gpu/GrBuffer.cpp +FILE: ../../../third_party/skia/src/gpu/GrBuffer.h +FILE: ../../../third_party/skia/src/gpu/GrClipStackClip.cpp +FILE: ../../../third_party/skia/src/gpu/GrClipStackClip.h +FILE: ../../../third_party/skia/src/gpu/GrColorSpaceXform.cpp +FILE: ../../../third_party/skia/src/gpu/GrColorSpaceXform.h +FILE: ../../../third_party/skia/src/gpu/GrContextPriv.h +FILE: ../../../third_party/skia/src/gpu/GrFixedClip.h +FILE: ../../../third_party/skia/src/gpu/GrGpuCommandBuffer.cpp +FILE: ../../../third_party/skia/src/gpu/GrGpuCommandBuffer.h +FILE: ../../../third_party/skia/src/gpu/GrImageTextureMaker.cpp +FILE: ../../../third_party/skia/src/gpu/GrImageTextureMaker.h +FILE: ../../../third_party/skia/src/gpu/GrOpList.cpp +FILE: ../../../third_party/skia/src/gpu/GrProgramDesc.cpp +FILE: ../../../third_party/skia/src/gpu/GrReducedClip.cpp +FILE: ../../../third_party/skia/src/gpu/GrReducedClip.h +FILE: ../../../third_party/skia/src/gpu/GrRenderTargetContextPriv.h +FILE: ../../../third_party/skia/src/gpu/GrRenderTargetProxy.cpp +FILE: ../../../third_party/skia/src/gpu/GrResourceHandle.h +FILE: ../../../third_party/skia/src/gpu/GrScissorState.h +FILE: ../../../third_party/skia/src/gpu/GrShaderVar.cpp +FILE: ../../../third_party/skia/src/gpu/GrShaderVar.h +FILE: ../../../third_party/skia/src/gpu/GrShape.cpp +FILE: ../../../third_party/skia/src/gpu/GrShape.h +FILE: ../../../third_party/skia/src/gpu/GrStencilSettings.h +FILE: ../../../third_party/skia/src/gpu/GrStyle.cpp +FILE: ../../../third_party/skia/src/gpu/GrStyle.h +FILE: ../../../third_party/skia/src/gpu/GrSurfaceContext.cpp +FILE: ../../../third_party/skia/src/gpu/GrSurfaceContext.h +FILE: ../../../third_party/skia/src/gpu/GrSurfaceContextPriv.h +FILE: ../../../third_party/skia/src/gpu/GrSurfaceProxy.cpp +FILE: ../../../third_party/skia/src/gpu/GrSwizzle.h +FILE: ../../../third_party/skia/src/gpu/GrTextureAdjuster.cpp +FILE: ../../../third_party/skia/src/gpu/GrTextureAdjuster.h +FILE: ../../../third_party/skia/src/gpu/GrTextureContext.cpp +FILE: ../../../third_party/skia/src/gpu/GrTextureContext.h +FILE: ../../../third_party/skia/src/gpu/GrTextureMaker.cpp +FILE: ../../../third_party/skia/src/gpu/GrTextureMaker.h +FILE: ../../../third_party/skia/src/gpu/GrTextureOpList.cpp +FILE: ../../../third_party/skia/src/gpu/GrTextureOpList.h +FILE: ../../../third_party/skia/src/gpu/GrTextureProducer.cpp +FILE: ../../../third_party/skia/src/gpu/GrTextureProducer.h +FILE: ../../../third_party/skia/src/gpu/GrTextureProxy.cpp +FILE: ../../../third_party/skia/src/gpu/GrTextureRenderTargetProxy.cpp +FILE: ../../../third_party/skia/src/gpu/GrTextureRenderTargetProxy.h +FILE: ../../../third_party/skia/src/gpu/GrUserStencilSettings.h +FILE: ../../../third_party/skia/src/gpu/GrWindowRectangles.h +FILE: ../../../third_party/skia/src/gpu/GrWindowRectsState.h +FILE: ../../../third_party/skia/src/gpu/effects/GrSRGBEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrSRGBEffect.h +FILE: ../../../third_party/skia/src/gpu/effects/GrShadowGeoProc.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrShadowGeoProc.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLBuffer.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLBuffer.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLGpuCommandBuffer.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLTestInterface.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLTestInterface.h +FILE: ../../../third_party/skia/src/gpu/gl/glfw/GrGLMakeNativeInterface_glfw.cpp +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLColorSpaceXformHelper.h +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLProgramDataManager.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrClearStencilClipOp.h +FILE: ../../../third_party/skia/src/gpu/ops/GrPathStencilSettings.h +FILE: ../../../third_party/skia/src/gpu/ops/GrRegionOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrRegionOp.h +FILE: ../../../third_party/skia/src/gpu/ops/GrShadowRRectOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrShadowRRectOp.h +FILE: ../../../third_party/skia/src/gpu/text/GrTextBlobVertexRegenerator.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkCopyManager.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkCopyManager.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkCopyPipeline.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkCopyPipeline.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkDescriptorPool.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkDescriptorPool.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkDescriptorSet.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkDescriptorSet.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkDescriptorSetManager.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkDescriptorSetManager.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkExtensions.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkFramebuffer.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkFramebuffer.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkGpuCommandBuffer.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkGpuCommandBuffer.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkImageView.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkImageView.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipeline.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipeline.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipelineState.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipelineState.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipelineStateBuilder.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipelineStateBuilder.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipelineStateCache.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipelineStateDataManager.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipelineStateDataManager.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkResourceProvider.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkResourceProvider.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkSampler.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkSampler.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkUniformHandler.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkUniformHandler.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkVaryingHandler.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkVaryingHandler.h +FILE: ../../../third_party/skia/src/images/SkImageEncoderPriv.h +FILE: ../../../third_party/skia/src/opts/SkChecksum_opts.h +FILE: ../../../third_party/skia/src/opts/SkOpts_avx.cpp +FILE: ../../../third_party/skia/src/opts/SkOpts_crc32.cpp +FILE: ../../../third_party/skia/src/opts/SkOpts_sse42.cpp +FILE: ../../../third_party/skia/src/opts/SkSwizzler_opts.h +FILE: ../../../third_party/skia/src/pdf/SkBitmapKey.h +FILE: ../../../third_party/skia/src/pdf/SkPDFConvertType1FontStream.h +FILE: ../../../third_party/skia/src/pdf/SkPDFDocument.h +FILE: ../../../third_party/skia/src/pdf/SkPDFMakeCIDGlyphWidthsArray.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFMakeCIDGlyphWidthsArray.h +FILE: ../../../third_party/skia/src/pdf/SkPDFMakeToUnicodeCmap.h +FILE: ../../../third_party/skia/src/pipe/SkPipeCanvas.cpp +FILE: ../../../third_party/skia/src/pipe/SkPipeCanvas.h +FILE: ../../../third_party/skia/src/pipe/SkPipeFormat.h +FILE: ../../../third_party/skia/src/pipe/SkPipeReader.cpp +FILE: ../../../third_party/skia/src/pipe/SkRefSet.h +FILE: ../../../third_party/skia/src/ports/SkFontConfigInterface.cpp +FILE: ../../../third_party/skia/src/ports/SkFontMgr_custom_empty_factory.cpp +FILE: ../../../third_party/skia/src/ports/SkImageGeneratorCG.cpp +FILE: ../../../third_party/skia/src/ports/SkImageGeneratorWIC.cpp +FILE: ../../../third_party/skia/src/shaders/SkColorFilterShader.h +FILE: ../../../third_party/skia/src/shaders/SkColorShader.cpp +FILE: ../../../third_party/skia/src/shaders/gradients/Sk4fGradientBase.cpp +FILE: ../../../third_party/skia/src/shaders/gradients/Sk4fGradientBase.h +FILE: ../../../third_party/skia/src/shaders/gradients/Sk4fGradientPriv.h +FILE: ../../../third_party/skia/src/shaders/gradients/Sk4fLinearGradient.cpp +FILE: ../../../third_party/skia/src/shaders/gradients/Sk4fLinearGradient.h +FILE: ../../../third_party/skia/src/sksl/SkSLCFGGenerator.cpp +FILE: ../../../third_party/skia/src/sksl/SkSLCFGGenerator.h +FILE: ../../../third_party/skia/src/sksl/SkSLCPPCodeGenerator.cpp +FILE: ../../../third_party/skia/src/sksl/SkSLCodeGenerator.h +FILE: ../../../third_party/skia/src/sksl/SkSLCompiler.cpp +FILE: ../../../third_party/skia/src/sksl/SkSLCompiler.h +FILE: ../../../third_party/skia/src/sksl/SkSLContext.h +FILE: ../../../third_party/skia/src/sksl/SkSLErrorReporter.h +FILE: ../../../third_party/skia/src/sksl/SkSLGLSLCodeGenerator.cpp +FILE: ../../../third_party/skia/src/sksl/SkSLGLSLCodeGenerator.h +FILE: ../../../third_party/skia/src/sksl/SkSLHCodeGenerator.cpp +FILE: ../../../third_party/skia/src/sksl/SkSLIRGenerator.cpp +FILE: ../../../third_party/skia/src/sksl/SkSLIRGenerator.h +FILE: ../../../third_party/skia/src/sksl/SkSLMain.cpp +FILE: ../../../third_party/skia/src/sksl/SkSLMemoryLayout.h +FILE: ../../../third_party/skia/src/sksl/SkSLMetalCodeGenerator.cpp +FILE: ../../../third_party/skia/src/sksl/SkSLMetalCodeGenerator.h +FILE: ../../../third_party/skia/src/sksl/SkSLParser.cpp +FILE: ../../../third_party/skia/src/sksl/SkSLParser.h +FILE: ../../../third_party/skia/src/sksl/SkSLPosition.h +FILE: ../../../third_party/skia/src/sksl/SkSLSPIRVCodeGenerator.cpp +FILE: ../../../third_party/skia/src/sksl/SkSLSPIRVCodeGenerator.h +FILE: ../../../third_party/skia/src/sksl/SkSLUtil.cpp +FILE: ../../../third_party/skia/src/sksl/SkSLUtil.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTBinaryExpression.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTBlock.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTBoolLiteral.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTBreakStatement.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTCallSuffix.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTContinueStatement.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTDeclaration.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTDiscardStatement.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTDoStatement.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTExpression.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTExpressionStatement.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTExtension.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTFieldSuffix.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTFloatLiteral.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTForStatement.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTFunction.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTIdentifier.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTIfStatement.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTIndexSuffix.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTIntLiteral.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTInterfaceBlock.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTModifiersDeclaration.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTNode.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTParameter.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTPositionNode.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTPrecision.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTPrefixExpression.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTReturnStatement.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTSection.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTStatement.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTSuffix.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTSuffixExpression.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTTernaryExpression.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTType.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTVarDeclaration.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTVarDeclarationStatement.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTWhileStatement.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLBinaryExpression.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLBlock.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLBoolLiteral.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLBreakStatement.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLConstructor.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLContinueStatement.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLDiscardStatement.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLDoStatement.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLExpression.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLExpressionStatement.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLExtension.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLField.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLFieldAccess.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLFloatLiteral.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLForStatement.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLFunctionCall.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLFunctionDeclaration.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLFunctionDefinition.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLFunctionReference.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLIRNode.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLIfStatement.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLIndexExpression.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLIntLiteral.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLInterfaceBlock.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLLayout.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLModifiers.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLModifiersDeclaration.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLNop.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLPostfixExpression.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLPrefixExpression.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLProgram.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLProgramElement.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLReturnStatement.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLSection.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLSetting.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLStatement.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLSwizzle.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLSymbol.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLSymbolTable.cpp +FILE: ../../../third_party/skia/src/sksl/ir/SkSLSymbolTable.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLTernaryExpression.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLType.cpp +FILE: ../../../third_party/skia/src/sksl/ir/SkSLType.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLTypeReference.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLUnresolvedFunction.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLVarDeclarations.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLVarDeclarationsStatement.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLVariable.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLVariableReference.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLWhileStatement.h +FILE: ../../../third_party/skia/src/utils/SkMultiPictureDocument.cpp +FILE: ../../../third_party/skia/src/utils/SkMultiPictureDocument.h +FILE: ../../../third_party/skia/src/utils/SkMultiPictureDocumentPriv.h +FILE: ../../../third_party/skia/src/utils/SkOSPath.h +FILE: ../../../third_party/skia/third_party/libsdl/SDL_config_premake.h +---------------------------------------------------------------------------------------------------- +Copyright 2016 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skcms +LIBRARY: skia +LIBRARY: vulkan +LIBRARY: vulkanmemoryallocator +ORIGIN: ../../../third_party/skia/bench/CompositingImagesBench.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/bench/CompositingImagesBench.cpp +FILE: ../../../third_party/skia/bench/CubicMapBench.cpp +FILE: ../../../third_party/skia/bench/GrCCFillGeometryBench.cpp +FILE: ../../../third_party/skia/bench/ImageCycleBench.cpp +FILE: ../../../third_party/skia/bench/JSONBench.cpp +FILE: ../../../third_party/skia/bench/PolyUtilsBench.cpp +FILE: ../../../third_party/skia/bench/ShaderMaskFilterBench.cpp +FILE: ../../../third_party/skia/fuzz/FuzzCommon.cpp +FILE: ../../../third_party/skia/fuzz/FuzzPathMeasure.cpp +FILE: ../../../third_party/skia/fuzz/FuzzRegionOp.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzImageFilterDeserialize.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzPathDeserialize.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzRegionDeserialize.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzRegionSetPath.cpp +FILE: ../../../third_party/skia/gm/3dgm.cpp +FILE: ../../../third_party/skia/gm/androidblendmodes.cpp +FILE: ../../../third_party/skia/gm/clockwise.cpp +FILE: ../../../third_party/skia/gm/crbug_847759.cpp +FILE: ../../../third_party/skia/gm/hugepath.cpp +FILE: ../../../third_party/skia/gm/localmatrixshader.cpp +FILE: ../../../third_party/skia/gm/makeRasterImage.cpp +FILE: ../../../third_party/skia/gm/mandoline.cpp +FILE: ../../../third_party/skia/gm/orientation.cpp +FILE: ../../../third_party/skia/gm/pathmeasure.cpp +FILE: ../../../third_party/skia/gm/perspimages.cpp +FILE: ../../../third_party/skia/gm/polygonoffset.cpp +FILE: ../../../third_party/skia/gm/scaledemoji.cpp +FILE: ../../../third_party/skia/gm/scaledemoji_rendering.cpp +FILE: ../../../third_party/skia/gm/shadermaskfilter.cpp +FILE: ../../../third_party/skia/gm/sharedcorners.cpp +FILE: ../../../third_party/skia/gm/skinning.cpp +FILE: ../../../third_party/skia/gm/trickycubicstrokes.cpp +FILE: ../../../third_party/skia/include/android/SkAnimatedImage.h +FILE: ../../../third_party/skia/include/core/SkCanvasVirtualEnforcer.h +FILE: ../../../third_party/skia/include/core/SkCoverageMode.h +FILE: ../../../third_party/skia/include/core/SkFontParameters.h +FILE: ../../../third_party/skia/include/effects/SkOpPathEffect.h +FILE: ../../../third_party/skia/include/effects/SkShaderMaskFilter.h +FILE: ../../../third_party/skia/include/effects/SkTrimPathEffect.h +FILE: ../../../third_party/skia/include/gpu/GrDriverBugWorkarounds.h +FILE: ../../../third_party/skia/include/gpu/vk/GrVkMemoryAllocator.h +FILE: ../../../third_party/skia/include/private/GrCCClipPath.h +FILE: ../../../third_party/skia/include/private/GrCCPerOpListPaths.h +FILE: ../../../third_party/skia/include/private/GrProxyRef.h +FILE: ../../../third_party/skia/include/private/GrVkTypesPriv.h +FILE: ../../../third_party/skia/include/private/SkMacros.h +FILE: ../../../third_party/skia/include/private/SkSafe32.h +FILE: ../../../third_party/skia/include/private/SkTo.h +FILE: ../../../third_party/skia/include/utils/Sk3D.h +FILE: ../../../third_party/skia/include/utils/SkTextOnPath.h +FILE: ../../../third_party/skia/infra/cts/run_testlab.go +FILE: ../../../third_party/skia/modules/skottie/src/SkottieAdapter.cpp +FILE: ../../../third_party/skia/modules/skottie/src/SkottieAdapter.h +FILE: ../../../third_party/skia/modules/skottie/src/SkottieJson.cpp +FILE: ../../../third_party/skia/modules/skottie/src/SkottieJson.h +FILE: ../../../third_party/skia/modules/skottie/src/SkottieLayer.cpp +FILE: ../../../third_party/skia/modules/skottie/src/SkottieLayerEffect.cpp +FILE: ../../../third_party/skia/modules/skottie/src/SkottiePrecompLayer.cpp +FILE: ../../../third_party/skia/modules/skottie/src/SkottiePriv.h +FILE: ../../../third_party/skia/modules/skottie/src/SkottieShapeLayer.cpp +FILE: ../../../third_party/skia/modules/skottie/src/SkottieTest.cpp +FILE: ../../../third_party/skia/modules/skottie/src/SkottieTextLayer.cpp +FILE: ../../../third_party/skia/modules/skottie/src/SkottieTool.cpp +FILE: ../../../third_party/skia/modules/sksg/include/SkSGClipEffect.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGColorFilter.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGGeometryTransform.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGGradient.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGImage.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGMaskEffect.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGOpacityEffect.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGPlane.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGRoundEffect.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGScene.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGText.h +FILE: ../../../third_party/skia/modules/sksg/src/SkSGClipEffect.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGColorFilter.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGGeometryTransform.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGGradient.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGImage.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGMaskEffect.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGOpacityEffect.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGPlane.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGRoundEffect.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGScene.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGText.cpp +FILE: ../../../third_party/skia/samplecode/SampleAnimatedImage.cpp +FILE: ../../../third_party/skia/samplecode/SampleCusp.cpp +FILE: ../../../third_party/skia/samplecode/SampleFlutterAnimate.cpp +FILE: ../../../third_party/skia/samplecode/SampleGlyphTransform.cpp +FILE: ../../../third_party/skia/samplecode/SampleNima.cpp +FILE: ../../../third_party/skia/samplecode/SampleNimaActor.cpp +FILE: ../../../third_party/skia/samplecode/SampleNimaActor.h +FILE: ../../../third_party/skia/src/android/SkAnimatedImage.cpp +FILE: ../../../third_party/skia/src/codec/SkEncodedInfo.cpp +FILE: ../../../third_party/skia/src/compute/common/cl/find_cl.c +FILE: ../../../third_party/skia/src/compute/common/cl/find_cl.h +FILE: ../../../third_party/skia/src/compute/common/vk/event_pool.c +FILE: ../../../third_party/skia/src/compute/common/vk/event_pool.h +FILE: ../../../third_party/skia/src/compute/common/vk/host_alloc.c +FILE: ../../../third_party/skia/src/compute/common/vk/host_alloc.h +FILE: ../../../third_party/skia/src/compute/hs/cl/bench/sort.cpp +FILE: ../../../third_party/skia/src/compute/hs/cuda/bench/sort.cpp +FILE: ../../../third_party/skia/src/compute/hs/cuda/sm_35/u32/hs_cuda.h +FILE: ../../../third_party/skia/src/compute/hs/cuda/sm_35/u64/hs_cuda.h +FILE: ../../../third_party/skia/src/compute/hs/gen/target_debug.c +FILE: ../../../third_party/skia/src/compute/hs/gen/transpose.c +FILE: ../../../third_party/skia/src/compute/hs/gen/transpose.h +FILE: ../../../third_party/skia/src/compute/hs/vk/bench/sort.cpp +FILE: ../../../third_party/skia/src/compute/skc/allocator_host.c +FILE: ../../../third_party/skia/src/compute/skc/allocator_host.h +FILE: ../../../third_party/skia/src/compute/skc/interop.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/allocator_device_cl.c +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/allocator_device_cl.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/interop/interop_glfw.c +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/kernels/segment_ttck.cl +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/kernels/segment_ttrk.cl +FILE: ../../../third_party/skia/src/compute/skc/runtime.h +FILE: ../../../third_party/skia/src/compute/skc/skc_err.h +FILE: ../../../third_party/skia/src/compute/skc/skc_types.h +FILE: ../../../third_party/skia/src/compute/skc/suballocator.c +FILE: ../../../third_party/skia/src/compute/skc/suballocator.h +FILE: ../../../third_party/skia/src/compute/ts/transform_stack.c +FILE: ../../../third_party/skia/src/compute/ts/transform_stack.h +FILE: ../../../third_party/skia/src/core/SkBlurPriv.h +FILE: ../../../third_party/skia/src/core/SkCanvasPriv.cpp +FILE: ../../../third_party/skia/src/core/SkColorSpaceXformSteps.cpp +FILE: ../../../third_party/skia/src/core/SkColorSpaceXformSteps.h +FILE: ../../../third_party/skia/src/core/SkColorSpaceXform_skcms.cpp +FILE: ../../../third_party/skia/src/core/SkCoverageModePriv.h +FILE: ../../../third_party/skia/src/core/SkCubicMap.cpp +FILE: ../../../third_party/skia/src/core/SkCubicMap.h +FILE: ../../../third_party/skia/src/core/SkDeferredDisplayList.cpp +FILE: ../../../third_party/skia/src/core/SkGlyph.cpp +FILE: ../../../third_party/skia/src/core/SkIPoint16.h +FILE: ../../../third_party/skia/src/core/SkMaskFilterBase.h +FILE: ../../../third_party/skia/src/core/SkPath_serial.cpp +FILE: ../../../third_party/skia/src/core/SkPicturePriv.h +FILE: ../../../third_party/skia/src/core/SkRRectPriv.h +FILE: ../../../third_party/skia/src/core/SkRectPriv.h +FILE: ../../../third_party/skia/src/core/SkRemoteGlyphCache.cpp +FILE: ../../../third_party/skia/src/core/SkRemoteGlyphCache.h +FILE: ../../../third_party/skia/src/core/SkRemoteGlyphCacheImpl.h +FILE: ../../../third_party/skia/src/core/SkSafeRange.h +FILE: ../../../third_party/skia/src/core/SkSpan.h +FILE: ../../../third_party/skia/src/core/SkStrikeCache.cpp +FILE: ../../../third_party/skia/src/core/SkSurfaceCharacterization.cpp +FILE: ../../../third_party/skia/src/core/SkTextBlobPriv.h +FILE: ../../../third_party/skia/src/core/SkTypeface_remote.cpp +FILE: ../../../third_party/skia/src/core/SkTypeface_remote.h +FILE: ../../../third_party/skia/src/effects/SkOpPE.h +FILE: ../../../third_party/skia/src/effects/SkOpPathEffect.cpp +FILE: ../../../third_party/skia/src/effects/SkShaderMaskFilter.cpp +FILE: ../../../third_party/skia/src/effects/SkTrimPE.h +FILE: ../../../third_party/skia/src/effects/SkTrimPathEffect.cpp +FILE: ../../../third_party/skia/src/gpu/GrContextThreadSafeProxyPriv.h +FILE: ../../../third_party/skia/src/gpu/GrDDLContext.cpp +FILE: ../../../third_party/skia/src/gpu/GrDirectContext.cpp +FILE: ../../../third_party/skia/src/gpu/GrDriverBugWorkarounds.cpp +FILE: ../../../third_party/skia/src/gpu/GrFPArgs.h +FILE: ../../../third_party/skia/src/gpu/GrProxyProvider.cpp +FILE: ../../../third_party/skia/src/gpu/GrProxyProvider.h +FILE: ../../../third_party/skia/src/gpu/GrQuad.cpp +FILE: ../../../third_party/skia/src/gpu/GrRenderTargetProxyPriv.h +FILE: ../../../third_party/skia/src/gpu/GrResourceProviderPriv.h +FILE: ../../../third_party/skia/src/gpu/GrUninstantiateProxyTracker.cpp +FILE: ../../../third_party/skia/src/gpu/GrUninstantiateProxyTracker.h +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCClipPath.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCConicShader.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCConicShader.h +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCDrawPathsOp.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCDrawPathsOp.h +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCPathCache.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCPathCache.h +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCPerFlushResources.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCPerFlushResources.h +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCSTLList.h +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCStrokeGeometry.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCStrokeGeometry.h +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCStroker.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCStroker.h +FILE: ../../../third_party/skia/src/gpu/effects/GrAARectEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrAARectEffect.fp +FILE: ../../../third_party/skia/src/gpu/effects/GrAARectEffect.h +FILE: ../../../third_party/skia/src/gpu/effects/GrAlphaThresholdFragmentProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrAlphaThresholdFragmentProcessor.fp +FILE: ../../../third_party/skia/src/gpu/effects/GrAlphaThresholdFragmentProcessor.h +FILE: ../../../third_party/skia/src/gpu/effects/GrCircleBlurFragmentProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrCircleBlurFragmentProcessor.fp +FILE: ../../../third_party/skia/src/gpu/effects/GrCircleBlurFragmentProcessor.h +FILE: ../../../third_party/skia/src/gpu/effects/GrConfigConversionEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrConfigConversionEffect.fp +FILE: ../../../third_party/skia/src/gpu/effects/GrConfigConversionEffect.h +FILE: ../../../third_party/skia/src/gpu/effects/GrConstColorProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrConstColorProcessor.fp +FILE: ../../../third_party/skia/src/gpu/effects/GrConstColorProcessor.h +FILE: ../../../third_party/skia/src/gpu/effects/GrLumaColorFilterEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrLumaColorFilterEffect.fp +FILE: ../../../third_party/skia/src/gpu/effects/GrLumaColorFilterEffect.h +FILE: ../../../third_party/skia/src/gpu/effects/GrMagnifierEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrMagnifierEffect.fp +FILE: ../../../third_party/skia/src/gpu/effects/GrMagnifierEffect.h +FILE: ../../../third_party/skia/src/gpu/effects/GrPremulInputFragmentProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrPremulInputFragmentProcessor.fp +FILE: ../../../third_party/skia/src/gpu/effects/GrPremulInputFragmentProcessor.h +FILE: ../../../third_party/skia/src/gpu/effects/GrRRectBlurEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrRRectBlurEffect.fp +FILE: ../../../third_party/skia/src/gpu/effects/GrRRectBlurEffect.h +FILE: ../../../third_party/skia/src/gpu/effects/GrRectBlurEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrRectBlurEffect.fp +FILE: ../../../third_party/skia/src/gpu/effects/GrRectBlurEffect.h +FILE: ../../../third_party/skia/src/gpu/effects/GrSkSLFP.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrSkSLFP.h +FILE: ../../../third_party/skia/src/gpu/effects/GrUnpremulInputFragmentProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrUnpremulInputFragmentProcessor.fp +FILE: ../../../third_party/skia/src/gpu/effects/GrUnpremulInputFragmentProcessor.h +FILE: ../../../third_party/skia/src/gpu/effects/GrYUVtoRGBEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrYUVtoRGBEffect.fp +FILE: ../../../third_party/skia/src/gpu/effects/GrYUVtoRGBEffect.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlBuffer.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlBuffer.mm +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlCopyManager.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlCopyManager.mm +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlCopyPipelineState.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlCopyPipelineState.mm +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlGpuCommandBuffer.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlGpuCommandBuffer.mm +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlPipelineState.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlPipelineState.mm +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlPipelineStateBuilder.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlPipelineStateBuilder.mm +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlPipelineStateDataManager.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlPipelineStateDataManager.mm +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlResourceProvider.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlResourceProvider.mm +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlSampler.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlSampler.mm +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlTextureRenderTarget.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlTextureRenderTarget.mm +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlUniformHandler.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlUniformHandler.mm +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlVaryingHandler.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlVaryingHandler.mm +FILE: ../../../third_party/skia/src/gpu/ops/GrClearStencilClipOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrDebugMarkerOp.cpp +FILE: ../../../third_party/skia/src/gpu/text/GrAtlasManager.cpp +FILE: ../../../third_party/skia/src/gpu/text/GrAtlasManager.h +FILE: ../../../third_party/skia/src/gpu/text/GrSDFMaskFilter.cpp +FILE: ../../../third_party/skia/src/gpu/text/GrSDFMaskFilter.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkAMDMemoryAllocator.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkAMDMemoryAllocator.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkImageLayout.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipelineLayout.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipelineLayout.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkTypesPriv.cpp +FILE: ../../../third_party/skia/src/opts/SkOpts_hsw.cpp +FILE: ../../../third_party/skia/src/opts/SkRasterPipeline_opts.h +FILE: ../../../third_party/skia/src/pathops/SkPathOpsAsWinding.cpp +FILE: ../../../third_party/skia/src/pdf/SkClusterator.cpp +FILE: ../../../third_party/skia/src/pdf/SkClusterator.h +FILE: ../../../third_party/skia/src/sksl/SkSLCPPUniformCTypes.cpp +FILE: ../../../third_party/skia/src/sksl/SkSLCPPUniformCTypes.h +FILE: ../../../third_party/skia/src/sksl/SkSLInterpreter.cpp +FILE: ../../../third_party/skia/src/sksl/SkSLInterpreter.h +FILE: ../../../third_party/skia/src/sksl/SkSLJIT.cpp +FILE: ../../../third_party/skia/src/sksl/SkSLJIT.h +FILE: ../../../third_party/skia/src/sksl/SkSLPipelineStageCodeGenerator.cpp +FILE: ../../../third_party/skia/src/sksl/ir/SkSLAppendStage.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLVariableReference.cpp +FILE: ../../../third_party/skia/src/utils/Sk3D.cpp +FILE: ../../../third_party/skia/src/utils/SkJSON.cpp +FILE: ../../../third_party/skia/src/utils/SkJSON.h +FILE: ../../../third_party/skia/src/utils/SkTextOnPath.cpp +FILE: ../../../third_party/skia/src/utils/win/SkDWriteNTDDI_VERSION.h +FILE: ../../../third_party/skia/third_party/skcms/skcms.cc +FILE: ../../../third_party/skia/third_party/skcms/skcms.h +FILE: ../../../third_party/skia/third_party/skcms/skcms_internal.h +FILE: ../../../third_party/skia/third_party/skcms/src/Transform_inl.h +FILE: ../../../third_party/skia/third_party/vulkan/SkiaVulkan.h +FILE: ../../../third_party/skia/third_party/vulkanmemoryallocator/GrVulkanMemoryAllocator.cpp +FILE: ../../../third_party/skia/third_party/vulkanmemoryallocator/GrVulkanMemoryAllocator.h +---------------------------------------------------------------------------------------------------- +Copyright 2018 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skcms +ORIGIN: ../../../third_party/skia/third_party/skcms/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/third_party/skcms/version.sha1 +---------------------------------------------------------------------------------------------------- +Copyright (c) 2018 Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +LIBRARY: vulkan +ORIGIN: ../../../flutter/third_party/txt/LICENSE +TYPE: LicenseType.apache +FILE: ../../../third_party/skia/modules/pathkit/npm-asmjs/example.html +FILE: ../../../third_party/skia/modules/pathkit/npm-asmjs/package.json +FILE: ../../../third_party/skia/modules/pathkit/npm-wasm/example.html +FILE: ../../../third_party/skia/modules/pathkit/npm-wasm/package.json +FILE: ../../../third_party/skia/src/images/SkWebpEncoder.cpp +FILE: ../../../third_party/skia/third_party/vulkan/vulkan/vk_platform.h +FILE: ../../../third_party/skia/third_party/vulkan/vulkan/vulkan.h +FILE: ../../../third_party/skia/third_party/vulkan/vulkan/vulkan_android.h +FILE: ../../../third_party/skia/third_party/vulkan/vulkan/vulkan_core.h +FILE: ../../../third_party/skia/third_party/vulkan/vulkan/vulkan_ios.h +FILE: ../../../third_party/skia/third_party/vulkan/vulkan/vulkan_macos.h +FILE: ../../../third_party/skia/third_party/vulkan/vulkan/vulkan_win32.h +FILE: ../../../third_party/skia/third_party/vulkan/vulkan/vulkan_xcb.h +---------------------------------------------------------------------------------------------------- +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses + +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + +1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/icu/scripts/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/core/SkTraceEventCommon.h +---------------------------------------------------------------------------------------------------- +Copyright 2015 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/CQ_COMMITTERS +FILE: ../../../third_party/skia/DEPS +FILE: ../../../third_party/skia/Doxyfile +FILE: ../../../third_party/skia/animations/checkbox.xml +FILE: ../../../third_party/skia/animations/chest#1.jpg +FILE: ../../../third_party/skia/animations/fire#1.jpg +FILE: ../../../third_party/skia/animations/images#1.xml +FILE: ../../../third_party/skia/animations/jet#1.jpg +FILE: ../../../third_party/skia/animations/lines#1.xml +FILE: ../../../third_party/skia/animations/movie#1.xml +FILE: ../../../third_party/skia/animations/paths#1.xml +FILE: ../../../third_party/skia/animations/redcross#1.jpg +FILE: ../../../third_party/skia/animations/text#1.xml +FILE: ../../../third_party/skia/bench/microbench.json +FILE: ../../../third_party/skia/bench/skpbench.json +FILE: ../../../third_party/skia/docker/skia-release/Dockerfile +FILE: ../../../third_party/skia/docker/skia-with-swift-shader-base/Dockerfile +FILE: ../../../third_party/skia/docker/skia-with-swift-shader-base/build-with-swift-shader-and-run +FILE: ../../../third_party/skia/docs/SkAutoCanvasRestore_Reference.bmh +FILE: ../../../third_party/skia/docs/SkBitmap_Reference.bmh +FILE: ../../../third_party/skia/docs/SkBlendMode_Reference.bmh +FILE: ../../../third_party/skia/docs/SkCanvas_Reference.bmh +FILE: ../../../third_party/skia/docs/SkColor4f_Reference.bmh +FILE: ../../../third_party/skia/docs/SkColor_Reference.bmh +FILE: ../../../third_party/skia/docs/SkDynamicMemoryWStream_Reference.bmh +FILE: ../../../third_party/skia/docs/SkFILEStream_Reference.bmh +FILE: ../../../third_party/skia/docs/SkFILEWStream_Reference.bmh +FILE: ../../../third_party/skia/docs/SkIPoint_Reference.bmh +FILE: ../../../third_party/skia/docs/SkIRect_Reference.bmh +FILE: ../../../third_party/skia/docs/SkImageInfo_Reference.bmh +FILE: ../../../third_party/skia/docs/SkImage_Reference.bmh +FILE: ../../../third_party/skia/docs/SkMatrix_Reference.bmh +FILE: ../../../third_party/skia/docs/SkMemoryStream_Reference.bmh +FILE: ../../../third_party/skia/docs/SkPaint_Reference.bmh +FILE: ../../../third_party/skia/docs/SkPath_Reference.bmh +FILE: ../../../third_party/skia/docs/SkPicture_Reference.bmh +FILE: ../../../third_party/skia/docs/SkPixmap_Reference.bmh +FILE: ../../../third_party/skia/docs/SkPoint_Reference.bmh +FILE: ../../../third_party/skia/docs/SkRRect_Reference.bmh +FILE: ../../../third_party/skia/docs/SkRect_Reference.bmh +FILE: ../../../third_party/skia/docs/SkRegion_Reference.bmh +FILE: ../../../third_party/skia/docs/SkStream_Reference.bmh +FILE: ../../../third_party/skia/docs/SkSurface_Reference.bmh +FILE: ../../../third_party/skia/docs/SkTextBlobBuilder_Reference.bmh +FILE: ../../../third_party/skia/docs/SkTextBlob_Reference.bmh +FILE: ../../../third_party/skia/docs/SkWStream_Reference.bmh +FILE: ../../../third_party/skia/docs/illustrations.bmh +FILE: ../../../third_party/skia/docs/markup.bmh +FILE: ../../../third_party/skia/docs/overview.bmh +FILE: ../../../third_party/skia/docs/status.json +FILE: ../../../third_party/skia/docs/undocumented.bmh +FILE: ../../../third_party/skia/docs/usingBookmaker.bmh +FILE: ../../../third_party/skia/experimental/docs/animationCommon.js +FILE: ../../../third_party/skia/experimental/docs/backend.js +FILE: ../../../third_party/skia/experimental/docs/canvasBackend.js +FILE: ../../../third_party/skia/experimental/docs/exampleSlides.js +FILE: ../../../third_party/skia/experimental/docs/interpolatorFunctions.js +FILE: ../../../third_party/skia/experimental/docs/jsonbaseddoc.htm +FILE: ../../../third_party/skia/experimental/docs/svgBackend.js +FILE: ../../../third_party/skia/experimental/docs/svgbaseddoc.htm +FILE: ../../../third_party/skia/experimental/docs/utilities.js +FILE: ../../../third_party/skia/infra/bots/android_bin.isolate +FILE: ../../../third_party/skia/infra/bots/assets.isolate +FILE: ../../../third_party/skia/infra/bots/assets/android_ndk_darwin/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/android_ndk_linux/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/android_ndk_windows/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/android_sdk_linux/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/armhf_sysroot/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/cast_toolchain/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/chromebook_arm_gles/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/chromebook_x86_64_gles/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/clang_linux/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/clang_win/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/cmake_linux/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/gcloud_linux/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/go/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/go_deps/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/linux_vulkan_intel_driver_debug/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/linux_vulkan_intel_driver_release/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/linux_vulkan_sdk/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/lottie-samples/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/mips64el_toolchain_linux/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/moltenvk/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/node/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/opencl_headers/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/opencl_intel_neo_linux/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/opencl_ocl_icd_linux/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/procdump_win/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/protoc/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/skimage/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/skp/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/svg/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/valgrind/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/win_ninja/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/win_toolchain/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/win_toolchain_2015/VERSION +FILE: ../../../third_party/skia/infra/bots/assets/win_vulkan_sdk/VERSION +FILE: ../../../third_party/skia/infra/bots/calmbench.isolate +FILE: ../../../third_party/skia/infra/bots/cfg.json +FILE: ../../../third_party/skia/infra/bots/ct/blacklists/get_images_from_skps_100k_c37e844a6f8708-eee762104c75bd.json +FILE: ../../../third_party/skia/infra/bots/ct/blacklists/get_images_from_skps_100k_fad657e-276e633.json +FILE: ../../../third_party/skia/infra/bots/empty.isolate +FILE: ../../../third_party/skia/infra/bots/infrabots.isolate +FILE: ../../../third_party/skia/infra/bots/ios_bin.isolate +FILE: ../../../third_party/skia/infra/bots/isolate_android_sdk_linux.isolate +FILE: ../../../third_party/skia/infra/bots/isolate_gcloud_linux.isolate +FILE: ../../../third_party/skia/infra/bots/isolate_go.isolate +FILE: ../../../third_party/skia/infra/bots/jobs.json +FILE: ../../../third_party/skia/infra/bots/perf_skia_bundled.isolate +FILE: ../../../third_party/skia/infra/bots/recipe_modules/binary_size/examples/full.expected/binary_size.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-arm-Release-Android_API26.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-arm-Release-Android_ASAN.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-arm-Release-Chromebook_GLES.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-universal-devrel-Android_SKQP.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-Coverage.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-MSAN.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-OpenCL.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SK_CPU_LIMIT_SSE41.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SafeStack.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-ASAN.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Fast.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Mini.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-NoDEPS.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Static.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-SwiftShader.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Vulkan.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-EMCC-asmjs-Debug-PathKit.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-EMCC-asmjs-Release-PathKit.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-EMCC-wasm-Debug-PathKit.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-EMCC-wasm-Release-PathKit.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-GCC-arm-Release-Chromecast.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-GCC-loongson3a-Release.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-GCC-x86_64-Release-ANGLE.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-GCC-x86_64-Release-Flutter_Android.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-GCC-x86_64-Release-NoGPU.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Debian9-GCC-x86_64-Release-Shared.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-arm64-Debug-Android_Vulkan.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-arm64-Debug-iOS.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-x86_64-Debug-ASAN.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-x86_64-Debug-Metal.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Mac-Clang-x86_64-Release-MoltenVK_Vulkan.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Win-Clang-arm64-Release-Android.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Win-Clang-x86-Debug-Exceptions.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Win-Clang-x86_64-Debug-OpenCL.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Build-Win-Clang-x86_64-Release-Vulkan.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/builder_name_schema/builder_name_schema.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/builder_name_schema/examples/full.expected/test.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/Build-Debian9-Clang-x86_64-Release-NoDEPS.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/Build-Win-Clang-x86_64-Release-ParentRevision.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/Housekeeper-Weekly-RecreateSKPs.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/cross_repo_trybot.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/flutter_trybot.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/parent_revision_trybot.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/test.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/checkout/examples/full.expected/trybot.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/ct/examples/full.expected/failed_gsutil.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/ct/examples/full.expected/test.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/doxygen/examples/full.expected/doxygen.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/env/examples/full.expected/test.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Chromecast-Clang-Chorizo-CPU-Cortex_A7-arm-Release-All.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-ASAN.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_ASAN.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-Coverage.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Lottie.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-TSAN.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian9-Clang-GCE-GPU-SwiftShader-x86_64-Debug-All-SwiftShader.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All-OpenCL.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All-Vulkan.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Mac-Clang-MacBookPro11.5-CPU-AVX2-x86_64-Debug-All-ASAN.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_AbandonGpuContext_SK_CPU_LIMIT_SSE41.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_ProcDump.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/cpu_scale_failed.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/cpu_scale_failed_golo.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/cpu_scale_failed_once.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/exceptions.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/failed_infra_step.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/failed_read_version.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/retry_adb_command.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/retry_adb_command_retries_exhausted.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/retry_ios_install.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/retry_ios_install_retries_exhausted.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/git/examples/full.expected/test.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/gsutil/examples/full.expected/failed_all_uploads.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/gsutil/examples/full.expected/failed_one_upload.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/gsutil/examples/full.expected/gsutil_tests.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/infra/examples/full.expected/infra_tests.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/always-use-exparchive.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/basic.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/discover.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/exparchive-batch-bmiss.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/exparchive-batch-emiss.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/exparchive-batch.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/exparchive-miss.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/exparchive-multi-miss.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/exparchive-multi.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/exparchive.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/extra.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/missing.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/none.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/run/examples/full.expected/test.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/skia_swarming/examples/full.expected/test.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming/examples/full.expected/basic.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming/examples/full.expected/show_isolated_out_in_collect_step.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming/examples/full.expected/show_shards_in_collect_step.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming/examples/full.expected/swarming_expired_new.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming/examples/full.expected/swarming_expired_old.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming/examples/full.expected/swarming_timeout_new.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming/examples/full.expected/swarming_timeout_old.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming/examples/full.expected/trybot.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming_client/examples/full.expected/basic.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Build-Debian9-Clang-x86_64-Release-SKNX_NO_SIMD.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Housekeeper-Weekly-RecreateSKPs.json +FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/win_test.json +FILE: ../../../third_party/skia/infra/bots/recipes/android_compile.expected/android_compile_nontrybot.json +FILE: ../../../third_party/skia/infra/bots/recipes/android_compile.expected/android_compile_trybot.json +FILE: ../../../third_party/skia/infra/bots/recipes/bookmaker.expected/nightly_bookmaker.json +FILE: ../../../third_party/skia/infra/bots/recipes/bookmaker.expected/nightly_failed_extract_fiddles.json +FILE: ../../../third_party/skia/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddlecli.json +FILE: ../../../third_party/skia/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddles.json +FILE: ../../../third_party/skia/infra/bots/recipes/bookmaker.expected/nightly_failed_upload.json +FILE: ../../../third_party/skia/infra/bots/recipes/bookmaker.expected/percommit_bookmaker.json +FILE: ../../../third_party/skia/infra/bots/recipes/bookmaker.expected/percommit_failed_validation.json +FILE: ../../../third_party/skia/infra/bots/recipes/calmbench.expected/Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All.json +FILE: ../../../third_party/skia/infra/bots/recipes/calmbench.expected/Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All.json +FILE: ../../../third_party/skia/infra/bots/recipes/check_generated_files.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json +FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-universal-devrel-Android_SKQP.json +FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-NoDEPS.json +FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-ParentRevision.json +FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-Flutter_Android.json +FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json +FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Win-Clang-x86-Debug.json +FILE: ../../../third_party/skia/infra/bots/recipes/compute_test.expected/Test-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All-OpenCL.json +FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_10k_SKPs_UnknownBuilder.json +FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_CPU_BENCH_10k_SKPs.json +FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_DM_100k_SKPs.json +FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_DM_10k_SKPs.json +FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_DM_10k_SKPs_Trybot.json +FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs.json +FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs_2slaves_failure.json +FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs_slave3_failure.json +FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_DM_SKPs_UnknownBuilder.json +FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_10k_SKPs.json +FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_1k_SKPs.json +FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_100k_SKPs.json +FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_10k_SKPs.json +FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_10k_SKPs_Trybot.json +FILE: ../../../third_party/skia/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit-Trybot.json +FILE: ../../../third_party/skia/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit.json +FILE: ../../../third_party/skia/infra/bots/recipes/infra.expected/infra_tests.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_NoGPUThreads.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Chromecast-Clang-Chorizo-CPU-Cortex_A7-arm-Debug-All.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Chromecast-Clang-Chorizo-GPU-Cortex_A7-arm-Release-All.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-BonusConfigs.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Release-All.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Mac-Clang-MacBookPro11.5-GPU-RadeonHD8870M-x86_64-Release-All-MoltenVK_Vulkan.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All-CommandBuffer.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_AbandonGpuContext_SK_CPU_LIMIT_SSE41.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ANGLE.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-iOS-Clang-iPadPro-GPU-PowerVRGT7800-arm64-Release-All.json +FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/trybot.json +FILE: ../../../third_party/skia/infra/bots/recipes/recreate_skps.expected/Housekeeper-Nightly-RecreateSKPs_Canary.json +FILE: ../../../third_party/skia/infra/bots/recipes/recreate_skps.expected/Housekeeper-Weekly-RecreateSKPs.json +FILE: ../../../third_party/skia/infra/bots/recipes/recreate_skps.expected/failed_upload.json +FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench.json +FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_Skpbench.json +FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_Skpbench_DDLRecord_9x9.json +FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/Perf-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_Skpbench_DDLTotal_9x9.json +FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/trybot.json +FILE: ../../../third_party/skia/infra/bots/recipes/skqp_test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-universal-devrel-All-Android_SKQP.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android_NoGPUThreads.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Release-All-Android_Vulkan.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-MotoG4-CPU-Snapdragon617-arm-Release-All-Android.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-Nexus7-CPU-Tegra3-arm-Release-All-Android.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-NexusPlayer-GPU-PowerVRG6430-x86-Release-All-Android.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-Pixel-GPU-Adreno530-arm-Debug-All-Android_ASAN.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_Vulkan.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Chromecast-Clang-Chorizo-CPU-Cortex_A7-arm-Release-All.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Chromecast-Clang-Chorizo-GPU-Cortex_A7-arm-Release-All.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-BonusConfigs.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_00_10-Coverage.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-Lottie.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-TSAN.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-GPU-SwiftShader-x86_64-Release-All-SwiftShader.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All-Vulkan.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Release-All-NativeFonts.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Mac-Clang-MacBookAir7.2-GPU-IntelHD6000-x86_64-Debug-All.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Mac-Clang-MacBookPro11.5-CPU-AVX2-x86_64-Release-All.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Mac-Clang-MacBookPro11.5-GPU-RadeonHD8870M-x86_64-Debug-All-Metal.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Mac-Clang-MacBookPro11.5-GPU-RadeonHD8870M-x86_64-Release-All-MoltenVK_Vulkan.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All-CommandBuffer.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL1.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL3.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Lottie.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan_Coverage.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_AbandonGpuContext_SK_CPU_LIMIT_SSE41.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_PreAbandonGpuContext_SK_CPU_LIMIT_SSE41.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-BonusConfigs.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ReleaseAndAbandonGpuContext.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-NUC5i7RYH-CPU-AVX2-x86_64-Debug-All-NativeFonts_GDI.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-NUC5i7RYH-GPU-IntelIris6100-x86_64-Release-All-ANGLE.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Release-All-Vulkan.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FAAA.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FDAA.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FSAA.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-iOS-Clang-iPadPro-GPU-PowerVRGT7800-arm64-Release-All.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/failed_dm.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/failed_get_hashes.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/failed_pull.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/failed_push.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/internal_bot_2.json +FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/trybot.json +FILE: ../../../third_party/skia/infra/bots/recipes/test_lottie_web.expected/Test-Debian9-none-GCE-CPU-AVX2-x86_64-Debug-All-LottieWeb.json +FILE: ../../../third_party/skia/infra/bots/recipes/test_lottie_web.expected/lottie_web_trybot.json +FILE: ../../../third_party/skia/infra/bots/recipes/test_pathkit.expected/Test-Debian9-EMCC-GCE-CPU-AVX2-asmjs-Debug-All-PathKit.json +FILE: ../../../third_party/skia/infra/bots/recipes/test_pathkit.expected/Test-Debian9-EMCC-GCE-CPU-AVX2-asmjs-Release-All-PathKit.json +FILE: ../../../third_party/skia/infra/bots/recipes/test_pathkit.expected/Test-Debian9-EMCC-GCE-CPU-AVX2-wasm-Debug-All-PathKit.json +FILE: ../../../third_party/skia/infra/bots/recipes/test_pathkit.expected/pathkit_trybot.json +FILE: ../../../third_party/skia/infra/bots/recipes/upload_calmbench_results.expected/normal_bot.json +FILE: ../../../third_party/skia/infra/bots/recipes/upload_calmbench_results.expected/trybot.json +FILE: ../../../third_party/skia/infra/bots/recipes/upload_coverage_results.expected/alternate_bucket.json +FILE: ../../../third_party/skia/infra/bots/recipes/upload_coverage_results.expected/failed_all.json +FILE: ../../../third_party/skia/infra/bots/recipes/upload_coverage_results.expected/failed_once.json +FILE: ../../../third_party/skia/infra/bots/recipes/upload_coverage_results.expected/normal_bot.json +FILE: ../../../third_party/skia/infra/bots/recipes/upload_coverage_results.expected/trybot.json +FILE: ../../../third_party/skia/infra/bots/recipes/upload_dm_results.expected/alternate_bucket.json +FILE: ../../../third_party/skia/infra/bots/recipes/upload_dm_results.expected/failed_all.json +FILE: ../../../third_party/skia/infra/bots/recipes/upload_dm_results.expected/failed_once.json +FILE: ../../../third_party/skia/infra/bots/recipes/upload_dm_results.expected/normal_bot.json +FILE: ../../../third_party/skia/infra/bots/recipes/upload_dm_results.expected/trybot.json +FILE: ../../../third_party/skia/infra/bots/recipes/upload_nano_results.expected/normal_bot.json +FILE: ../../../third_party/skia/infra/bots/recipes/upload_nano_results.expected/trybot.json +FILE: ../../../third_party/skia/infra/bots/recipes/upload_skiaserve.expected/normal_bot.json +FILE: ../../../third_party/skia/infra/bots/recipes/upload_skiaserve.expected/trybot.json +FILE: ../../../third_party/skia/infra/bots/resources.isolate +FILE: ../../../third_party/skia/infra/bots/skpbench_skia_bundled.isolate +FILE: ../../../third_party/skia/infra/bots/swarm_recipe.isolate +FILE: ../../../third_party/skia/infra/bots/tasks.json +FILE: ../../../third_party/skia/infra/bots/test_skia_bundled.isolate +FILE: ../../../third_party/skia/infra/bots/tools/luci-go/linux64/isolate.sha1 +FILE: ../../../third_party/skia/infra/bots/tools/luci-go/mac64/isolate.sha1 +FILE: ../../../third_party/skia/infra/bots/tools/luci-go/win64/isolate.exe.sha1 +FILE: ../../../third_party/skia/infra/branch-config/cq.cfg +FILE: ../../../third_party/skia/infra/config/recipes.cfg +FILE: ../../../third_party/skia/infra/cts/whitelist_devices.json +FILE: ../../../third_party/skia/infra/lottiecap/docker/gold-lottie-web-puppeteer/Dockerfile +FILE: ../../../third_party/skia/infra/lottiecap/docker/lottie-web-puppeteer/Dockerfile +FILE: ../../../third_party/skia/infra/pathkit/docker/emsdk-base/Dockerfile +FILE: ../../../third_party/skia/infra/pathkit/docker/gold-karma-chrome-tests/Dockerfile +FILE: ../../../third_party/skia/infra/pathkit/docker/karma-chrome-tests/Dockerfile +FILE: ../../../third_party/skia/infra/project-config/cr-buildbucket.cfg +FILE: ../../../third_party/skia/infra/project-config/project.cfg +FILE: ../../../third_party/skia/infra/project-config/refs.cfg +FILE: ../../../third_party/skia/modules/pathkit/chaining.js +FILE: ../../../third_party/skia/modules/pathkit/externs.js +FILE: ../../../third_party/skia/modules/pathkit/helper.js +FILE: ../../../third_party/skia/modules/pathkit/karma.conf.js +FILE: ../../../third_party/skia/modules/pathkit/package.json +FILE: ../../../third_party/skia/public.bzl +FILE: ../../../third_party/skia/site/METADATA +FILE: ../../../third_party/skia/site/dev/METADATA +FILE: ../../../third_party/skia/site/dev/design/PdfLogicalDocumentStructure.png +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.1.ggb!/geogebra.xml +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.1.ggb!/geogebra_javascript.js +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.1.ggb!/geogebra_thumbnail.png +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.1.svg +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.2.ggb!/geogebra.xml +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.2.ggb!/geogebra_javascript.js +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.2.ggb!/geogebra_thumbnail.png +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.2.svg +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.ggb!/geogebra.xml +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.ggb!/geogebra_javascript.js +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.ggb!/geogebra_thumbnail.png +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.1.ggb!/geogebra.xml +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.1.ggb!/geogebra_javascript.js +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.1.ggb!/geogebra_thumbnail.png +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.1.svg +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.2.ggb!/geogebra.xml +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.2.ggb!/geogebra_javascript.js +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.2.ggb!/geogebra_thumbnail.png +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.2.svg +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.3.ggb!/geogebra.xml +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.3.ggb!/geogebra_javascript.js +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.3.ggb!/geogebra_thumbnail.png +FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.3.svg +FILE: ../../../third_party/skia/site/dev/design/conical/lemma1.ggb!/geogebra.xml +FILE: ../../../third_party/skia/site/dev/design/conical/lemma1.ggb!/geogebra_javascript.js +FILE: ../../../third_party/skia/site/dev/design/conical/lemma1.ggb!/geogebra_thumbnail.png +FILE: ../../../third_party/skia/site/dev/design/conical/lemma1.svg +FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.1.ggb!/geogebra.xml +FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.1.ggb!/geogebra_javascript.js +FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.1.ggb!/geogebra_thumbnail.png +FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.1.svg +FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.2.ggb!/geogebra.xml +FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.2.ggb!/geogebra_javascript.js +FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.2.ggb!/geogebra_thumbnail.png +FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.2.svg +FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.ggb!/geogebra.xml +FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.ggb!/geogebra_javascript.js +FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.ggb!/geogebra_thumbnail.png +FILE: ../../../third_party/skia/site/dev/design/conical/lemma4.ggb!/geogebra.xml +FILE: ../../../third_party/skia/site/dev/design/conical/lemma4.ggb!/geogebra_javascript.js +FILE: ../../../third_party/skia/site/dev/design/conical/lemma4.ggb!/geogebra_thumbnail.png +FILE: ../../../third_party/skia/site/dev/design/conical/lemma4.svg +FILE: ../../../third_party/skia/site/dev/tools/debugger.png +FILE: ../../../third_party/skia/site/dev/tools/image.png +FILE: ../../../third_party/skia/site/dev/tools/onlinedebugger.png +FILE: ../../../third_party/skia/site/dev/tools/tracing.png +FILE: ../../../third_party/skia/site/dev/tools/tracing_load.png +FILE: ../../../third_party/skia/site/favicon.ico +FILE: ../../../third_party/skia/site/user/METADATA +FILE: ../../../third_party/skia/site/user/api/METADATA +FILE: ../../../third_party/skia/site/user/api/catalog.htm +FILE: ../../../third_party/skia/site/user/modules/PathKit_effects.png +FILE: ../../../third_party/skia/site/user/sample/architecture.png +FILE: ../../../third_party/skia/site/user/sample/detail_correct.png +FILE: ../../../third_party/skia/site/user/sample/detail_wrong.png +FILE: ../../../third_party/skia/site/user/sample/gamut_correct.png +FILE: ../../../third_party/skia/site/user/sample/gamut_wrong.png +FILE: ../../../third_party/skia/site/user/sample/gradient_correct.png +FILE: ../../../third_party/skia/site/user/sample/gradient_wrong.png +FILE: ../../../third_party/skia/site/user/sample/transfer_fn.png +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u32/hs_kernels.bin +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u32/hs_kernels.bin.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u32/hs_kernels.bin.xxd +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u32/hs_kernels.pre.cl +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u32/hs_kernels.src.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u32/hs_kernels.src.xxd +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u64/hs_kernels.bin +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u64/hs_kernels.bin.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u64/hs_kernels.bin.xxd +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u64/hs_kernels.pre.cl +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u64/hs_kernels.src.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/cl/intel/gen8/u64/hs_kernels.src.xxd +FILE: ../../../third_party/skia/src/compute/hs/images/hs_flip_merge.svg +FILE: ../../../third_party/skia/src/compute/hs/images/hs_intel_gen8_mkeys.svg +FILE: ../../../third_party/skia/src/compute/hs/images/hs_intel_gen8_msecs.svg +FILE: ../../../third_party/skia/src/compute/hs/images/hs_nvidia_sm35_u32_mkeys.svg +FILE: ../../../third_party/skia/src/compute/hs/images/hs_nvidia_sm35_u32_msecs.svg +FILE: ../../../third_party/skia/src/compute/hs/images/hs_nvidia_sm35_u64_mkeys.svg +FILE: ../../../third_party/skia/src/compute/hs/images/hs_nvidia_sm35_u64_msecs.svg +FILE: ../../../third_party/skia/src/compute/hs/images/hs_sorted_slab.svg +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bc_0.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bc_0.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bc_1.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bc_1.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bc_2.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bc_2.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bc_3.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bc_3.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bc_4.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bc_4.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bs_0.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bs_0.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bs_1.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bs_1.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bs_2.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bs_2.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bs_3.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bs_3.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bs_4.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_bs_4.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_fm_0_0.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_fm_0_0.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_fm_0_1.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_fm_0_1.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_fm_0_2.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_fm_0_2.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_fm_0_3.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_fm_0_3.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_hm_0.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_hm_0.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_transpose.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u32/hs_transpose.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bc_0.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bc_0.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bc_1.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bc_1.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bc_2.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bc_2.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bc_3.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bc_3.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bc_4.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bc_4.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bs_0.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bs_0.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bs_1.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bs_1.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bs_2.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bs_2.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bs_3.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bs_3.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bs_4.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_bs_4.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_fm_1_0.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_fm_1_0.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_fm_1_1.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_fm_1_1.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_fm_1_2.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_fm_1_2.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_fm_1_3.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_fm_1_3.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_fm_1_4.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_fm_1_4.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_hm_1.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_hm_1.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_transpose.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/intel/gen8/u64/hs_transpose.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bc_0.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bc_0.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bc_1.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bc_1.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bc_2.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bc_2.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bc_3.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bc_3.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bc_4.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bc_4.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bc_5.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bc_5.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bs_0.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bs_0.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bs_1.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bs_1.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bs_2.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bs_2.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bs_3.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bs_3.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bs_4.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bs_4.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bs_5.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_bs_5.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_fm_1_0.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_fm_1_0.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_fm_1_1.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_fm_1_1.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_fm_1_2.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_fm_1_2.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_fm_1_3.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_fm_1_3.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_fm_1_4.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_fm_1_4.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_fm_1_5.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_fm_1_5.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_hm_1.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_hm_1.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_transpose.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u32/hs_transpose.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bc_0.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bc_0.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bc_1.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bc_1.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bc_2.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bc_2.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bc_3.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bc_3.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bc_4.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bc_4.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bs_0.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bs_0.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bs_1.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bs_1.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bs_2.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bs_2.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bs_3.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bs_3.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bs_4.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_bs_4.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_fm_1_0.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_fm_1_0.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_fm_1_1.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_fm_1_1.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_fm_1_2.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_fm_1_2.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_fm_1_3.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_fm_1_3.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_fm_1_4.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_fm_1_4.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_hm_1.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_hm_1.spv.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_transpose.len.xxd +FILE: ../../../third_party/skia/src/compute/hs/vk/nvidia/sm_35/u64/hs_transpose.spv.xxd +FILE: ../../../third_party/skia/src/core/SkOrderedReadBuffer.h +FILE: ../../../third_party/skia/src/sksl/lex/sksl.lex +FILE: ../../../third_party/skia/src/sksl/sksl.inc +FILE: ../../../third_party/skia/src/sksl/sksl_fp.inc +FILE: ../../../third_party/skia/src/sksl/sksl_frag.inc +FILE: ../../../third_party/skia/src/sksl/sksl_geom.inc +FILE: ../../../third_party/skia/src/sksl/sksl_pipeline.inc +FILE: ../../../third_party/skia/src/sksl/sksl_vert.inc +---------------------------------------------------------------------------------------------------- +Copyright (c) 2011 Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/bench/AAClipBench.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/bench/AAClipBench.cpp +FILE: ../../../third_party/skia/bench/Benchmark.cpp +FILE: ../../../third_party/skia/bench/Benchmark.h +FILE: ../../../third_party/skia/bench/BitmapBench.cpp +FILE: ../../../third_party/skia/bench/BitmapRectBench.cpp +FILE: ../../../third_party/skia/bench/BlurBench.cpp +FILE: ../../../third_party/skia/bench/ChromeBench.cpp +FILE: ../../../third_party/skia/bench/DashBench.cpp +FILE: ../../../third_party/skia/bench/FontScalerBench.cpp +FILE: ../../../third_party/skia/bench/GradientBench.cpp +FILE: ../../../third_party/skia/bench/MatrixBench.cpp +FILE: ../../../third_party/skia/bench/MutexBench.cpp +FILE: ../../../third_party/skia/bench/PathBench.cpp +FILE: ../../../third_party/skia/bench/PathIterBench.cpp +FILE: ../../../third_party/skia/bench/PicturePlaybackBench.cpp +FILE: ../../../third_party/skia/bench/RectBench.cpp +FILE: ../../../third_party/skia/bench/RegionBench.cpp +FILE: ../../../third_party/skia/bench/RepeatTileBench.cpp +FILE: ../../../third_party/skia/bench/ScalarBench.cpp +FILE: ../../../third_party/skia/bench/ShaderMaskBench.cpp +FILE: ../../../third_party/skia/bench/TextBench.cpp +FILE: ../../../third_party/skia/bench/VertBench.cpp +FILE: ../../../third_party/skia/experimental/Networking/SkSockets.cpp +FILE: ../../../third_party/skia/experimental/Networking/SkSockets.h +FILE: ../../../third_party/skia/gm/aaclip.cpp +FILE: ../../../third_party/skia/gm/aarectmodes.cpp +FILE: ../../../third_party/skia/gm/arithmode.cpp +FILE: ../../../third_party/skia/gm/bitmapcopy.cpp +FILE: ../../../third_party/skia/gm/bitmapfilters.cpp +FILE: ../../../third_party/skia/gm/bitmaprect.cpp +FILE: ../../../third_party/skia/gm/blurs.cpp +FILE: ../../../third_party/skia/gm/clip_strokerect.cpp +FILE: ../../../third_party/skia/gm/color4f.cpp +FILE: ../../../third_party/skia/gm/colormatrix.cpp +FILE: ../../../third_party/skia/gm/complexclip.cpp +FILE: ../../../third_party/skia/gm/complexclip2.cpp +FILE: ../../../third_party/skia/gm/convexpaths.cpp +FILE: ../../../third_party/skia/gm/cubicpaths.cpp +FILE: ../../../third_party/skia/gm/degeneratesegments.cpp +FILE: ../../../third_party/skia/gm/dftext.cpp +FILE: ../../../third_party/skia/gm/drawbitmaprect.cpp +FILE: ../../../third_party/skia/gm/drawlooper.cpp +FILE: ../../../third_party/skia/gm/emptypath.cpp +FILE: ../../../third_party/skia/gm/encode.cpp +FILE: ../../../third_party/skia/gm/extractbitmap.cpp +FILE: ../../../third_party/skia/gm/filltypes.cpp +FILE: ../../../third_party/skia/gm/filltypespersp.cpp +FILE: ../../../third_party/skia/gm/filterbitmap.cpp +FILE: ../../../third_party/skia/gm/filterindiabox.cpp +FILE: ../../../third_party/skia/gm/fontscaler.cpp +FILE: ../../../third_party/skia/gm/gammatext.cpp +FILE: ../../../third_party/skia/gm/giantbitmap.cpp +FILE: ../../../third_party/skia/gm/gm.cpp +FILE: ../../../third_party/skia/gm/gm.h +FILE: ../../../third_party/skia/gm/gradients.cpp +FILE: ../../../third_party/skia/gm/gradtext.cpp +FILE: ../../../third_party/skia/gm/hairmodes.cpp +FILE: ../../../third_party/skia/gm/hittestpath.cpp +FILE: ../../../third_party/skia/gm/image.cpp +FILE: ../../../third_party/skia/gm/imageblur.cpp +FILE: ../../../third_party/skia/gm/imageblur2.cpp +FILE: ../../../third_party/skia/gm/imagefiltersbase.cpp +FILE: ../../../third_party/skia/gm/imagefilterscropped.cpp +FILE: ../../../third_party/skia/gm/lcdtext.cpp +FILE: ../../../third_party/skia/gm/linepaths.cpp +FILE: ../../../third_party/skia/gm/ninepatchstretch.cpp +FILE: ../../../third_party/skia/gm/pathfill.cpp +FILE: ../../../third_party/skia/gm/pathreverse.cpp +FILE: ../../../third_party/skia/gm/points.cpp +FILE: ../../../third_party/skia/gm/poly2poly.cpp +FILE: ../../../third_party/skia/gm/quadpaths.cpp +FILE: ../../../third_party/skia/gm/shadertext.cpp +FILE: ../../../third_party/skia/gm/shadertext2.cpp +FILE: ../../../third_party/skia/gm/shadertext3.cpp +FILE: ../../../third_party/skia/gm/shadows.cpp +FILE: ../../../third_party/skia/gm/strokefill.cpp +FILE: ../../../third_party/skia/gm/strokerects.cpp +FILE: ../../../third_party/skia/gm/strokes.cpp +FILE: ../../../third_party/skia/gm/tablecolorfilter.cpp +FILE: ../../../third_party/skia/gm/texteffects.cpp +FILE: ../../../third_party/skia/gm/tilemodes.cpp +FILE: ../../../third_party/skia/gm/tilemodes_scaled.cpp +FILE: ../../../third_party/skia/gm/tinybitmap.cpp +FILE: ../../../third_party/skia/gm/verttext.cpp +FILE: ../../../third_party/skia/gm/verttext2.cpp +FILE: ../../../third_party/skia/gm/xfermodes.cpp +FILE: ../../../third_party/skia/include/core/SkData.h +FILE: ../../../third_party/skia/include/core/SkImageEncoder.h +FILE: ../../../third_party/skia/include/core/SkImageFilter.h +FILE: ../../../third_party/skia/include/core/SkMatrix44.h +FILE: ../../../third_party/skia/include/core/SkSize.h +FILE: ../../../third_party/skia/include/core/SkTLazy.h +FILE: ../../../third_party/skia/include/effects/SkLayerDrawLooper.h +FILE: ../../../third_party/skia/include/gpu/GrRenderTarget.h +FILE: ../../../third_party/skia/include/gpu/GrTexture.h +FILE: ../../../third_party/skia/include/gpu/gl/GrGLConfig.h +FILE: ../../../third_party/skia/include/gpu/gl/GrGLConfig_chrome.h +FILE: ../../../third_party/skia/include/gpu/gl/GrGLInterface.h +FILE: ../../../third_party/skia/include/ports/SkTypeface_mac.h +FILE: ../../../third_party/skia/include/ports/SkTypeface_win.h +FILE: ../../../third_party/skia/include/private/SkTArray.h +FILE: ../../../third_party/skia/include/utils/SkNWayCanvas.h +FILE: ../../../third_party/skia/include/utils/mac/SkCGUtils.h +FILE: ../../../third_party/skia/samplecode/Sample.h +FILE: ../../../third_party/skia/samplecode/Sample2PtRadial.cpp +FILE: ../../../third_party/skia/samplecode/SampleAAClip.cpp +FILE: ../../../third_party/skia/samplecode/SampleAARectModes.cpp +FILE: ../../../third_party/skia/samplecode/SampleAARects.cpp +FILE: ../../../third_party/skia/samplecode/SampleAll.cpp +FILE: ../../../third_party/skia/samplecode/SampleArc.cpp +FILE: ../../../third_party/skia/samplecode/SampleBigBlur.cpp +FILE: ../../../third_party/skia/samplecode/SampleBigGradient.cpp +FILE: ../../../third_party/skia/samplecode/SampleBitmapRect.cpp +FILE: ../../../third_party/skia/samplecode/SampleBlur.cpp +FILE: ../../../third_party/skia/samplecode/SampleCamera.cpp +FILE: ../../../third_party/skia/samplecode/SampleCircle.cpp +FILE: ../../../third_party/skia/samplecode/SampleClamp.cpp +FILE: ../../../third_party/skia/samplecode/SampleClip.cpp +FILE: ../../../third_party/skia/samplecode/SampleColorFilter.cpp +FILE: ../../../third_party/skia/samplecode/SampleComplexClip.cpp +FILE: ../../../third_party/skia/samplecode/SampleConcavePaths.cpp +FILE: ../../../third_party/skia/samplecode/SampleDash.cpp +FILE: ../../../third_party/skia/samplecode/SampleDegenerateTwoPtRadials.cpp +FILE: ../../../third_party/skia/samplecode/SampleDither.cpp +FILE: ../../../third_party/skia/samplecode/SampleEffects.cpp +FILE: ../../../third_party/skia/samplecode/SampleEmboss.cpp +FILE: ../../../third_party/skia/samplecode/SampleFillType.cpp +FILE: ../../../third_party/skia/samplecode/SampleFilter2.cpp +FILE: ../../../third_party/skia/samplecode/SampleFontCache.cpp +FILE: ../../../third_party/skia/samplecode/SampleFontScalerTest.cpp +FILE: ../../../third_party/skia/samplecode/SampleFuzz.cpp +FILE: ../../../third_party/skia/samplecode/SampleGradients.cpp +FILE: ../../../third_party/skia/samplecode/SampleHairCurves.cpp +FILE: ../../../third_party/skia/samplecode/SampleHairModes.cpp +FILE: ../../../third_party/skia/samplecode/SampleHairline.cpp +FILE: ../../../third_party/skia/samplecode/SampleLCD.cpp +FILE: ../../../third_party/skia/samplecode/SampleLayerMask.cpp +FILE: ../../../third_party/skia/samplecode/SampleLayers.cpp +FILE: ../../../third_party/skia/samplecode/SampleLines.cpp +FILE: ../../../third_party/skia/samplecode/SampleMeasure.cpp +FILE: ../../../third_party/skia/samplecode/SamplePatch.cpp +FILE: ../../../third_party/skia/samplecode/SamplePath.cpp +FILE: ../../../third_party/skia/samplecode/SamplePathClip.cpp +FILE: ../../../third_party/skia/samplecode/SamplePathEffects.cpp +FILE: ../../../third_party/skia/samplecode/SamplePathFill.cpp +FILE: ../../../third_party/skia/samplecode/SamplePoints.cpp +FILE: ../../../third_party/skia/samplecode/SamplePolyToPoly.cpp +FILE: ../../../third_party/skia/samplecode/SampleRegion.cpp +FILE: ../../../third_party/skia/samplecode/SampleRepeatTile.cpp +FILE: ../../../third_party/skia/samplecode/SampleShaders.cpp +FILE: ../../../third_party/skia/samplecode/SampleSlides.cpp +FILE: ../../../third_party/skia/samplecode/SampleStrokePath.cpp +FILE: ../../../third_party/skia/samplecode/SampleStrokeRect.cpp +FILE: ../../../third_party/skia/samplecode/SampleText.cpp +FILE: ../../../third_party/skia/samplecode/SampleTextAlpha.cpp +FILE: ../../../third_party/skia/samplecode/SampleTextBox.cpp +FILE: ../../../third_party/skia/samplecode/SampleTextEffects.cpp +FILE: ../../../third_party/skia/samplecode/SampleTextureDomain.cpp +FILE: ../../../third_party/skia/samplecode/SampleTiling.cpp +FILE: ../../../third_party/skia/samplecode/SampleVertices.cpp +FILE: ../../../third_party/skia/samplecode/SampleWritePixels.cpp +FILE: ../../../third_party/skia/samplecode/SampleXfermodesBlur.cpp +FILE: ../../../third_party/skia/samplecode/vertexdump.cpp +FILE: ../../../third_party/skia/src/core/SkAAClip.cpp +FILE: ../../../third_party/skia/src/core/SkAAClip.h +FILE: ../../../third_party/skia/src/core/SkAdvancedTypefaceMetrics.h +FILE: ../../../third_party/skia/src/core/SkBitmapProcState.cpp +FILE: ../../../third_party/skia/src/core/SkBitmapProcState_matrix.h +FILE: ../../../third_party/skia/src/core/SkBitmapProcState_procs.h +FILE: ../../../third_party/skia/src/core/SkBitmapProcState_sample.h +FILE: ../../../third_party/skia/src/core/SkBitmapProcState_shaderproc.h +FILE: ../../../third_party/skia/src/core/SkBlitMask.h +FILE: ../../../third_party/skia/src/core/SkBlitRow.h +FILE: ../../../third_party/skia/src/core/SkBlitRow_D32.cpp +FILE: ../../../third_party/skia/src/core/SkClipStack.cpp +FILE: ../../../third_party/skia/src/core/SkClipStack.h +FILE: ../../../third_party/skia/src/core/SkColorMatrixFilterRowMajor255.cpp +FILE: ../../../third_party/skia/src/core/SkConvertPixels.h +FILE: ../../../third_party/skia/src/core/SkData.cpp +FILE: ../../../third_party/skia/src/core/SkDevice.cpp +FILE: ../../../third_party/skia/src/core/SkDither.cpp +FILE: ../../../third_party/skia/src/core/SkDrawProcs.h +FILE: ../../../third_party/skia/src/core/SkEdgeBuilder.cpp +FILE: ../../../third_party/skia/src/core/SkEdgeBuilder.h +FILE: ../../../third_party/skia/src/core/SkFlattenable.cpp +FILE: ../../../third_party/skia/src/core/SkFontStream.cpp +FILE: ../../../third_party/skia/src/core/SkLineClipper.cpp +FILE: ../../../third_party/skia/src/core/SkLineClipper.h +FILE: ../../../third_party/skia/src/core/SkMallocPixelRef.cpp +FILE: ../../../third_party/skia/src/core/SkMatrix44.cpp +FILE: ../../../third_party/skia/src/core/SkPictureData.cpp +FILE: ../../../third_party/skia/src/core/SkPictureData.h +FILE: ../../../third_party/skia/src/core/SkPictureFlat.cpp +FILE: ../../../third_party/skia/src/core/SkPictureFlat.h +FILE: ../../../third_party/skia/src/core/SkPictureRecord.cpp +FILE: ../../../third_party/skia/src/core/SkPictureRecord.h +FILE: ../../../third_party/skia/src/core/SkPixelRef.cpp +FILE: ../../../third_party/skia/src/core/SkPtrRecorder.cpp +FILE: ../../../third_party/skia/src/core/SkReadBuffer.h +FILE: ../../../third_party/skia/src/core/SkTypefaceCache.cpp +FILE: ../../../third_party/skia/src/core/SkTypefaceCache.h +FILE: ../../../third_party/skia/src/core/SkUnPreMultiply.cpp +FILE: ../../../third_party/skia/src/core/SkWriteBuffer.h +FILE: ../../../third_party/skia/src/core/SkWriter32.cpp +FILE: ../../../third_party/skia/src/effects/SkColorMatrix.cpp +FILE: ../../../third_party/skia/src/effects/SkColorMatrixFilter.cpp +FILE: ../../../third_party/skia/src/effects/SkLayerDrawLooper.cpp +FILE: ../../../third_party/skia/src/effects/SkPackBits.cpp +FILE: ../../../third_party/skia/src/effects/SkTableMaskFilter.cpp +FILE: ../../../third_party/skia/src/gpu/GrContext.cpp +FILE: ../../../third_party/skia/src/gpu/GrGpu.h +FILE: ../../../third_party/skia/src/gpu/GrGpuResource.cpp +FILE: ../../../third_party/skia/src/gpu/GrPaint.h +FILE: ../../../third_party/skia/src/gpu/GrPathRenderer.cpp +FILE: ../../../third_party/skia/src/gpu/GrPathRenderer.h +FILE: ../../../third_party/skia/src/gpu/GrPathRendererChain.cpp +FILE: ../../../third_party/skia/src/gpu/GrPathRendererChain.h +FILE: ../../../third_party/skia/src/gpu/GrPathUtils.cpp +FILE: ../../../third_party/skia/src/gpu/GrPathUtils.h +FILE: ../../../third_party/skia/src/gpu/GrRenderTarget.cpp +FILE: ../../../third_party/skia/src/gpu/GrStencilAttachment.cpp +FILE: ../../../third_party/skia/src/gpu/GrStencilAttachment.h +FILE: ../../../third_party/skia/src/gpu/GrStencilSettings.cpp +FILE: ../../../third_party/skia/src/gpu/GrTexture.cpp +FILE: ../../../third_party/skia/src/gpu/SkGpuDevice.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLCreateNullInterface.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLDefines.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLGLSL.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLGLSL.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLGpu.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLGpu.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLGpuProgramCache.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLIRect.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLInterface.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLMakeNativeInterface_none.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLProgram.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLProgram.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLRenderTarget.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLRenderTarget.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLStencilAttachment.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLStencilAttachment.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLTexture.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLTexture.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLUtil.cpp +FILE: ../../../third_party/skia/src/gpu/gl/mac/GrGLMakeNativeInterface_mac.cpp +FILE: ../../../third_party/skia/src/gpu/gl/win/GrGLMakeNativeInterface_win.cpp +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSL.cpp +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSL.h +FILE: ../../../third_party/skia/src/gpu/ops/GrAAHairLinePathRenderer.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrAAHairLinePathRenderer.h +FILE: ../../../third_party/skia/src/gpu/ops/GrDefaultPathRenderer.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrDefaultPathRenderer.h +FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp +FILE: ../../../third_party/skia/src/opts/SkBlitRow_opts_none.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFConvertType1FontStream.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFDevice.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFDevice.h +FILE: ../../../third_party/skia/src/pdf/SkPDFDocument.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFFont.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFFont.h +FILE: ../../../third_party/skia/src/pdf/SkPDFGraphicState.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFMakeToUnicodeCmap.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFShader.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFShader.h +FILE: ../../../third_party/skia/src/pdf/SkPDFTypes.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFUtils.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFUtils.h +FILE: ../../../third_party/skia/src/ports/SkGlobalInitialization_default.cpp +FILE: ../../../third_party/skia/src/ports/SkGlobalInitialization_default_imagefilters.cpp +FILE: ../../../third_party/skia/src/ports/SkImageEncoder_WIC.cpp +FILE: ../../../third_party/skia/src/ports/SkMemory_malloc.cpp +FILE: ../../../third_party/skia/src/ports/SkScalerContext_win_dw.cpp +FILE: ../../../third_party/skia/src/shaders/SkBitmapProcShader.cpp +FILE: ../../../third_party/skia/src/shaders/SkEmptyShader.h +FILE: ../../../third_party/skia/src/utils/SkBitSet.h +FILE: ../../../third_party/skia/src/utils/SkNWayCanvas.cpp +FILE: ../../../third_party/skia/src/utils/SkOSPath.cpp +FILE: ../../../third_party/skia/src/utils/SkParsePath.cpp +FILE: ../../../third_party/skia/src/utils/mac/SkCreateCGImageRef.cpp +FILE: ../../../third_party/skia/src/utils/win/SkAutoCoInitialize.cpp +FILE: ../../../third_party/skia/src/utils/win/SkAutoCoInitialize.h +FILE: ../../../third_party/skia/src/utils/win/SkHRESULT.cpp +FILE: ../../../third_party/skia/src/utils/win/SkHRESULT.h +FILE: ../../../third_party/skia/src/utils/win/SkIStream.cpp +FILE: ../../../third_party/skia/src/utils/win/SkIStream.h +FILE: ../../../third_party/skia/src/utils/win/SkTScopedComPtr.h +FILE: ../../../third_party/skia/src/utils/win/SkWGL.h +FILE: ../../../third_party/skia/src/utils/win/SkWGL_win.cpp +FILE: ../../../third_party/skia/src/xps/SkXPSDevice.cpp +FILE: ../../../third_party/skia/src/xps/SkXPSDevice.h +---------------------------------------------------------------------------------------------------- +Copyright 2011 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/bench/AlternatingColorPatternBench.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/bench/AlternatingColorPatternBench.cpp +FILE: ../../../third_party/skia/bench/BezierBench.cpp +FILE: ../../../third_party/skia/bench/BlurRectsBench.cpp +FILE: ../../../third_party/skia/bench/GMBench.cpp +FILE: ../../../third_party/skia/bench/GMBench.h +FILE: ../../../third_party/skia/bench/GeometryBench.cpp +FILE: ../../../third_party/skia/bench/ImageFilterCollapse.cpp +FILE: ../../../third_party/skia/bench/ImageFilterDAGBench.cpp +FILE: ../../../third_party/skia/bench/PatchBench.cpp +FILE: ../../../third_party/skia/bench/PictureNestingBench.cpp +FILE: ../../../third_party/skia/bench/RecordingBench.cpp +FILE: ../../../third_party/skia/bench/RecordingBench.h +FILE: ../../../third_party/skia/bench/RectanizerBench.cpp +FILE: ../../../third_party/skia/bench/RotatedRectBench.cpp +FILE: ../../../third_party/skia/bench/SKPBench.cpp +FILE: ../../../third_party/skia/bench/SKPBench.h +FILE: ../../../third_party/skia/bench/nanobench.cpp +FILE: ../../../third_party/skia/dm/DMJsonWriter.cpp +FILE: ../../../third_party/skia/dm/DMJsonWriter.h +FILE: ../../../third_party/skia/gm/aaa.cpp +FILE: ../../../third_party/skia/gm/beziers.cpp +FILE: ../../../third_party/skia/gm/blurcircles.cpp +FILE: ../../../third_party/skia/gm/cgm.c +FILE: ../../../third_party/skia/gm/cgms.cpp +FILE: ../../../third_party/skia/gm/clipdrawdraw.cpp +FILE: ../../../third_party/skia/gm/coloremoji_blendmodes.cpp +FILE: ../../../third_party/skia/gm/colorfilters.cpp +FILE: ../../../third_party/skia/gm/colorwheel.cpp +FILE: ../../../third_party/skia/gm/complexclip3.cpp +FILE: ../../../third_party/skia/gm/convexpolyclip.cpp +FILE: ../../../third_party/skia/gm/convexpolyeffect.cpp +FILE: ../../../third_party/skia/gm/discard.cpp +FILE: ../../../third_party/skia/gm/drrect.cpp +FILE: ../../../third_party/skia/gm/emboss.cpp +FILE: ../../../third_party/skia/gm/filterfastbounds.cpp +FILE: ../../../third_party/skia/gm/glyph_pos.cpp +FILE: ../../../third_party/skia/gm/gradients_2pt_conical.cpp +FILE: ../../../third_party/skia/gm/grayscalejpg.cpp +FILE: ../../../third_party/skia/gm/imageblurtiled.cpp +FILE: ../../../third_party/skia/gm/imagefiltersclipped.cpp +FILE: ../../../third_party/skia/gm/imagefilterscropexpand.cpp +FILE: ../../../third_party/skia/gm/imagefiltersscaled.cpp +FILE: ../../../third_party/skia/gm/imageresizetiled.cpp +FILE: ../../../third_party/skia/gm/matriximagefilter.cpp +FILE: ../../../third_party/skia/gm/multipicturedraw.cpp +FILE: ../../../third_party/skia/gm/patch.cpp +FILE: ../../../third_party/skia/gm/picture.cpp +FILE: ../../../third_party/skia/gm/pictureshader.cpp +FILE: ../../../third_party/skia/gm/pictureshadertile.cpp +FILE: ../../../third_party/skia/gm/recordopts.cpp +FILE: ../../../third_party/skia/gm/smallarc.cpp +FILE: ../../../third_party/skia/gm/stroketext.cpp +FILE: ../../../third_party/skia/gm/surface.cpp +FILE: ../../../third_party/skia/gm/tallstretchedbitmaps.cpp +FILE: ../../../third_party/skia/gm/textblob.cpp +FILE: ../../../third_party/skia/gm/textblobshader.cpp +FILE: ../../../third_party/skia/gm/texturedomaineffect.cpp +FILE: ../../../third_party/skia/gm/tiledscaledbitmap.cpp +FILE: ../../../third_party/skia/gm/variedtext.cpp +FILE: ../../../third_party/skia/gm/yuvtorgbeffect.cpp +FILE: ../../../third_party/skia/include/c/sk_canvas.h +FILE: ../../../third_party/skia/include/c/sk_data.h +FILE: ../../../third_party/skia/include/c/sk_image.h +FILE: ../../../third_party/skia/include/c/sk_maskfilter.h +FILE: ../../../third_party/skia/include/c/sk_matrix.h +FILE: ../../../third_party/skia/include/c/sk_paint.h +FILE: ../../../third_party/skia/include/c/sk_path.h +FILE: ../../../third_party/skia/include/c/sk_picture.h +FILE: ../../../third_party/skia/include/c/sk_shader.h +FILE: ../../../third_party/skia/include/c/sk_surface.h +FILE: ../../../third_party/skia/include/c/sk_types.h +FILE: ../../../third_party/skia/include/core/SkBBHFactory.h +FILE: ../../../third_party/skia/include/core/SkBlurTypes.h +FILE: ../../../third_party/skia/include/core/SkDrawable.h +FILE: ../../../third_party/skia/include/core/SkFont.h +FILE: ../../../third_party/skia/include/core/SkMultiPictureDraw.h +FILE: ../../../third_party/skia/include/core/SkPictureRecorder.h +FILE: ../../../third_party/skia/include/core/SkSurfaceProps.h +FILE: ../../../third_party/skia/include/core/SkTextBlob.h +FILE: ../../../third_party/skia/include/gpu/GrGpuResource.h +FILE: ../../../third_party/skia/include/gpu/GrResourceKey.h +FILE: ../../../third_party/skia/include/gpu/gl/GrGLAssembleInterface.h +FILE: ../../../third_party/skia/include/ports/SkFontMgr_indirect.h +FILE: ../../../third_party/skia/include/ports/SkRemotableFontMgr.h +FILE: ../../../third_party/skia/samplecode/SampleHT.cpp +FILE: ../../../third_party/skia/samplecode/SampleIdentityScale.cpp +FILE: ../../../third_party/skia/samplecode/SampleRectanizer.cpp +FILE: ../../../third_party/skia/samplecode/SampleSubpixelTranslate.cpp +FILE: ../../../third_party/skia/src/c/sk_surface.cpp +FILE: ../../../third_party/skia/src/core/SkBBHFactory.cpp +FILE: ../../../third_party/skia/src/core/SkBitmapCache.cpp +FILE: ../../../third_party/skia/src/core/SkBitmapCache.h +FILE: ../../../third_party/skia/src/core/SkBlitMask_D32.cpp +FILE: ../../../third_party/skia/src/core/SkCachedData.cpp +FILE: ../../../third_party/skia/src/core/SkCachedData.h +FILE: ../../../third_party/skia/src/core/SkCanvasPriv.h +FILE: ../../../third_party/skia/src/core/SkConvertPixels.cpp +FILE: ../../../third_party/skia/src/core/SkDistanceFieldGen.cpp +FILE: ../../../third_party/skia/src/core/SkDistanceFieldGen.h +FILE: ../../../third_party/skia/src/core/SkDrawable.cpp +FILE: ../../../third_party/skia/src/core/SkFont.cpp +FILE: ../../../third_party/skia/src/core/SkForceCPlusPlusLinking.cpp +FILE: ../../../third_party/skia/src/core/SkHalf.cpp +FILE: ../../../third_party/skia/src/core/SkHalf.h +FILE: ../../../third_party/skia/src/core/SkImageGenerator.cpp +FILE: ../../../third_party/skia/src/core/SkMaskCache.cpp +FILE: ../../../third_party/skia/src/core/SkMaskCache.h +FILE: ../../../third_party/skia/src/core/SkMultiPictureDraw.cpp +FILE: ../../../third_party/skia/src/core/SkPicturePlayback.cpp +FILE: ../../../third_party/skia/src/core/SkPicturePlayback.h +FILE: ../../../third_party/skia/src/core/SkPictureRecorder.cpp +FILE: ../../../third_party/skia/src/core/SkRecord.h +FILE: ../../../third_party/skia/src/core/SkRecordDraw.cpp +FILE: ../../../third_party/skia/src/core/SkRecordDraw.h +FILE: ../../../third_party/skia/src/core/SkRecordOpts.cpp +FILE: ../../../third_party/skia/src/core/SkRecordOpts.h +FILE: ../../../third_party/skia/src/core/SkRecorder.cpp +FILE: ../../../third_party/skia/src/core/SkRecorder.h +FILE: ../../../third_party/skia/src/core/SkRecords.h +FILE: ../../../third_party/skia/src/core/SkSurfacePriv.h +FILE: ../../../third_party/skia/src/core/SkTaskGroup.cpp +FILE: ../../../third_party/skia/src/core/SkTaskGroup.h +FILE: ../../../third_party/skia/src/core/SkTextBlob.cpp +FILE: ../../../third_party/skia/src/core/SkVertState.cpp +FILE: ../../../third_party/skia/src/core/SkVertState.h +FILE: ../../../third_party/skia/src/fonts/SkFontMgr_indirect.cpp +FILE: ../../../third_party/skia/src/fonts/SkRemotableFontMgr.cpp +FILE: ../../../third_party/skia/src/gpu/GrDefaultGeoProcFactory.cpp +FILE: ../../../third_party/skia/src/gpu/GrDefaultGeoProcFactory.h +FILE: ../../../third_party/skia/src/gpu/GrFragmentProcessor.h +FILE: ../../../third_party/skia/src/gpu/GrGpuResourceCacheAccess.h +FILE: ../../../third_party/skia/src/gpu/GrPathRendering.cpp +FILE: ../../../third_party/skia/src/gpu/GrPathRendering.h +FILE: ../../../third_party/skia/src/gpu/GrPendingIOResource.h +FILE: ../../../third_party/skia/src/gpu/GrPrimitiveProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/GrProcessorAnalysis.cpp +FILE: ../../../third_party/skia/src/gpu/GrProcessorAnalysis.h +FILE: ../../../third_party/skia/src/gpu/GrProgramDesc.h +FILE: ../../../third_party/skia/src/gpu/GrRectanizer_pow2.h +FILE: ../../../third_party/skia/src/gpu/GrRectanizer_skyline.h +FILE: ../../../third_party/skia/src/gpu/GrResourceCache.cpp +FILE: ../../../third_party/skia/src/gpu/GrResourceCache.h +FILE: ../../../third_party/skia/src/gpu/GrSKSLPrettyPrint.cpp +FILE: ../../../third_party/skia/src/gpu/GrSKSLPrettyPrint.h +FILE: ../../../third_party/skia/src/gpu/GrSurfacePriv.h +FILE: ../../../third_party/skia/src/gpu/GrTRecorder.h +FILE: ../../../third_party/skia/src/gpu/GrTexturePriv.h +FILE: ../../../third_party/skia/src/gpu/GrTracing.h +FILE: ../../../third_party/skia/src/gpu/GrXferProcessor.h +FILE: ../../../third_party/skia/src/gpu/effects/GrBicubicEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrConvexPolyEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrConvexPolyEffect.h +FILE: ../../../third_party/skia/src/gpu/effects/GrCoverageSetOpXP.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrCoverageSetOpXP.h +FILE: ../../../third_party/skia/src/gpu/effects/GrDisableColorXP.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrDisableColorXP.h +FILE: ../../../third_party/skia/src/gpu/effects/GrMatrixConvolutionEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrMatrixConvolutionEffect.h +FILE: ../../../third_party/skia/src/gpu/effects/GrOvalEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrOvalEffect.h +FILE: ../../../third_party/skia/src/gpu/effects/GrPorterDuffXferProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrPorterDuffXferProcessor.h +FILE: ../../../third_party/skia/src/gpu/effects/GrRRectEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrRRectEffect.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLAssembleInterface.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLPathRendering.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLPathRendering.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLTextureRenderTarget.h +FILE: ../../../third_party/skia/src/gpu/gl/android/GrGLMakeNativeInterface_android.cpp +FILE: ../../../third_party/skia/src/gpu/gl/builders/GrGLProgramBuilder.cpp +FILE: ../../../third_party/skia/src/gpu/gl/builders/GrGLProgramBuilder.h +FILE: ../../../third_party/skia/src/gpu/gl/builders/GrGLShaderStringBuilder.cpp +FILE: ../../../third_party/skia/src/gpu/gl/builders/GrGLShaderStringBuilder.h +FILE: ../../../third_party/skia/src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp +FILE: ../../../third_party/skia/src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp +FILE: ../../../third_party/skia/src/gpu/gl/iOS/GrGLMakeNativeInterface_iOS.cpp +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLFragmentShaderBuilder.cpp +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLFragmentShaderBuilder.h +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLGeometryProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLPrimitiveProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLShaderBuilder.cpp +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLShaderBuilder.h +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLXferProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrDashOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrDashOp.h +FILE: ../../../third_party/skia/src/gpu/ops/GrSmallPathRenderer.h +FILE: ../../../third_party/skia/src/image/SkReadPixelsRec.h +FILE: ../../../third_party/skia/src/image/SkSurface_Gpu.h +FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_matrix_neon.h +FILE: ../../../third_party/skia/src/opts/SkBlitMask_opts_arm.cpp +FILE: ../../../third_party/skia/src/opts/SkBlitMask_opts_none.cpp +FILE: ../../../third_party/skia/src/pathops/SkOpBuilder.cpp +FILE: ../../../third_party/skia/src/pathops/SkOpSpan.cpp +FILE: ../../../third_party/skia/src/pathops/SkPathOpsTSect.cpp +FILE: ../../../third_party/skia/src/pathops/SkPathOpsTSect.h +FILE: ../../../third_party/skia/src/pathops/SkPathOpsTightBounds.cpp +FILE: ../../../third_party/skia/src/ports/SkFontMgr_android.cpp +FILE: ../../../third_party/skia/src/ports/SkFontMgr_fontconfig.cpp +FILE: ../../../third_party/skia/src/ports/SkFontMgr_win_dw.cpp +FILE: ../../../third_party/skia/src/ports/SkRemotableFontMgr_win_dw.cpp +FILE: ../../../third_party/skia/src/ports/SkScalerContext_win_dw.h +FILE: ../../../third_party/skia/src/ports/SkTypeface_win_dw.cpp +FILE: ../../../third_party/skia/src/ports/SkTypeface_win_dw.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_EBDT.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_EBLC.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_EBSC.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_gasp.h +FILE: ../../../third_party/skia/src/shaders/SkLocalMatrixShader.cpp +FILE: ../../../third_party/skia/src/shaders/SkLocalMatrixShader.h +FILE: ../../../third_party/skia/src/shaders/SkPictureShader.cpp +FILE: ../../../third_party/skia/src/shaders/SkPictureShader.h +FILE: ../../../third_party/skia/src/shaders/gradients/SkTwoPointConicalGradient_gpu.cpp +FILE: ../../../third_party/skia/src/shaders/gradients/SkTwoPointConicalGradient_gpu.h +FILE: ../../../third_party/skia/src/utils/SkDashPath.cpp +FILE: ../../../third_party/skia/src/utils/SkDashPathPriv.h +FILE: ../../../third_party/skia/src/utils/SkEventTracer.cpp +FILE: ../../../third_party/skia/src/utils/SkMatrix22.cpp +FILE: ../../../third_party/skia/src/utils/SkMatrix22.h +FILE: ../../../third_party/skia/src/utils/SkPatchUtils.cpp +FILE: ../../../third_party/skia/src/utils/SkPatchUtils.h +FILE: ../../../third_party/skia/src/utils/win/SkDWrite.cpp +FILE: ../../../third_party/skia/src/utils/win/SkDWrite.h +---------------------------------------------------------------------------------------------------- +Copyright 2014 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/bench/BenchLogger.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/bench/BenchLogger.cpp +FILE: ../../../third_party/skia/bench/BenchLogger.h +FILE: ../../../third_party/skia/bench/ChecksumBench.cpp +FILE: ../../../third_party/skia/bench/GameBench.cpp +FILE: ../../../third_party/skia/bench/GrMemoryPoolBench.cpp +FILE: ../../../third_party/skia/bench/LineBench.cpp +FILE: ../../../third_party/skia/bench/Matrix44Bench.cpp +FILE: ../../../third_party/skia/bench/MatrixConvolutionBench.cpp +FILE: ../../../third_party/skia/bench/MorphologyBench.cpp +FILE: ../../../third_party/skia/bench/RTreeBench.cpp +FILE: ../../../third_party/skia/bench/RefCntBench.cpp +FILE: ../../../third_party/skia/bench/TableBench.cpp +FILE: ../../../third_party/skia/gm/bigmatrix.cpp +FILE: ../../../third_party/skia/gm/blurrect.cpp +FILE: ../../../third_party/skia/gm/colorfilterimagefilter.cpp +FILE: ../../../third_party/skia/gm/composeshader.cpp +FILE: ../../../third_party/skia/gm/dashcubics.cpp +FILE: ../../../third_party/skia/gm/dashing.cpp +FILE: ../../../third_party/skia/gm/distantclip.cpp +FILE: ../../../third_party/skia/gm/fatpathfill.cpp +FILE: ../../../third_party/skia/gm/getpostextpath.cpp +FILE: ../../../third_party/skia/gm/imagefiltersgraph.cpp +FILE: ../../../third_party/skia/gm/imagemagnifier.cpp +FILE: ../../../third_party/skia/gm/lighting.cpp +FILE: ../../../third_party/skia/gm/matrixconvolution.cpp +FILE: ../../../third_party/skia/gm/modecolorfilters.cpp +FILE: ../../../third_party/skia/gm/morphology.cpp +FILE: ../../../third_party/skia/gm/patheffects.cpp +FILE: ../../../third_party/skia/gm/pathinterior.cpp +FILE: ../../../third_party/skia/gm/rrect.cpp +FILE: ../../../third_party/skia/gm/rrects.cpp +FILE: ../../../third_party/skia/gm/samplerstress.cpp +FILE: ../../../third_party/skia/gm/simpleaaclip.cpp +FILE: ../../../third_party/skia/gm/srcmode.cpp +FILE: ../../../third_party/skia/gm/strokerect.cpp +FILE: ../../../third_party/skia/gm/typeface.cpp +FILE: ../../../third_party/skia/gm/verylargebitmap.cpp +FILE: ../../../third_party/skia/include/core/SkAnnotation.h +FILE: ../../../third_party/skia/include/core/SkImage.h +FILE: ../../../third_party/skia/include/core/SkRRect.h +FILE: ../../../third_party/skia/include/core/SkStrokeRec.h +FILE: ../../../third_party/skia/include/core/SkSurface.h +FILE: ../../../third_party/skia/include/gpu/GrSurface.h +FILE: ../../../third_party/skia/include/gpu/gl/GrGLFunctions.h +FILE: ../../../third_party/skia/include/pathops/SkPathOps.h +FILE: ../../../third_party/skia/include/private/SkChecksum.h +FILE: ../../../third_party/skia/include/private/SkPathRef.h +FILE: ../../../third_party/skia/include/private/SkTInternalLList.h +FILE: ../../../third_party/skia/include/private/SkWeakRefCnt.h +FILE: ../../../third_party/skia/include/utils/SkNullCanvas.h +FILE: ../../../third_party/skia/samplecode/SampleAnimBlur.cpp +FILE: ../../../third_party/skia/samplecode/SampleFatBits.cpp +FILE: ../../../third_party/skia/samplecode/SampleQuadStroker.cpp +FILE: ../../../third_party/skia/src/codec/SkColorTable.h +FILE: ../../../third_party/skia/src/core/SkAnnotation.cpp +FILE: ../../../third_party/skia/src/core/SkBBoxHierarchy.h +FILE: ../../../third_party/skia/src/core/SkFontDescriptor.cpp +FILE: ../../../third_party/skia/src/core/SkFontDescriptor.h +FILE: ../../../third_party/skia/src/core/SkImagePriv.h +FILE: ../../../third_party/skia/src/core/SkMD5.cpp +FILE: ../../../third_party/skia/src/core/SkMD5.h +FILE: ../../../third_party/skia/src/core/SkMaskGamma.cpp +FILE: ../../../third_party/skia/src/core/SkMaskGamma.h +FILE: ../../../third_party/skia/src/core/SkMathPriv.h +FILE: ../../../third_party/skia/src/core/SkPaintDefaults.h +FILE: ../../../third_party/skia/src/core/SkRRect.cpp +FILE: ../../../third_party/skia/src/core/SkRTree.cpp +FILE: ../../../third_party/skia/src/core/SkRTree.h +FILE: ../../../third_party/skia/src/core/SkReadBuffer.cpp +FILE: ../../../third_party/skia/src/core/SkStrokeRec.cpp +FILE: ../../../third_party/skia/src/core/SkTLList.h +FILE: ../../../third_party/skia/src/core/SkTLS.cpp +FILE: ../../../third_party/skia/src/core/SkTLS.h +FILE: ../../../third_party/skia/src/core/SkTextToPathIter.h +FILE: ../../../third_party/skia/src/core/SkWriteBuffer.cpp +FILE: ../../../third_party/skia/src/gpu/GrMemoryPool.cpp +FILE: ../../../third_party/skia/src/gpu/GrMemoryPool.h +FILE: ../../../third_party/skia/src/gpu/GrPath.cpp +FILE: ../../../third_party/skia/src/gpu/GrPath.h +FILE: ../../../third_party/skia/src/gpu/GrProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/GrProcessor.h +FILE: ../../../third_party/skia/src/gpu/GrProcessorUnitTest.h +FILE: ../../../third_party/skia/src/gpu/GrSWMaskHelper.cpp +FILE: ../../../third_party/skia/src/gpu/GrSWMaskHelper.h +FILE: ../../../third_party/skia/src/gpu/GrShaderCaps.cpp +FILE: ../../../third_party/skia/src/gpu/GrShaderCaps.h +FILE: ../../../third_party/skia/src/gpu/GrSoftwarePathRenderer.cpp +FILE: ../../../third_party/skia/src/gpu/GrSoftwarePathRenderer.h +FILE: ../../../third_party/skia/src/gpu/GrSurface.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrGaussianConvolutionFragmentProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrGaussianConvolutionFragmentProcessor.h +FILE: ../../../third_party/skia/src/gpu/effects/GrTextureDomain.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrTextureDomain.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLCaps.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLCaps.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLPath.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLPath.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLProgramDataManager.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLProgramDataManager.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLUtil.h +FILE: ../../../third_party/skia/src/gpu/ops/GrAAConvexPathRenderer.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrAAConvexPathRenderer.h +FILE: ../../../third_party/skia/src/gpu/ops/GrStencilAndCoverPathRenderer.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrStencilAndCoverPathRenderer.h +FILE: ../../../third_party/skia/src/image/SkImage.cpp +FILE: ../../../third_party/skia/src/image/SkImage_Base.h +FILE: ../../../third_party/skia/src/image/SkImage_Gpu.cpp +FILE: ../../../third_party/skia/src/image/SkImage_Raster.cpp +FILE: ../../../third_party/skia/src/image/SkSurface.cpp +FILE: ../../../third_party/skia/src/image/SkSurface_Base.h +FILE: ../../../third_party/skia/src/image/SkSurface_Gpu.cpp +FILE: ../../../third_party/skia/src/image/SkSurface_Raster.cpp +FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_arm_neon.cpp +FILE: ../../../third_party/skia/src/opts/SkBlitRow_opts_arm_neon.h +FILE: ../../../third_party/skia/src/pathops/SkAddIntersections.cpp +FILE: ../../../third_party/skia/src/pathops/SkAddIntersections.h +FILE: ../../../third_party/skia/src/pathops/SkDCubicLineIntersection.cpp +FILE: ../../../third_party/skia/src/pathops/SkDLineIntersection.cpp +FILE: ../../../third_party/skia/src/pathops/SkDQuadLineIntersection.cpp +FILE: ../../../third_party/skia/src/pathops/SkIntersectionHelper.h +FILE: ../../../third_party/skia/src/pathops/SkIntersections.cpp +FILE: ../../../third_party/skia/src/pathops/SkIntersections.h +FILE: ../../../third_party/skia/src/pathops/SkLineParameters.h +FILE: ../../../third_party/skia/src/pathops/SkOpAngle.cpp +FILE: ../../../third_party/skia/src/pathops/SkOpAngle.h +FILE: ../../../third_party/skia/src/pathops/SkOpCubicHull.cpp +FILE: ../../../third_party/skia/src/pathops/SkOpEdgeBuilder.cpp +FILE: ../../../third_party/skia/src/pathops/SkOpEdgeBuilder.h +FILE: ../../../third_party/skia/src/pathops/SkOpSegment.cpp +FILE: ../../../third_party/skia/src/pathops/SkOpSegment.h +FILE: ../../../third_party/skia/src/pathops/SkOpSpan.h +FILE: ../../../third_party/skia/src/pathops/SkPathOpsBounds.h +FILE: ../../../third_party/skia/src/pathops/SkPathOpsCommon.cpp +FILE: ../../../third_party/skia/src/pathops/SkPathOpsCommon.h +FILE: ../../../third_party/skia/src/pathops/SkPathOpsCubic.cpp +FILE: ../../../third_party/skia/src/pathops/SkPathOpsCubic.h +FILE: ../../../third_party/skia/src/pathops/SkPathOpsCurve.h +FILE: ../../../third_party/skia/src/pathops/SkPathOpsLine.cpp +FILE: ../../../third_party/skia/src/pathops/SkPathOpsLine.h +FILE: ../../../third_party/skia/src/pathops/SkPathOpsOp.cpp +FILE: ../../../third_party/skia/src/pathops/SkPathOpsPoint.cpp +FILE: ../../../third_party/skia/src/pathops/SkPathOpsPoint.h +FILE: ../../../third_party/skia/src/pathops/SkPathOpsQuad.cpp +FILE: ../../../third_party/skia/src/pathops/SkPathOpsQuad.h +FILE: ../../../third_party/skia/src/pathops/SkPathOpsRect.cpp +FILE: ../../../third_party/skia/src/pathops/SkPathOpsRect.h +FILE: ../../../third_party/skia/src/pathops/SkPathOpsSimplify.cpp +FILE: ../../../third_party/skia/src/pathops/SkPathOpsTypes.cpp +FILE: ../../../third_party/skia/src/pathops/SkPathOpsTypes.h +FILE: ../../../third_party/skia/src/pathops/SkPathWriter.cpp +FILE: ../../../third_party/skia/src/pathops/SkPathWriter.h +FILE: ../../../third_party/skia/src/pathops/SkReduceOrder.cpp +FILE: ../../../third_party/skia/src/pathops/SkReduceOrder.h +FILE: ../../../third_party/skia/src/sfnt/SkIBMFamilyClass.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTableTypes.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_V0.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_V1.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_V2.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_V3.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_V4.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_VA.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_glyf.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_head.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_hhea.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_loca.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_maxp.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_maxp_CFF.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_maxp_TT.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_name.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_post.h +FILE: ../../../third_party/skia/src/sfnt/SkOTUtils.cpp +FILE: ../../../third_party/skia/src/sfnt/SkOTUtils.h +FILE: ../../../third_party/skia/src/sfnt/SkPanose.h +FILE: ../../../third_party/skia/src/sfnt/SkSFNTHeader.h +FILE: ../../../third_party/skia/src/shaders/gradients/SkGradientShaderPriv.h +FILE: ../../../third_party/skia/src/shaders/gradients/SkLinearGradient.cpp +FILE: ../../../third_party/skia/src/shaders/gradients/SkLinearGradient.h +FILE: ../../../third_party/skia/src/shaders/gradients/SkRadialGradient.cpp +FILE: ../../../third_party/skia/src/shaders/gradients/SkRadialGradient.h +FILE: ../../../third_party/skia/src/shaders/gradients/SkSweepGradient.cpp +FILE: ../../../third_party/skia/src/shaders/gradients/SkSweepGradient.h +FILE: ../../../third_party/skia/src/shaders/gradients/SkTwoPointConicalGradient.cpp +FILE: ../../../third_party/skia/src/shaders/gradients/SkTwoPointConicalGradient.h +FILE: ../../../third_party/skia/src/utils/SkFloatUtils.h +FILE: ../../../third_party/skia/src/utils/SkNullCanvas.cpp +FILE: ../../../third_party/skia/src/utils/mac/SkStream_mac.cpp +FILE: ../../../third_party/skia/src/utils/win/SkDWriteFontFileStream.cpp +FILE: ../../../third_party/skia/src/utils/win/SkDWriteFontFileStream.h +FILE: ../../../third_party/skia/src/utils/win/SkDWriteGeometrySink.cpp +FILE: ../../../third_party/skia/src/utils/win/SkDWriteGeometrySink.h +---------------------------------------------------------------------------------------------------- +Copyright 2012 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/bench/BigPathBench.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/bench/BigPathBench.cpp +FILE: ../../../third_party/skia/bench/BitmapRegionDecoderBench.cpp +FILE: ../../../third_party/skia/bench/BitmapRegionDecoderBench.h +FILE: ../../../third_party/skia/bench/CodecBench.cpp +FILE: ../../../third_party/skia/bench/CodecBench.h +FILE: ../../../third_party/skia/bench/CodecBenchPriv.h +FILE: ../../../third_party/skia/bench/ControlBench.cpp +FILE: ../../../third_party/skia/bench/DrawBitmapAABench.cpp +FILE: ../../../third_party/skia/bench/ImageBench.cpp +FILE: ../../../third_party/skia/bench/InterpBench.cpp +FILE: ../../../third_party/skia/bench/MathBench.cpp +FILE: ../../../third_party/skia/bench/MipMapBench.cpp +FILE: ../../../third_party/skia/bench/PictureOverheadBench.cpp +FILE: ../../../third_party/skia/bench/SKPAnimationBench.cpp +FILE: ../../../third_party/skia/bench/SKPAnimationBench.h +FILE: ../../../third_party/skia/bench/Sk4fBench.cpp +FILE: ../../../third_party/skia/bench/SkGlyphCacheBench.cpp +FILE: ../../../third_party/skia/bench/StrokeBench.cpp +FILE: ../../../third_party/skia/bench/TextBlobBench.cpp +FILE: ../../../third_party/skia/bench/TopoSortBench.cpp +FILE: ../../../third_party/skia/bench/nanobench.h +FILE: ../../../third_party/skia/dm/DMSrcSink.cpp +FILE: ../../../third_party/skia/dm/DMSrcSink.h +FILE: ../../../third_party/skia/example/SkiaSDLExample.cpp +FILE: ../../../third_party/skia/experimental/c-api-example/skia-c-example.c +FILE: ../../../third_party/skia/experimental/go-demo/main.go +FILE: ../../../third_party/skia/experimental/go-skia/ctypes.go +FILE: ../../../third_party/skia/experimental/go-skia/skia.go +FILE: ../../../third_party/skia/experimental/go-skia/types.go +FILE: ../../../third_party/skia/experimental/tools/coreGraphicsPdf2png.cpp +FILE: ../../../third_party/skia/gm/aaxfermodes.cpp +FILE: ../../../third_party/skia/gm/addarc.cpp +FILE: ../../../third_party/skia/gm/all_bitmap_configs.cpp +FILE: ../../../third_party/skia/gm/anisotropic.cpp +FILE: ../../../third_party/skia/gm/annotated_text.cpp +FILE: ../../../third_party/skia/gm/badpaint.cpp +FILE: ../../../third_party/skia/gm/bigrrectaaeffect.cpp +FILE: ../../../third_party/skia/gm/bigtileimagefilter.cpp +FILE: ../../../third_party/skia/gm/blend.cpp +FILE: ../../../third_party/skia/gm/blurredclippedcircle.cpp +FILE: ../../../third_party/skia/gm/bmpfilterqualityrepeat.cpp +FILE: ../../../third_party/skia/gm/concavepaths.cpp +FILE: ../../../third_party/skia/gm/constcolorprocessor.cpp +FILE: ../../../third_party/skia/gm/convex_all_line_paths.cpp +FILE: ../../../third_party/skia/gm/draw_bitmap_rect_skbug4374.cpp +FILE: ../../../third_party/skia/gm/drawable.cpp +FILE: ../../../third_party/skia/gm/drawatlas.cpp +FILE: ../../../third_party/skia/gm/drawatlascolor.cpp +FILE: ../../../third_party/skia/gm/drawminibitmaprect.cpp +FILE: ../../../third_party/skia/gm/fadefilter.cpp +FILE: ../../../third_party/skia/gm/fontscalerdistortable.cpp +FILE: ../../../third_party/skia/gm/gamma.cpp +FILE: ../../../third_party/skia/gm/image_pict.cpp +FILE: ../../../third_party/skia/gm/image_shader.cpp +FILE: ../../../third_party/skia/gm/imagefilters.cpp +FILE: ../../../third_party/skia/gm/imagefiltersstroked.cpp +FILE: ../../../third_party/skia/gm/imagefilterstransformed.cpp +FILE: ../../../third_party/skia/gm/imagefromyuvtextures.cpp +FILE: ../../../third_party/skia/gm/imagescalealigned.cpp +FILE: ../../../third_party/skia/gm/imagesource2.cpp +FILE: ../../../third_party/skia/gm/largeglyphblur.cpp +FILE: ../../../third_party/skia/gm/lcdblendmodes.cpp +FILE: ../../../third_party/skia/gm/lcdoverlap.cpp +FILE: ../../../third_party/skia/gm/lightingshader.cpp +FILE: ../../../third_party/skia/gm/localmatriximagefilter.cpp +FILE: ../../../third_party/skia/gm/localmatriximageshader.cpp +FILE: ../../../third_party/skia/gm/mipmap.cpp +FILE: ../../../third_party/skia/gm/path_stroke_with_zero_length.cpp +FILE: ../../../third_party/skia/gm/pathcontourstart.cpp +FILE: ../../../third_party/skia/gm/pdf_never_embed.cpp +FILE: ../../../third_party/skia/gm/perspshaders.cpp +FILE: ../../../third_party/skia/gm/pictureimagegenerator.cpp +FILE: ../../../third_party/skia/gm/pixelsnap.cpp +FILE: ../../../third_party/skia/gm/plus.cpp +FILE: ../../../third_party/skia/gm/repeated_bitmap.cpp +FILE: ../../../third_party/skia/gm/scaledstrokes.cpp +FILE: ../../../third_party/skia/gm/skbug_257.cpp +FILE: ../../../third_party/skia/gm/smallpaths.cpp +FILE: ../../../third_party/skia/gm/stlouisarch.cpp +FILE: ../../../third_party/skia/gm/textblobcolortrans.cpp +FILE: ../../../third_party/skia/gm/textblobgeometrychange.cpp +FILE: ../../../third_party/skia/gm/textblobmixedsizes.cpp +FILE: ../../../third_party/skia/gm/textblobrandomfont.cpp +FILE: ../../../third_party/skia/gm/textblobtransforms.cpp +FILE: ../../../third_party/skia/gm/textblobuseaftergpufree.cpp +FILE: ../../../third_party/skia/gm/transparency.cpp +FILE: ../../../third_party/skia/include/android/SkBRDAllocator.h +FILE: ../../../third_party/skia/include/android/SkBitmapRegionDecoder.h +FILE: ../../../third_party/skia/include/codec/SkAndroidCodec.h +FILE: ../../../third_party/skia/include/codec/SkCodec.h +FILE: ../../../third_party/skia/include/core/SkEncodedImageFormat.h +FILE: ../../../third_party/skia/include/core/SkFilterQuality.h +FILE: ../../../third_party/skia/include/core/SkLights.h +FILE: ../../../third_party/skia/include/core/SkPixmap.h +FILE: ../../../third_party/skia/include/core/SkPngChunkReader.h +FILE: ../../../third_party/skia/include/core/SkPoint3.h +FILE: ../../../third_party/skia/include/core/SkRSXform.h +FILE: ../../../third_party/skia/include/core/SkRWBuffer.h +FILE: ../../../third_party/skia/include/core/SkTraceMemoryDump.h +FILE: ../../../third_party/skia/include/effects/SkImageSource.h +FILE: ../../../third_party/skia/include/effects/SkTableColorFilter.h +FILE: ../../../third_party/skia/include/gpu/GrContextOptions.h +FILE: ../../../third_party/skia/include/gpu/GrSamplerState.h +FILE: ../../../third_party/skia/include/gpu/gl/GrGLTypes.h +FILE: ../../../third_party/skia/include/ports/SkFontMgr_android.h +FILE: ../../../third_party/skia/include/ports/SkFontMgr_directory.h +FILE: ../../../third_party/skia/include/ports/SkFontMgr_empty.h +FILE: ../../../third_party/skia/include/ports/SkFontMgr_fontconfig.h +FILE: ../../../third_party/skia/include/private/SkAtomics.h +FILE: ../../../third_party/skia/include/private/SkMutex.h +FILE: ../../../third_party/skia/include/private/SkSemaphore.h +FILE: ../../../third_party/skia/include/private/SkSpinlock.h +FILE: ../../../third_party/skia/include/private/SkTHash.h +FILE: ../../../third_party/skia/include/private/SkThreadID.h +FILE: ../../../third_party/skia/include/svg/SkSVGCanvas.h +FILE: ../../../third_party/skia/include/utils/SkPaintFilterCanvas.h +FILE: ../../../third_party/skia/samplecode/PerlinPatch.cpp +FILE: ../../../third_party/skia/samplecode/SampleAAGeometry.cpp +FILE: ../../../third_party/skia/samplecode/SampleAnimatedText.cpp +FILE: ../../../third_party/skia/samplecode/SampleAtlas.cpp +FILE: ../../../third_party/skia/samplecode/SampleClipDrawMatch.cpp +FILE: ../../../third_party/skia/samplecode/SampleFilterQuality.cpp +FILE: ../../../third_party/skia/samplecode/SampleLighting.cpp +FILE: ../../../third_party/skia/samplecode/SamplePathFuzz.cpp +FILE: ../../../third_party/skia/samplecode/SampleShip.cpp +FILE: ../../../third_party/skia/samplecode/SampleXfer.cpp +FILE: ../../../third_party/skia/src/android/SkBitmapRegionCodec.cpp +FILE: ../../../third_party/skia/src/android/SkBitmapRegionCodec.h +FILE: ../../../third_party/skia/src/android/SkBitmapRegionDecoder.cpp +FILE: ../../../third_party/skia/src/android/SkBitmapRegionDecoderPriv.h +FILE: ../../../third_party/skia/src/c/sk_c_from_to.h +FILE: ../../../third_party/skia/src/c/sk_paint.cpp +FILE: ../../../third_party/skia/src/c/sk_types_priv.h +FILE: ../../../third_party/skia/src/codec/SkAndroidCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkBmpCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkBmpCodec.h +FILE: ../../../third_party/skia/src/codec/SkBmpMaskCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkBmpMaskCodec.h +FILE: ../../../third_party/skia/src/codec/SkBmpRLECodec.cpp +FILE: ../../../third_party/skia/src/codec/SkBmpRLECodec.h +FILE: ../../../third_party/skia/src/codec/SkBmpStandardCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkBmpStandardCodec.h +FILE: ../../../third_party/skia/src/codec/SkCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkCodecImageGenerator.cpp +FILE: ../../../third_party/skia/src/codec/SkCodecImageGenerator.h +FILE: ../../../third_party/skia/src/codec/SkGifCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkGifCodec.h +FILE: ../../../third_party/skia/src/codec/SkIcoCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkIcoCodec.h +FILE: ../../../third_party/skia/src/codec/SkJpegCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkJpegCodec.h +FILE: ../../../third_party/skia/src/codec/SkJpegDecoderMgr.cpp +FILE: ../../../third_party/skia/src/codec/SkJpegDecoderMgr.h +FILE: ../../../third_party/skia/src/codec/SkJpegUtility.cpp +FILE: ../../../third_party/skia/src/codec/SkJpegUtility.h +FILE: ../../../third_party/skia/src/codec/SkMaskSwizzler.cpp +FILE: ../../../third_party/skia/src/codec/SkMaskSwizzler.h +FILE: ../../../third_party/skia/src/codec/SkMasks.cpp +FILE: ../../../third_party/skia/src/codec/SkMasks.h +FILE: ../../../third_party/skia/src/codec/SkPngCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkPngCodec.h +FILE: ../../../third_party/skia/src/codec/SkSampledCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkSampledCodec.h +FILE: ../../../third_party/skia/src/codec/SkSampler.cpp +FILE: ../../../third_party/skia/src/codec/SkSampler.h +FILE: ../../../third_party/skia/src/codec/SkSwizzler.cpp +FILE: ../../../third_party/skia/src/codec/SkSwizzler.h +FILE: ../../../third_party/skia/src/codec/SkWbmpCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkWbmpCodec.h +FILE: ../../../third_party/skia/src/codec/SkWebpAdapterCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkWebpAdapterCodec.h +FILE: ../../../third_party/skia/src/codec/SkWebpCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkWebpCodec.h +FILE: ../../../third_party/skia/src/core/Sk4px.h +FILE: ../../../third_party/skia/src/core/SkBigPicture.cpp +FILE: ../../../third_party/skia/src/core/SkBigPicture.h +FILE: ../../../third_party/skia/src/core/SkBitmapController.cpp +FILE: ../../../third_party/skia/src/core/SkBitmapController.h +FILE: ../../../third_party/skia/src/core/SkBitmapProvider.cpp +FILE: ../../../third_party/skia/src/core/SkBitmapProvider.h +FILE: ../../../third_party/skia/src/core/SkFindAndPlaceGlyph.h +FILE: ../../../third_party/skia/src/core/SkFontMgr.cpp +FILE: ../../../third_party/skia/src/core/SkImageCacherator.h +FILE: ../../../third_party/skia/src/core/SkLatticeIter.cpp +FILE: ../../../third_party/skia/src/core/SkLatticeIter.h +FILE: ../../../third_party/skia/src/core/SkLocalMatrixImageFilter.cpp +FILE: ../../../third_party/skia/src/core/SkMiniRecorder.cpp +FILE: ../../../third_party/skia/src/core/SkMiniRecorder.h +FILE: ../../../third_party/skia/src/core/SkNextID.h +FILE: ../../../third_party/skia/src/core/SkNx.h +FILE: ../../../third_party/skia/src/core/SkOpts.cpp +FILE: ../../../third_party/skia/src/core/SkOpts.h +FILE: ../../../third_party/skia/src/core/SkPathPriv.h +FILE: ../../../third_party/skia/src/core/SkPictureCommon.h +FILE: ../../../third_party/skia/src/core/SkPictureImageGenerator.cpp +FILE: ../../../third_party/skia/src/core/SkPictureImageGenerator.h +FILE: ../../../third_party/skia/src/core/SkPixmap.cpp +FILE: ../../../third_party/skia/src/core/SkPixmapPriv.h +FILE: ../../../third_party/skia/src/core/SkPoint3.cpp +FILE: ../../../third_party/skia/src/core/SkRWBuffer.cpp +FILE: ../../../third_party/skia/src/core/SkRecord.cpp +FILE: ../../../third_party/skia/src/core/SkRecordPattern.h +FILE: ../../../third_party/skia/src/core/SkRecords.cpp +FILE: ../../../third_party/skia/src/core/SkSemaphore.cpp +FILE: ../../../third_party/skia/src/core/SkSharedMutex.cpp +FILE: ../../../third_party/skia/src/core/SkSharedMutex.h +FILE: ../../../third_party/skia/src/core/SkSpinlock.cpp +FILE: ../../../third_party/skia/src/core/SkTDPQueue.h +FILE: ../../../third_party/skia/src/core/SkTTopoSort.h +FILE: ../../../third_party/skia/src/core/SkThreadID.cpp +FILE: ../../../third_party/skia/src/core/SkTime.cpp +FILE: ../../../third_party/skia/src/core/SkXfermodeInterpretation.cpp +FILE: ../../../third_party/skia/src/core/SkXfermodeInterpretation.h +FILE: ../../../third_party/skia/src/core/SkYUVPlanesCache.cpp +FILE: ../../../third_party/skia/src/core/SkYUVPlanesCache.h +FILE: ../../../third_party/skia/src/effects/SkTableColorFilter.cpp +FILE: ../../../third_party/skia/src/effects/imagefilters/SkImageSource.cpp +FILE: ../../../third_party/skia/src/gpu/GrAutoLocaleSetter.h +FILE: ../../../third_party/skia/src/gpu/GrBlend.cpp +FILE: ../../../third_party/skia/src/gpu/GrBlurUtils.cpp +FILE: ../../../third_party/skia/src/gpu/GrBlurUtils.h +FILE: ../../../third_party/skia/src/gpu/GrCaps.cpp +FILE: ../../../third_party/skia/src/gpu/GrDrawOpAtlas.cpp +FILE: ../../../third_party/skia/src/gpu/GrDrawOpAtlas.h +FILE: ../../../third_party/skia/src/gpu/GrDrawOpTest.cpp +FILE: ../../../third_party/skia/src/gpu/GrDrawOpTest.h +FILE: ../../../third_party/skia/src/gpu/GrDrawingManager.cpp +FILE: ../../../third_party/skia/src/gpu/GrDrawingManager.h +FILE: ../../../third_party/skia/src/gpu/GrFragmentProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/GrGpuResourcePriv.h +FILE: ../../../third_party/skia/src/gpu/GrMesh.h +FILE: ../../../third_party/skia/src/gpu/GrNonAtomicRef.h +FILE: ../../../third_party/skia/src/gpu/GrOpFlushState.cpp +FILE: ../../../third_party/skia/src/gpu/GrOpFlushState.h +FILE: ../../../third_party/skia/src/gpu/GrPipeline.cpp +FILE: ../../../third_party/skia/src/gpu/GrPipeline.h +FILE: ../../../third_party/skia/src/gpu/GrProcessorUnitTest.cpp +FILE: ../../../third_party/skia/src/gpu/GrQuad.h +FILE: ../../../third_party/skia/src/gpu/GrRenderTargetContext.cpp +FILE: ../../../third_party/skia/src/gpu/GrRenderTargetContext.h +FILE: ../../../third_party/skia/src/gpu/GrRenderTargetPriv.h +FILE: ../../../third_party/skia/src/gpu/GrResourceProvider.cpp +FILE: ../../../third_party/skia/src/gpu/GrResourceProvider.h +FILE: ../../../third_party/skia/src/gpu/GrTessellator.cpp +FILE: ../../../third_party/skia/src/gpu/GrTessellator.h +FILE: ../../../third_party/skia/src/gpu/GrTestUtils.cpp +FILE: ../../../third_party/skia/src/gpu/GrTestUtils.h +FILE: ../../../third_party/skia/src/gpu/GrXferProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/GrYUVProvider.cpp +FILE: ../../../third_party/skia/src/gpu/GrYUVProvider.h +FILE: ../../../third_party/skia/src/gpu/SkGpuDevice_drawTexture.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrCustomXfermode.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrCustomXfermode.h +FILE: ../../../third_party/skia/src/gpu/effects/GrXfermodeFragmentProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrXfermodeFragmentProcessor.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLTextureRenderTarget.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLUniformHandler.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLUniformHandler.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLVaryingHandler.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLVaryingHandler.h +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLBlend.cpp +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLBlend.h +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLFragmentProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLProgramBuilder.cpp +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLProgramBuilder.h +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLProgramDataManager.h +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLUniformHandler.h +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLUtil.cpp +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLUtil.h +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLVarying.cpp +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLVarying.h +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLXferProcessor.h +FILE: ../../../third_party/skia/src/gpu/ops/GrAAConvexTessellator.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrAAConvexTessellator.h +FILE: ../../../third_party/skia/src/gpu/ops/GrAAFillRectOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrAALinearizingConvexPathRenderer.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrAALinearizingConvexPathRenderer.h +FILE: ../../../third_party/skia/src/gpu/ops/GrAAStrokeRectOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrAtlasTextOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrAtlasTextOp.h +FILE: ../../../third_party/skia/src/gpu/ops/GrClearOp.h +FILE: ../../../third_party/skia/src/gpu/ops/GrCopySurfaceOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrCopySurfaceOp.h +FILE: ../../../third_party/skia/src/gpu/ops/GrDashLinePathRenderer.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrDashLinePathRenderer.h +FILE: ../../../third_party/skia/src/gpu/ops/GrDrawAtlasOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrDrawAtlasOp.h +FILE: ../../../third_party/skia/src/gpu/ops/GrDrawOp.h +FILE: ../../../third_party/skia/src/gpu/ops/GrDrawPathOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrDrawPathOp.h +FILE: ../../../third_party/skia/src/gpu/ops/GrDrawVerticesOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrDrawVerticesOp.h +FILE: ../../../third_party/skia/src/gpu/ops/GrLatticeOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrLatticeOp.h +FILE: ../../../third_party/skia/src/gpu/ops/GrMeshDrawOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrMeshDrawOp.h +FILE: ../../../third_party/skia/src/gpu/ops/GrNonAAStrokeRectOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrOp.h +FILE: ../../../third_party/skia/src/gpu/ops/GrStencilPathOp.h +FILE: ../../../third_party/skia/src/gpu/ops/GrTessellatingPathRenderer.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrTessellatingPathRenderer.h +FILE: ../../../third_party/skia/src/gpu/text/GrDistanceFieldAdjustTable.cpp +FILE: ../../../third_party/skia/src/gpu/text/GrDistanceFieldAdjustTable.h +FILE: ../../../third_party/skia/src/gpu/text/GrGlyphCache.cpp +FILE: ../../../third_party/skia/src/gpu/text/GrGlyphCache.h +FILE: ../../../third_party/skia/src/gpu/text/GrTextBlob.cpp +FILE: ../../../third_party/skia/src/gpu/text/GrTextBlob.h +FILE: ../../../third_party/skia/src/gpu/text/GrTextBlobCache.cpp +FILE: ../../../third_party/skia/src/gpu/text/GrTextBlobCache.h +FILE: ../../../third_party/skia/src/gpu/text/GrTextContext.cpp +FILE: ../../../third_party/skia/src/gpu/text/GrTextContext.h +FILE: ../../../third_party/skia/src/gpu/text/GrTextTarget.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkBuffer.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkBuffer.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkCaps.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkCaps.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkCommandBuffer.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkCommandBuffer.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkGpu.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkGpu.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkImage.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkImage.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkIndexBuffer.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkIndexBuffer.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkInterface.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkInterface.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkMemory.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkMemory.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkRenderPass.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkRenderPass.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkRenderTarget.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkRenderTarget.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkResource.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkStencilAttachment.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkStencilAttachment.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkTexture.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkTexture.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkTextureRenderTarget.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkTextureRenderTarget.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkTransferBuffer.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkTransferBuffer.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkUniformBuffer.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkUniformBuffer.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkUtil.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkUtil.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkVertexBuffer.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkVertexBuffer.h +FILE: ../../../third_party/skia/src/image/SkImage_Gpu.h +FILE: ../../../third_party/skia/src/image/SkImage_Lazy.cpp +FILE: ../../../third_party/skia/src/opts/Sk4px_NEON.h +FILE: ../../../third_party/skia/src/opts/Sk4px_SSE2.h +FILE: ../../../third_party/skia/src/opts/Sk4px_none.h +FILE: ../../../third_party/skia/src/opts/SkBlitMask_opts.h +FILE: ../../../third_party/skia/src/opts/SkBlitMask_opts_arm_neon.cpp +FILE: ../../../third_party/skia/src/opts/SkBlitMask_opts_arm_neon.h +FILE: ../../../third_party/skia/src/opts/SkBlitRow_opts.h +FILE: ../../../third_party/skia/src/opts/SkColor_opts_neon.h +FILE: ../../../third_party/skia/src/opts/SkMorphologyImageFilter_opts.h +FILE: ../../../third_party/skia/src/opts/SkNx_neon.h +FILE: ../../../third_party/skia/src/opts/SkNx_sse.h +FILE: ../../../third_party/skia/src/opts/SkOpts_sse41.cpp +FILE: ../../../third_party/skia/src/opts/SkOpts_ssse3.cpp +FILE: ../../../third_party/skia/src/opts/SkXfermode_opts.h +FILE: ../../../third_party/skia/src/pathops/SkDConicLineIntersection.cpp +FILE: ../../../third_party/skia/src/pathops/SkDCubicToQuads.cpp +FILE: ../../../third_party/skia/src/pathops/SkOpCoincidence.cpp +FILE: ../../../third_party/skia/src/pathops/SkPathOpsConic.cpp +FILE: ../../../third_party/skia/src/pathops/SkPathOpsConic.h +FILE: ../../../third_party/skia/src/pathops/SkPathOpsCurve.cpp +FILE: ../../../third_party/skia/src/pathops/SkPathOpsWinding.cpp +FILE: ../../../third_party/skia/src/pdf/SkDocument_PDF_None.cpp +FILE: ../../../third_party/skia/src/pdf/SkJpegInfo.cpp +FILE: ../../../third_party/skia/src/pdf/SkJpegInfo.h +FILE: ../../../third_party/skia/src/pdf/SkPDFBitmap.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFBitmap.h +FILE: ../../../third_party/skia/src/pdf/SkPDFCanon.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFCanon.h +FILE: ../../../third_party/skia/src/pdf/SkPDFMetadata.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFMetadata.h +FILE: ../../../third_party/skia/src/ports/SkFontMgr_android_factory.cpp +FILE: ../../../third_party/skia/src/ports/SkFontMgr_custom_directory_factory.cpp +FILE: ../../../third_party/skia/src/ports/SkFontMgr_custom_embedded_factory.cpp +FILE: ../../../third_party/skia/src/ports/SkFontMgr_fontconfig_factory.cpp +FILE: ../../../third_party/skia/src/ports/SkFontMgr_win_dw_factory.cpp +FILE: ../../../third_party/skia/src/ports/SkOSLibrary.h +FILE: ../../../third_party/skia/src/ports/SkOSLibrary_posix.cpp +FILE: ../../../third_party/skia/src/ports/SkOSLibrary_win.cpp +FILE: ../../../third_party/skia/src/shaders/SkImageShader.cpp +FILE: ../../../third_party/skia/src/shaders/SkImageShader.h +FILE: ../../../third_party/skia/src/shaders/SkLightingShader.cpp +FILE: ../../../third_party/skia/src/shaders/SkLightingShader.h +FILE: ../../../third_party/skia/src/svg/SkSVGCanvas.cpp +FILE: ../../../third_party/skia/src/svg/SkSVGDevice.cpp +FILE: ../../../third_party/skia/src/svg/SkSVGDevice.h +FILE: ../../../third_party/skia/src/utils/SkPaintFilterCanvas.cpp +FILE: ../../../third_party/skia/src/utils/SkWhitelistChecksums.inc +FILE: ../../../third_party/skia/src/utils/SkWhitelistTypefaces.cpp +FILE: ../../../third_party/skia/src/xps/SkXPSDocument.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2015 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/bench/BlendmodeBench.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/bench/BlendmodeBench.cpp +FILE: ../../../third_party/skia/bench/BlurImageFilterBench.cpp +FILE: ../../../third_party/skia/bench/BlurRectBench.cpp +FILE: ../../../third_party/skia/bench/BlurRoundRectBench.cpp +FILE: ../../../third_party/skia/bench/ChartBench.cpp +FILE: ../../../third_party/skia/bench/CmapBench.cpp +FILE: ../../../third_party/skia/bench/ColorFilterBench.cpp +FILE: ../../../third_party/skia/bench/ColorPrivBench.cpp +FILE: ../../../third_party/skia/bench/CoverageBench.cpp +FILE: ../../../third_party/skia/bench/DisplacementBench.cpp +FILE: ../../../third_party/skia/bench/FSRectBench.cpp +FILE: ../../../third_party/skia/bench/FontCacheBench.cpp +FILE: ../../../third_party/skia/bench/GrResourceCacheBench.cpp +FILE: ../../../third_party/skia/bench/HairlinePathBench.cpp +FILE: ../../../third_party/skia/bench/ImageCacheBench.cpp +FILE: ../../../third_party/skia/bench/LightingBench.cpp +FILE: ../../../third_party/skia/bench/MagnifierBench.cpp +FILE: ../../../third_party/skia/bench/MemsetBench.cpp +FILE: ../../../third_party/skia/bench/MergeBench.cpp +FILE: ../../../third_party/skia/bench/PerlinNoiseBench.cpp +FILE: ../../../third_party/skia/bench/PremulAndUnpremulAlphaOpsBench.cpp +FILE: ../../../third_party/skia/bench/RectoriBench.cpp +FILE: ../../../third_party/skia/bench/RegionContainBench.cpp +FILE: ../../../third_party/skia/bench/ResultsWriter.h +FILE: ../../../third_party/skia/bench/SortBench.cpp +FILE: ../../../third_party/skia/bench/TileBench.cpp +FILE: ../../../third_party/skia/bench/WritePixelsBench.cpp +FILE: ../../../third_party/skia/bench/gUniqueGlyphIDs.h +FILE: ../../../third_party/skia/dm/DM.cpp +FILE: ../../../third_party/skia/gm/alphagradients.cpp +FILE: ../../../third_party/skia/gm/arcofzorro.cpp +FILE: ../../../third_party/skia/gm/beziereffects.cpp +FILE: ../../../third_party/skia/gm/bigblurs.cpp +FILE: ../../../third_party/skia/gm/bigtext.cpp +FILE: ../../../third_party/skia/gm/bitmappremul.cpp +FILE: ../../../third_party/skia/gm/bitmaprecttest.cpp +FILE: ../../../third_party/skia/gm/bitmapshader.cpp +FILE: ../../../third_party/skia/gm/bleed.cpp +FILE: ../../../third_party/skia/gm/blurquickreject.cpp +FILE: ../../../third_party/skia/gm/blurroundrect.cpp +FILE: ../../../third_party/skia/gm/circularclips.cpp +FILE: ../../../third_party/skia/gm/clippedbitmapshaders.cpp +FILE: ../../../third_party/skia/gm/coloremoji.cpp +FILE: ../../../third_party/skia/gm/conicpaths.cpp +FILE: ../../../third_party/skia/gm/copyTo4444.cpp +FILE: ../../../third_party/skia/gm/displacement.cpp +FILE: ../../../third_party/skia/gm/downsamplebitmap.cpp +FILE: ../../../third_party/skia/gm/dropshadowimagefilter.cpp +FILE: ../../../third_party/skia/gm/dstreadshuffle.cpp +FILE: ../../../third_party/skia/gm/fontcache.cpp +FILE: ../../../third_party/skia/gm/fontmgr.cpp +FILE: ../../../third_party/skia/gm/gm_expectations.h +FILE: ../../../third_party/skia/gm/gradientDirtyLaundry.cpp +FILE: ../../../third_party/skia/gm/gradient_matrix.cpp +FILE: ../../../third_party/skia/gm/gradients_no_texture.cpp +FILE: ../../../third_party/skia/gm/hairlines.cpp +FILE: ../../../third_party/skia/gm/imagealphathreshold.cpp +FILE: ../../../third_party/skia/gm/imagesource.cpp +FILE: ../../../third_party/skia/gm/internal_links.cpp +FILE: ../../../third_party/skia/gm/inversepaths.cpp +FILE: ../../../third_party/skia/gm/lumafilter.cpp +FILE: ../../../third_party/skia/gm/megalooper.cpp +FILE: ../../../third_party/skia/gm/mixedtextblobs.cpp +FILE: ../../../third_party/skia/gm/nested.cpp +FILE: ../../../third_party/skia/gm/nonclosedpaths.cpp +FILE: ../../../third_party/skia/gm/offsetimagefilter.cpp +FILE: ../../../third_party/skia/gm/ovals.cpp +FILE: ../../../third_party/skia/gm/pathopsinverse.cpp +FILE: ../../../third_party/skia/gm/pathopsskpclip.cpp +FILE: ../../../third_party/skia/gm/perlinnoise.cpp +FILE: ../../../third_party/skia/gm/pictureimagefilter.cpp +FILE: ../../../third_party/skia/gm/polygons.cpp +FILE: ../../../third_party/skia/gm/rects.cpp +FILE: ../../../third_party/skia/gm/resizeimagefilter.cpp +FILE: ../../../third_party/skia/gm/roundrects.cpp +FILE: ../../../third_party/skia/gm/shallowgradient.cpp +FILE: ../../../third_party/skia/gm/skbug1719.cpp +FILE: ../../../third_party/skia/gm/spritebitmap.cpp +FILE: ../../../third_party/skia/gm/stringart.cpp +FILE: ../../../third_party/skia/gm/textbloblooper.cpp +FILE: ../../../third_party/skia/gm/thinrects.cpp +FILE: ../../../third_party/skia/gm/thinstrokedrects.cpp +FILE: ../../../third_party/skia/gm/tileimagefilter.cpp +FILE: ../../../third_party/skia/gm/vertices.cpp +FILE: ../../../third_party/skia/gm/xfermodeimagefilter.cpp +FILE: ../../../third_party/skia/gm/xfermodes2.cpp +FILE: ../../../third_party/skia/gm/xfermodes3.cpp +FILE: ../../../third_party/skia/include/core/SkDataTable.h +FILE: ../../../third_party/skia/include/core/SkDocument.h +FILE: ../../../third_party/skia/include/core/SkFontLCDConfig.h +FILE: ../../../third_party/skia/include/core/SkFontMgr.h +FILE: ../../../third_party/skia/include/core/SkFontStyle.h +FILE: ../../../third_party/skia/include/core/SkImageGenerator.h +FILE: ../../../third_party/skia/include/core/SkImageInfo.h +FILE: ../../../third_party/skia/include/effects/SkAlphaThresholdFilter.h +FILE: ../../../third_party/skia/include/effects/SkComposeImageFilter.h +FILE: ../../../third_party/skia/include/effects/SkDisplacementMapEffect.h +FILE: ../../../third_party/skia/include/effects/SkDropShadowImageFilter.h +FILE: ../../../third_party/skia/include/effects/SkLumaColorFilter.h +FILE: ../../../third_party/skia/include/effects/SkPerlinNoiseShader.h +FILE: ../../../third_party/skia/include/effects/SkTileImageFilter.h +FILE: ../../../third_party/skia/include/gpu/GrBlend.h +FILE: ../../../third_party/skia/include/gpu/gl/GrGLExtensions.h +FILE: ../../../third_party/skia/include/ports/SkFontConfigInterface.h +FILE: ../../../third_party/skia/include/private/GrTypesPriv.h +FILE: ../../../third_party/skia/include/private/SkMessageBus.h +FILE: ../../../third_party/skia/include/private/SkOnce.h +FILE: ../../../third_party/skia/include/private/SkTFitsIn.h +FILE: ../../../third_party/skia/include/private/SkTLogic.h +FILE: ../../../third_party/skia/include/utils/SkCanvasStateUtils.h +FILE: ../../../third_party/skia/include/utils/SkFrontBufferedStream.h +FILE: ../../../third_party/skia/include/utils/SkLua.h +FILE: ../../../third_party/skia/include/utils/SkLuaCanvas.h +FILE: ../../../third_party/skia/samplecode/SampleChart.cpp +FILE: ../../../third_party/skia/samplecode/SampleClock.cpp +FILE: ../../../third_party/skia/samplecode/SampleFilterFuzz.cpp +FILE: ../../../third_party/skia/samplecode/SampleLua.cpp +FILE: ../../../third_party/skia/samplecode/SampleManyRects.cpp +FILE: ../../../third_party/skia/samplecode/SamplePdfFileViewer.cpp +FILE: ../../../third_party/skia/samplecode/SampleStringArt.cpp +FILE: ../../../third_party/skia/samplecode/SampleUnpremul.cpp +FILE: ../../../third_party/skia/src/core/SkBitmapDevice.cpp +FILE: ../../../third_party/skia/src/core/SkBitmapDevice.h +FILE: ../../../third_party/skia/src/core/SkBitmapProcState_matrix_template.h +FILE: ../../../third_party/skia/src/core/SkDataTable.cpp +FILE: ../../../third_party/skia/src/core/SkDiscardableMemory.h +FILE: ../../../third_party/skia/src/core/SkDocument.cpp +FILE: ../../../third_party/skia/src/core/SkDrawLooper.cpp +FILE: ../../../third_party/skia/src/core/SkFontStream.h +FILE: ../../../third_party/skia/src/core/SkGpuBlurUtils.cpp +FILE: ../../../third_party/skia/src/core/SkGpuBlurUtils.h +FILE: ../../../third_party/skia/src/core/SkMatrixUtils.h +FILE: ../../../third_party/skia/src/core/SkMipMap.cpp +FILE: ../../../third_party/skia/src/core/SkMipMap.h +FILE: ../../../third_party/skia/src/core/SkPaintPriv.cpp +FILE: ../../../third_party/skia/src/core/SkPaintPriv.h +FILE: ../../../third_party/skia/src/core/SkPathRef.cpp +FILE: ../../../third_party/skia/src/core/SkResourceCache.cpp +FILE: ../../../third_party/skia/src/core/SkResourceCache.h +FILE: ../../../third_party/skia/src/core/SkStreamPriv.h +FILE: ../../../third_party/skia/src/core/SkStringUtils.cpp +FILE: ../../../third_party/skia/src/core/SkStringUtils.h +FILE: ../../../third_party/skia/src/core/SkTDynamicHash.h +FILE: ../../../third_party/skia/src/core/SkTMultiMap.h +FILE: ../../../third_party/skia/src/core/SkTypefacePriv.h +FILE: ../../../third_party/skia/src/core/SkValidatingReadBuffer.h +FILE: ../../../third_party/skia/src/core/SkValidationUtils.h +FILE: ../../../third_party/skia/src/effects/SkLumaColorFilter.cpp +FILE: ../../../third_party/skia/src/effects/imagefilters/SkAlphaThresholdFilter.cpp +FILE: ../../../third_party/skia/src/effects/imagefilters/SkComposeImageFilter.cpp +FILE: ../../../third_party/skia/src/effects/imagefilters/SkDisplacementMapEffect.cpp +FILE: ../../../third_party/skia/src/effects/imagefilters/SkDropShadowImageFilter.cpp +FILE: ../../../third_party/skia/src/effects/imagefilters/SkTileImageFilter.cpp +FILE: ../../../third_party/skia/src/gpu/GrCaps.h +FILE: ../../../third_party/skia/src/gpu/GrCoordTransform.h +FILE: ../../../third_party/skia/src/gpu/GrGeometryProcessor.h +FILE: ../../../third_party/skia/src/gpu/GrPaint.cpp +FILE: ../../../third_party/skia/src/gpu/GrPathProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/GrPathProcessor.h +FILE: ../../../third_party/skia/src/gpu/GrPrimitiveProcessor.h +FILE: ../../../third_party/skia/src/gpu/GrRectanizer_skyline.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrBezierEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrBezierEffect.h +FILE: ../../../third_party/skia/src/gpu/effects/GrBicubicEffect.h +FILE: ../../../third_party/skia/src/gpu/effects/GrBitmapTextGeoProc.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrBitmapTextGeoProc.h +FILE: ../../../third_party/skia/src/gpu/effects/GrDistanceFieldGeoProc.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrDistanceFieldGeoProc.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLContext.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLContext.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLExtensions.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLVertexArray.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLVertexArray.h +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLFragmentProcessor.h +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLGeometryProcessor.h +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLPrimitiveProcessor.h +FILE: ../../../third_party/skia/src/gpu/ops/GrOvalOpFactory.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrOvalOpFactory.h +FILE: ../../../third_party/skia/src/lazy/SkDiscardableMemoryPool.cpp +FILE: ../../../third_party/skia/src/lazy/SkDiscardableMemoryPool.h +FILE: ../../../third_party/skia/src/pathops/SkOpCoincidence.h +FILE: ../../../third_party/skia/src/pathops/SkOpContour.cpp +FILE: ../../../third_party/skia/src/pathops/SkOpContour.h +FILE: ../../../third_party/skia/src/pathops/SkPathOpsDebug.cpp +FILE: ../../../third_party/skia/src/pathops/SkPathOpsDebug.h +FILE: ../../../third_party/skia/src/pdf/SkPDFResourceDict.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFResourceDict.h +FILE: ../../../third_party/skia/src/ports/SkDiscardableMemory_none.cpp +FILE: ../../../third_party/skia/src/ports/SkFontConfigTypeface.h +FILE: ../../../third_party/skia/src/ports/SkFontMgr_FontConfigInterface.cpp +FILE: ../../../third_party/skia/src/ports/SkOSFile_posix.cpp +FILE: ../../../third_party/skia/src/ports/SkOSFile_win.cpp +FILE: ../../../third_party/skia/src/ports/SkTLS_none.cpp +FILE: ../../../third_party/skia/src/ports/SkTLS_pthread.cpp +FILE: ../../../third_party/skia/src/ports/SkTLS_win.cpp +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_name.cpp +FILE: ../../../third_party/skia/src/sfnt/SkTTCFHeader.h +FILE: ../../../third_party/skia/src/shaders/SkColorFilterShader.cpp +FILE: ../../../third_party/skia/src/shaders/SkPerlinNoiseShader.cpp +FILE: ../../../third_party/skia/src/utils/SkCanvasStack.cpp +FILE: ../../../third_party/skia/src/utils/SkCanvasStack.h +FILE: ../../../third_party/skia/src/utils/SkCanvasStateUtils.cpp +FILE: ../../../third_party/skia/src/utils/SkFrontBufferedStream.cpp +FILE: ../../../third_party/skia/src/utils/SkLua.cpp +FILE: ../../../third_party/skia/src/utils/SkLuaCanvas.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2013 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/bench/ClipMaskBench.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/bench/ClipMaskBench.cpp +FILE: ../../../third_party/skia/bench/ClipStrategyBench.cpp +FILE: ../../../third_party/skia/bench/ColorCanvasDrawBitmapBench.cpp +FILE: ../../../third_party/skia/bench/ColorSpaceXformBench.cpp +FILE: ../../../third_party/skia/bench/CubicKLMBench.cpp +FILE: ../../../third_party/skia/bench/PathTextBench.cpp +FILE: ../../../third_party/skia/bench/ShadowBench.cpp +FILE: ../../../third_party/skia/dm/DMGpuTestProcs.cpp +FILE: ../../../third_party/skia/example/HelloWorld.cpp +FILE: ../../../third_party/skia/example/HelloWorld.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGGradient.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGGradient.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGPattern.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGPattern.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGRadialGradient.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGRadialGradient.h +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGUse.cpp +FILE: ../../../third_party/skia/experimental/svg/model/SkSVGUse.h +FILE: ../../../third_party/skia/experimental/tools/gerrit-change-id-to-number +FILE: ../../../third_party/skia/fuzz/FuzzCanvas.cpp +FILE: ../../../third_party/skia/gm/alpha_image.cpp +FILE: ../../../third_party/skia/gm/atlastext.cpp +FILE: ../../../third_party/skia/gm/bitmaptiled.cpp +FILE: ../../../third_party/skia/gm/blurignorexform.cpp +FILE: ../../../third_party/skia/gm/blurimagevmask.cpp +FILE: ../../../third_party/skia/gm/blurpositioning.cpp +FILE: ../../../third_party/skia/gm/blurtextsmallradii.cpp +FILE: ../../../third_party/skia/gm/bug6643.cpp +FILE: ../../../third_party/skia/gm/bug6783.cpp +FILE: ../../../third_party/skia/gm/circle_sizes.cpp +FILE: ../../../third_party/skia/gm/crbug_691386.cpp +FILE: ../../../third_party/skia/gm/crbug_788500.cpp +FILE: ../../../third_party/skia/gm/crosscontextimage.cpp +FILE: ../../../third_party/skia/gm/dftext_blob_persp.cpp +FILE: ../../../third_party/skia/gm/drrect_small_inner.cpp +FILE: ../../../third_party/skia/gm/encode-alpha-jpeg.cpp +FILE: ../../../third_party/skia/gm/flippity.cpp +FILE: ../../../third_party/skia/gm/gammaencodedpremul.cpp +FILE: ../../../third_party/skia/gm/highcontrastfilter.cpp +FILE: ../../../third_party/skia/gm/hsl.cpp +FILE: ../../../third_party/skia/gm/imageblurclampmode.cpp +FILE: ../../../third_party/skia/gm/imageblurrepeatmode.cpp +FILE: ../../../third_party/skia/gm/jpg_color_cube.cpp +FILE: ../../../third_party/skia/gm/makecolorspace.cpp +FILE: ../../../third_party/skia/gm/manypaths.cpp +FILE: ../../../third_party/skia/gm/pictureshadercache.cpp +FILE: ../../../third_party/skia/gm/radial_gradient_precision.cpp +FILE: ../../../third_party/skia/gm/savelayer.cpp +FILE: ../../../third_party/skia/gm/shadowutils.cpp +FILE: ../../../third_party/skia/gm/shapes_as_paths.cpp +FILE: ../../../third_party/skia/gm/simple_magnification.cpp +FILE: ../../../third_party/skia/gm/srgb.cpp +FILE: ../../../third_party/skia/gm/testgradient.cpp +FILE: ../../../third_party/skia/gm/text_scale_skew.cpp +FILE: ../../../third_party/skia/gm/thinconcavepaths.cpp +FILE: ../../../third_party/skia/gm/tonalshadows.cpp +FILE: ../../../third_party/skia/gm/tosrgb_colorfilter.cpp +FILE: ../../../third_party/skia/include/android/SkAndroidFrameworkUtils.h +FILE: ../../../third_party/skia/include/atlastext/SkAtlasTextContext.h +FILE: ../../../third_party/skia/include/atlastext/SkAtlasTextFont.h +FILE: ../../../third_party/skia/include/atlastext/SkAtlasTextRenderer.h +FILE: ../../../third_party/skia/include/atlastext/SkAtlasTextTarget.h +FILE: ../../../third_party/skia/include/codec/SkEncodedOrigin.h +FILE: ../../../third_party/skia/include/core/SkColorSpaceXformCanvas.h +FILE: ../../../third_party/skia/include/core/SkDeferredDisplayListRecorder.h +FILE: ../../../third_party/skia/include/core/SkExecutor.h +FILE: ../../../third_party/skia/include/core/SkFontArguments.h +FILE: ../../../third_party/skia/include/core/SkSerialProcs.h +FILE: ../../../third_party/skia/include/core/SkSurfaceCharacterization.h +FILE: ../../../third_party/skia/include/core/SkVertices.h +FILE: ../../../third_party/skia/include/effects/SkHighContrastFilter.h +FILE: ../../../third_party/skia/include/effects/SkToSRGBColorFilter.h +FILE: ../../../third_party/skia/include/encode/SkEncoder.h +FILE: ../../../third_party/skia/include/encode/SkJpegEncoder.h +FILE: ../../../third_party/skia/include/encode/SkPngEncoder.h +FILE: ../../../third_party/skia/include/encode/SkWebpEncoder.h +FILE: ../../../third_party/skia/include/gpu/GrBackendSemaphore.h +FILE: ../../../third_party/skia/include/gpu/GrBackendSurface.h +FILE: ../../../third_party/skia/include/gpu/mock/GrMockTypes.h +FILE: ../../../third_party/skia/include/gpu/mtl/GrMtlTypes.h +FILE: ../../../third_party/skia/include/private/GrSharedEnums.h +FILE: ../../../third_party/skia/include/private/SkDeferredDisplayList.h +FILE: ../../../third_party/skia/include/private/SkImageInfoPriv.h +FILE: ../../../third_party/skia/include/private/SkMalloc.h +FILE: ../../../third_party/skia/include/private/SkShadowFlags.h +FILE: ../../../third_party/skia/include/utils/SkShadowUtils.h +FILE: ../../../third_party/skia/modules/skottie/include/Skottie.h +FILE: ../../../third_party/skia/modules/skottie/src/Skottie.cpp +FILE: ../../../third_party/skia/modules/skottie/src/SkottieAnimator.cpp +FILE: ../../../third_party/skia/modules/skottie/src/SkottieValue.cpp +FILE: ../../../third_party/skia/modules/skottie/src/SkottieValue.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGColor.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGDraw.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGEffectNode.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGGeometryNode.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGGroup.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGInvalidationController.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGMerge.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGNode.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGPaintNode.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGPath.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGRect.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGRenderNode.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGTransform.h +FILE: ../../../third_party/skia/modules/sksg/include/SkSGTrimEffect.h +FILE: ../../../third_party/skia/modules/sksg/src/SkSGColor.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGDraw.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGEffectNode.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGGeometryNode.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGGroup.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGInvalidationController.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGMerge.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGNode.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGPaintNode.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGPath.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGRect.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGRenderNode.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGTransform.cpp +FILE: ../../../third_party/skia/modules/sksg/src/SkSGTrimEffect.cpp +FILE: ../../../third_party/skia/samplecode/SampleCCPRGeometry.cpp +FILE: ../../../third_party/skia/samplecode/SampleChineseFling.cpp +FILE: ../../../third_party/skia/samplecode/SampleCowboy.cpp +FILE: ../../../third_party/skia/samplecode/SamplePathText.cpp +FILE: ../../../third_party/skia/samplecode/SampleShadowColor.cpp +FILE: ../../../third_party/skia/samplecode/SampleShadowReference.cpp +FILE: ../../../third_party/skia/samplecode/SampleShadowUtils.cpp +FILE: ../../../third_party/skia/src/android/SkAndroidFrameworkUtils.cpp +FILE: ../../../third_party/skia/src/atlastext/SkAtlasTextContext.cpp +FILE: ../../../third_party/skia/src/atlastext/SkAtlasTextTarget.cpp +FILE: ../../../third_party/skia/src/atlastext/SkInternalAtlasTextContext.cpp +FILE: ../../../third_party/skia/src/atlastext/SkInternalAtlasTextContext.h +FILE: ../../../third_party/skia/src/c/sk_effects.cpp +FILE: ../../../third_party/skia/src/codec/SkBmpBaseCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkBmpBaseCodec.h +FILE: ../../../third_party/skia/src/codec/SkFrameHolder.h +FILE: ../../../third_party/skia/src/codec/SkHeifCodec.cpp +FILE: ../../../third_party/skia/src/codec/SkHeifCodec.h +FILE: ../../../third_party/skia/src/codec/SkJpegPriv.h +FILE: ../../../third_party/skia/src/codec/SkPngPriv.h +FILE: ../../../third_party/skia/src/codec/SkStubHeifDecoderAPI.h +FILE: ../../../third_party/skia/src/compute/color/color.c +FILE: ../../../third_party/skia/src/compute/color/color.h +FILE: ../../../third_party/skia/src/compute/skc/assert_state.h +FILE: ../../../third_party/skia/src/compute/skc/block.h +FILE: ../../../third_party/skia/src/compute/skc/common.h +FILE: ../../../third_party/skia/src/compute/skc/composition.c +FILE: ../../../third_party/skia/src/compute/skc/composition.h +FILE: ../../../third_party/skia/src/compute/skc/context.c +FILE: ../../../third_party/skia/src/compute/skc/context.h +FILE: ../../../third_party/skia/src/compute/skc/extent_ring.c +FILE: ../../../third_party/skia/src/compute/skc/extent_ring.h +FILE: ../../../third_party/skia/src/compute/skc/grid.c +FILE: ../../../third_party/skia/src/compute/skc/grid.h +FILE: ../../../third_party/skia/src/compute/skc/handle.h +FILE: ../../../third_party/skia/src/compute/skc/macros.h +FILE: ../../../third_party/skia/src/compute/skc/main.c +FILE: ../../../third_party/skia/src/compute/skc/path.h +FILE: ../../../third_party/skia/src/compute/skc/path_builder.c +FILE: ../../../third_party/skia/src/compute/skc/path_builder.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/atomic_cl.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/block_pool_cl.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/block_pool_cl_12.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/composition_cl_12.c +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/composition_cl_12.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/config_cl.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/cq_pool_cl.c +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/cq_pool_cl.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/device_cl_12.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/export_cl_12.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/extent_cl_12.c +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/extent_cl_12.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/extent_cl_12_unified.c +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/handle_pool_cl_12.c +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/handle_pool_cl_12.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/kernels/block_pool_init.cl +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/kernels/devices/avx2/device_cl_12_avx2.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/kernels/devices/gen9/device_cl_12.c +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/kernels/devices/gen9/kernel_cl_12.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/kernels/fills_expand.cl +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/kernels/paths_copy.cl +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/kernels/paths_reclaim.cl +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/kernels/place.cl +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/kernels/prefix.cl +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/kernels/rasterize.cl +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/kernels/rasters_alloc.cl +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/kernels/rasters_reclaim.cl +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/path_builder_cl_12.c +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/path_builder_cl_12.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/raster_builder_cl_12.c +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/raster_builder_cl_12.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/runtime_cl_12.c +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/runtime_cl_12.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/skc_cl.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/styling_cl_12.c +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/styling_cl_12.h +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/surface_cl_12.c +FILE: ../../../third_party/skia/src/compute/skc/platforms/cl_12/surface_cl_12.h +FILE: ../../../third_party/skia/src/compute/skc/raster.h +FILE: ../../../third_party/skia/src/compute/skc/raster_builder.c +FILE: ../../../third_party/skia/src/compute/skc/raster_builder.h +FILE: ../../../third_party/skia/src/compute/skc/scheduler.cpp +FILE: ../../../third_party/skia/src/compute/skc/scheduler.h +FILE: ../../../third_party/skia/src/compute/skc/skc.h +FILE: ../../../third_party/skia/src/compute/skc/skc_styling.h +FILE: ../../../third_party/skia/src/compute/skc/subblock.h +FILE: ../../../third_party/skia/src/compute/skc/surface.c +FILE: ../../../third_party/skia/src/compute/skc/surface.h +FILE: ../../../third_party/skia/src/compute/skc/types.h +FILE: ../../../third_party/skia/src/compute/skc/weakref.c +FILE: ../../../third_party/skia/src/compute/skc/weakref.h +FILE: ../../../third_party/skia/src/core/SkArenaAllocList.h +FILE: ../../../third_party/skia/src/core/SkAutoBlitterChoose.h +FILE: ../../../third_party/skia/src/core/SkBitmapProcState_utils.h +FILE: ../../../third_party/skia/src/core/SkBlendMode.cpp +FILE: ../../../third_party/skia/src/core/SkBlitter_RGB565.cpp +FILE: ../../../third_party/skia/src/core/SkClipStackDevice.cpp +FILE: ../../../third_party/skia/src/core/SkClipStackDevice.h +FILE: ../../../third_party/skia/src/core/SkColorSpaceXformCanvas.cpp +FILE: ../../../third_party/skia/src/core/SkColorSpaceXformer.cpp +FILE: ../../../third_party/skia/src/core/SkColorSpaceXformer.h +FILE: ../../../third_party/skia/src/core/SkCoverageDelta.cpp +FILE: ../../../third_party/skia/src/core/SkCoverageDelta.h +FILE: ../../../third_party/skia/src/core/SkDeferredDisplayListRecorder.cpp +FILE: ../../../third_party/skia/src/core/SkDrawShadowInfo.cpp +FILE: ../../../third_party/skia/src/core/SkDrawShadowInfo.h +FILE: ../../../third_party/skia/src/core/SkDraw_vertices.cpp +FILE: ../../../third_party/skia/src/core/SkExecutor.cpp +FILE: ../../../third_party/skia/src/core/SkFDot6Constants.cpp +FILE: ../../../third_party/skia/src/core/SkFontMgrPriv.h +FILE: ../../../third_party/skia/src/core/SkGaussFilter.cpp +FILE: ../../../third_party/skia/src/core/SkGaussFilter.h +FILE: ../../../third_party/skia/src/core/SkImageFilterPriv.h +FILE: ../../../third_party/skia/src/core/SkMaskBlurFilter.cpp +FILE: ../../../third_party/skia/src/core/SkMaskBlurFilter.h +FILE: ../../../third_party/skia/src/core/SkRasterClipStack.h +FILE: ../../../third_party/skia/src/core/SkSafeMath.h +FILE: ../../../third_party/skia/src/core/SkSpriteBlitter_RGB565.cpp +FILE: ../../../third_party/skia/src/core/SkUnPreMultiplyPriv.h +FILE: ../../../third_party/skia/src/core/SkVertices.cpp +FILE: ../../../third_party/skia/src/core/SkVptr.h +FILE: ../../../third_party/skia/src/core/SkWritePixelsRec.h +FILE: ../../../third_party/skia/src/effects/SkDashImpl.h +FILE: ../../../third_party/skia/src/effects/SkHighContrastFilter.cpp +FILE: ../../../third_party/skia/src/effects/SkToSRGBColorFilter.cpp +FILE: ../../../third_party/skia/src/gpu/GrAHardwareBufferImageGenerator.cpp +FILE: ../../../third_party/skia/src/gpu/GrAHardwareBufferImageGenerator.h +FILE: ../../../third_party/skia/src/gpu/GrBackendSurface.cpp +FILE: ../../../third_party/skia/src/gpu/GrBackendTextureImageGenerator.cpp +FILE: ../../../third_party/skia/src/gpu/GrBackendTextureImageGenerator.h +FILE: ../../../third_party/skia/src/gpu/GrColorSpaceInfo.cpp +FILE: ../../../third_party/skia/src/gpu/GrColorSpaceInfo.h +FILE: ../../../third_party/skia/src/gpu/GrDeferredProxyUploader.h +FILE: ../../../third_party/skia/src/gpu/GrDeferredUpload.h +FILE: ../../../third_party/skia/src/gpu/GrOnFlushResourceProvider.cpp +FILE: ../../../third_party/skia/src/gpu/GrOnFlushResourceProvider.h +FILE: ../../../third_party/skia/src/gpu/GrProcessorSet.cpp +FILE: ../../../third_party/skia/src/gpu/GrProcessorSet.h +FILE: ../../../third_party/skia/src/gpu/GrResourceAllocator.cpp +FILE: ../../../third_party/skia/src/gpu/GrResourceAllocator.h +FILE: ../../../third_party/skia/src/gpu/GrSemaphore.h +FILE: ../../../third_party/skia/src/gpu/GrStencilClip.h +FILE: ../../../third_party/skia/src/gpu/GrSurfaceProxyPriv.h +FILE: ../../../third_party/skia/src/gpu/GrTextureProxyCacheAccess.h +FILE: ../../../third_party/skia/src/gpu/GrTextureProxyPriv.h +FILE: ../../../third_party/skia/src/gpu/SkGr.h +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCAtlas.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCAtlas.h +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCClipProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCClipProcessor.h +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCCoverageProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCCoverageProcessor.h +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCCoverageProcessor_GSImpl.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCCoverageProcessor_VSImpl.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCCubicShader.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCCubicShader.h +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCFillGeometry.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCFillGeometry.h +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCFiller.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCFiller.h +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCPathProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCPathProcessor.h +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCQuadraticShader.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCQuadraticShader.h +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCoverageCountingPathRenderer.cpp +FILE: ../../../third_party/skia/src/gpu/ccpr/GrCoverageCountingPathRenderer.h +FILE: ../../../third_party/skia/src/gpu/effects/GrAtlasedShaderHelpers.h +FILE: ../../../third_party/skia/src/gpu/effects/GrBlurredEdgeFragmentProcessor.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrBlurredEdgeFragmentProcessor.fp +FILE: ../../../third_party/skia/src/gpu/effects/GrBlurredEdgeFragmentProcessor.h +FILE: ../../../third_party/skia/src/gpu/effects/GrCircleEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrCircleEffect.fp +FILE: ../../../third_party/skia/src/gpu/effects/GrCircleEffect.h +FILE: ../../../third_party/skia/src/gpu/effects/GrEllipseEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrEllipseEffect.fp +FILE: ../../../third_party/skia/src/gpu/effects/GrEllipseEffect.h +FILE: ../../../third_party/skia/src/gpu/effects/GrSimpleTextureEffect.cpp +FILE: ../../../third_party/skia/src/gpu/effects/GrSimpleTextureEffect.fp +FILE: ../../../third_party/skia/src/gpu/effects/GrSimpleTextureEffect.h +FILE: ../../../third_party/skia/src/gpu/gl/GrGLGpuCommandBuffer.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLSemaphore.cpp +FILE: ../../../third_party/skia/src/gpu/gl/GrGLSemaphore.h +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLVertexGeoBuilder.cpp +FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLVertexGeoBuilder.h +FILE: ../../../third_party/skia/src/gpu/mock/GrMockBuffer.h +FILE: ../../../third_party/skia/src/gpu/mock/GrMockCaps.h +FILE: ../../../third_party/skia/src/gpu/mock/GrMockGpu.cpp +FILE: ../../../third_party/skia/src/gpu/mock/GrMockGpu.h +FILE: ../../../third_party/skia/src/gpu/mock/GrMockGpuCommandBuffer.h +FILE: ../../../third_party/skia/src/gpu/mock/GrMockStencilAttachment.h +FILE: ../../../third_party/skia/src/gpu/mock/GrMockTexture.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlCaps.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlCaps.mm +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlGpu.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlGpu.mm +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlRenderTarget.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlRenderTarget.mm +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlTexture.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlTexture.mm +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlTrampoline.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlTrampoline.mm +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlUtil.h +FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlUtil.mm +FILE: ../../../third_party/skia/src/gpu/ops/GrClearOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrDebugMarkerOp.h +FILE: ../../../third_party/skia/src/gpu/ops/GrNonAAFillRectOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrRectOpFactory.h +FILE: ../../../third_party/skia/src/gpu/ops/GrSemaphoreOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrSemaphoreOp.h +FILE: ../../../third_party/skia/src/gpu/ops/GrSimpleMeshDrawOpHelper.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrSimpleMeshDrawOpHelper.h +FILE: ../../../third_party/skia/src/gpu/ops/GrStencilPathOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrTextureOp.cpp +FILE: ../../../third_party/skia/src/gpu/ops/GrTextureOp.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkBufferView.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkBufferView.h +FILE: ../../../third_party/skia/src/gpu/vk/GrVkSemaphore.cpp +FILE: ../../../third_party/skia/src/gpu/vk/GrVkSemaphore.h +FILE: ../../../third_party/skia/src/jumper/SkJumper.cpp +FILE: ../../../third_party/skia/src/jumper/SkJumper.h +FILE: ../../../third_party/skia/src/jumper/SkJumper_misc.h +FILE: ../../../third_party/skia/src/opts/SkUtils_opts.h +FILE: ../../../third_party/skia/src/pdf/SkKeyedImage.cpp +FILE: ../../../third_party/skia/src/pdf/SkKeyedImage.h +FILE: ../../../third_party/skia/src/pdf/SkPDFGradientShader.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFGradientShader.h +FILE: ../../../third_party/skia/src/ports/SkFontMgr_custom_directory.cpp +FILE: ../../../third_party/skia/src/ports/SkFontMgr_custom_embedded.cpp +FILE: ../../../third_party/skia/src/ports/SkFontMgr_custom_empty.cpp +FILE: ../../../third_party/skia/src/ports/SkGlobalInitialization_none.cpp +FILE: ../../../third_party/skia/src/ports/SkGlobalInitialization_none_imagefilters.cpp +FILE: ../../../third_party/skia/src/ports/SkOSFile_ios.h +FILE: ../../../third_party/skia/src/sfnt/SkOTTable_fvar.h +FILE: ../../../third_party/skia/src/shaders/SkShaderBase.h +FILE: ../../../third_party/skia/src/sksl/SkSLCPP.h +FILE: ../../../third_party/skia/src/sksl/SkSLCPPCodeGenerator.h +FILE: ../../../third_party/skia/src/sksl/SkSLFileOutputStream.h +FILE: ../../../third_party/skia/src/sksl/SkSLHCodeGenerator.h +FILE: ../../../third_party/skia/src/sksl/SkSLLexer.cpp +FILE: ../../../third_party/skia/src/sksl/SkSLLexer.h +FILE: ../../../third_party/skia/src/sksl/SkSLOutputStream.h +FILE: ../../../third_party/skia/src/sksl/SkSLPipelineStageCodeGenerator.h +FILE: ../../../third_party/skia/src/sksl/SkSLSectionAndParameterHelper.h +FILE: ../../../third_party/skia/src/sksl/SkSLString.cpp +FILE: ../../../third_party/skia/src/sksl/SkSLString.h +FILE: ../../../third_party/skia/src/sksl/SkSLStringStream.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTEnum.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTSwitchCase.h +FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTSwitchStatement.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLEnum.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLSetting.cpp +FILE: ../../../third_party/skia/src/sksl/ir/SkSLSwitchCase.h +FILE: ../../../third_party/skia/src/sksl/ir/SkSLSwitchStatement.h +FILE: ../../../third_party/skia/src/sksl/lex/DFA.h +FILE: ../../../third_party/skia/src/sksl/lex/DFAState.h +FILE: ../../../third_party/skia/src/sksl/lex/LexUtil.h +FILE: ../../../third_party/skia/src/sksl/lex/Main.cpp +FILE: ../../../third_party/skia/src/sksl/lex/NFA.cpp +FILE: ../../../third_party/skia/src/sksl/lex/NFA.h +FILE: ../../../third_party/skia/src/sksl/lex/NFAState.h +FILE: ../../../third_party/skia/src/sksl/lex/NFAtoDFA.h +FILE: ../../../third_party/skia/src/sksl/lex/RegexNode.cpp +FILE: ../../../third_party/skia/src/sksl/lex/RegexNode.h +FILE: ../../../third_party/skia/src/sksl/lex/RegexParser.cpp +FILE: ../../../third_party/skia/src/sksl/lex/RegexParser.h +FILE: ../../../third_party/skia/src/sksl/sksl_enums.inc +FILE: ../../../third_party/skia/src/utils/SkFloatToDecimal.cpp +FILE: ../../../third_party/skia/src/utils/SkFloatToDecimal.h +FILE: ../../../third_party/skia/src/utils/SkJSONWriter.cpp +FILE: ../../../third_party/skia/src/utils/SkJSONWriter.h +FILE: ../../../third_party/skia/src/utils/SkPolyUtils.cpp +FILE: ../../../third_party/skia/src/utils/SkPolyUtils.h +FILE: ../../../third_party/skia/src/utils/SkShadowTessellator.cpp +FILE: ../../../third_party/skia/src/utils/SkShadowTessellator.h +FILE: ../../../third_party/skia/src/utils/SkShadowUtils.cpp +FILE: ../../../third_party/skia/src/utils/SkThreadUtils_pthread.cpp +FILE: ../../../third_party/skia/src/utils/SkThreadUtils_win.cpp +FILE: ../../../third_party/skia/src/xps/SkXPSDocument.h +---------------------------------------------------------------------------------------------------- +Copyright 2017 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/bench/ReadPixBench.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/bench/ReadPixBench.cpp +FILE: ../../../third_party/skia/bench/WriterBench.cpp +FILE: ../../../third_party/skia/include/effects/SkColorFilterImageFilter.h +FILE: ../../../third_party/skia/include/effects/SkLightingImageFilter.h +FILE: ../../../third_party/skia/include/effects/SkMagnifierImageFilter.h +FILE: ../../../third_party/skia/include/effects/SkMatrixConvolutionImageFilter.h +FILE: ../../../third_party/skia/include/effects/SkMergeImageFilter.h +FILE: ../../../third_party/skia/include/effects/SkMorphologyImageFilter.h +FILE: ../../../third_party/skia/include/effects/SkOffsetImageFilter.h +FILE: ../../../third_party/skia/src/core/SkImageFilter.cpp +FILE: ../../../third_party/skia/src/core/SkUtilsArm.cpp +FILE: ../../../third_party/skia/src/core/SkUtilsArm.h +FILE: ../../../third_party/skia/src/effects/imagefilters/SkColorFilterImageFilter.cpp +FILE: ../../../third_party/skia/src/effects/imagefilters/SkLightingImageFilter.cpp +FILE: ../../../third_party/skia/src/effects/imagefilters/SkMagnifierImageFilter.cpp +FILE: ../../../third_party/skia/src/effects/imagefilters/SkMatrixConvolutionImageFilter.cpp +FILE: ../../../third_party/skia/src/effects/imagefilters/SkMergeImageFilter.cpp +FILE: ../../../third_party/skia/src/effects/imagefilters/SkMorphologyImageFilter.cpp +FILE: ../../../third_party/skia/src/effects/imagefilters/SkOffsetImageFilter.cpp +FILE: ../../../third_party/skia/src/images/SkImageEncoderFns.h +FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_filter_neon.h +FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_opts_SSSE3.cpp +FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_opts_SSSE3.h +FILE: ../../../third_party/skia/src/opts/SkBlitRow_opts_SSE2.cpp +FILE: ../../../third_party/skia/src/opts/SkBlitRow_opts_arm.cpp +FILE: ../../../third_party/skia/src/opts/SkBlitRow_opts_arm_neon.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2012 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/fuzz/FuzzDrawFunctions.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/fuzz/FuzzDrawFunctions.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2016 Mozilla Foundation + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/fuzz/FuzzEncoders.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/fuzz/FuzzEncoders.cpp +FILE: ../../../third_party/skia/fuzz/FuzzPolyUtils.cpp +FILE: ../../../third_party/skia/include/private/GrSkSLFPFactoryCache.h +FILE: ../../../third_party/skia/modules/pathkit/pathkit_wasm_bindings.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2018 Google LLC + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzAPIImageFilter.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/fuzz/FuzzCommon.h +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzAPIImageFilter.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzAnimatedImage.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzDrawFunctions.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzGradients.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzImage.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzJPEGEncoder.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzJSON.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzMockGPUCanvas.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzNullCanvas.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzPNGEncoder.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzPathMeasure.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzPathop.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzRasterN32Canvas.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzTextBlobDeserialize.cpp +FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzWEBPEncoder.cpp +FILE: ../../../third_party/skia/modules/skottie/fuzz/FuzzSkottieJSON.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2018 Google, LLC + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/gm/circles.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/gm/circles.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2012 Intel Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/include/config/SkUserConfig.h + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/include/config/SkUserConfig.h +FILE: ../../../third_party/skia/include/core/SkBitmap.h +FILE: ../../../third_party/skia/include/core/SkCanvas.h +FILE: ../../../third_party/skia/include/core/SkColor.h +FILE: ../../../third_party/skia/include/core/SkColorFilter.h +FILE: ../../../third_party/skia/include/core/SkColorPriv.h +FILE: ../../../third_party/skia/include/core/SkDeque.h +FILE: ../../../third_party/skia/include/core/SkFlattenable.h +FILE: ../../../third_party/skia/include/core/SkGraphics.h +FILE: ../../../third_party/skia/include/core/SkMaskFilter.h +FILE: ../../../third_party/skia/include/core/SkMath.h +FILE: ../../../third_party/skia/include/core/SkMatrix.h +FILE: ../../../third_party/skia/include/core/SkMetaData.h +FILE: ../../../third_party/skia/include/core/SkPaint.h +FILE: ../../../third_party/skia/include/core/SkPath.h +FILE: ../../../third_party/skia/include/core/SkPathEffect.h +FILE: ../../../third_party/skia/include/core/SkPathMeasure.h +FILE: ../../../third_party/skia/include/core/SkPoint.h +FILE: ../../../third_party/skia/include/core/SkPostConfig.h +FILE: ../../../third_party/skia/include/core/SkPreConfig.h +FILE: ../../../third_party/skia/include/core/SkRect.h +FILE: ../../../third_party/skia/include/core/SkRefCnt.h +FILE: ../../../third_party/skia/include/core/SkScalar.h +FILE: ../../../third_party/skia/include/core/SkShader.h +FILE: ../../../third_party/skia/include/core/SkStream.h +FILE: ../../../third_party/skia/include/core/SkString.h +FILE: ../../../third_party/skia/include/core/SkTime.h +FILE: ../../../third_party/skia/include/core/SkTypeface.h +FILE: ../../../third_party/skia/include/core/SkTypes.h +FILE: ../../../third_party/skia/include/effects/Sk1DPathEffect.h +FILE: ../../../third_party/skia/include/effects/Sk2DPathEffect.h +FILE: ../../../third_party/skia/include/effects/SkBlurMaskFilter.h +FILE: ../../../third_party/skia/include/effects/SkCornerPathEffect.h +FILE: ../../../third_party/skia/include/effects/SkDashPathEffect.h +FILE: ../../../third_party/skia/include/effects/SkDiscretePathEffect.h +FILE: ../../../third_party/skia/include/effects/SkGradientShader.h +FILE: ../../../third_party/skia/include/effects/SkTableMaskFilter.h +FILE: ../../../third_party/skia/include/private/SkFixed.h +FILE: ../../../third_party/skia/include/private/SkFloatingPoint.h +FILE: ../../../third_party/skia/include/private/SkNoncopyable.h +FILE: ../../../third_party/skia/include/private/SkTDArray.h +FILE: ../../../third_party/skia/include/private/SkTSearch.h +FILE: ../../../third_party/skia/include/private/SkTemplates.h +FILE: ../../../third_party/skia/include/utils/SkBase64.h +FILE: ../../../third_party/skia/include/utils/SkCamera.h +FILE: ../../../third_party/skia/include/utils/SkInterpolator.h +FILE: ../../../third_party/skia/include/utils/SkParse.h +FILE: ../../../third_party/skia/include/utils/SkParsePath.h +FILE: ../../../third_party/skia/include/utils/SkRandom.h +FILE: ../../../third_party/skia/src/core/SkAlphaRuns.cpp +FILE: ../../../third_party/skia/src/core/SkAnalyticEdge.cpp +FILE: ../../../third_party/skia/src/core/SkAnalyticEdge.h +FILE: ../../../third_party/skia/src/core/SkAntiRun.h +FILE: ../../../third_party/skia/src/core/SkBlitBWMaskTemplate.h +FILE: ../../../third_party/skia/src/core/SkBlitter.cpp +FILE: ../../../third_party/skia/src/core/SkBlitter.h +FILE: ../../../third_party/skia/src/core/SkBlitter_A8.cpp +FILE: ../../../third_party/skia/src/core/SkBlitter_ARGB32.cpp +FILE: ../../../third_party/skia/src/core/SkBlitter_Sprite.cpp +FILE: ../../../third_party/skia/src/core/SkBlurMF.cpp +FILE: ../../../third_party/skia/src/core/SkBlurMask.cpp +FILE: ../../../third_party/skia/src/core/SkBlurMask.h +FILE: ../../../third_party/skia/src/core/SkBuffer.cpp +FILE: ../../../third_party/skia/src/core/SkBuffer.h +FILE: ../../../third_party/skia/src/core/SkColor.cpp +FILE: ../../../third_party/skia/src/core/SkColorData.h +FILE: ../../../third_party/skia/src/core/SkColorFilter.cpp +FILE: ../../../third_party/skia/src/core/SkCoreBlitters.h +FILE: ../../../third_party/skia/src/core/SkDebug.cpp +FILE: ../../../third_party/skia/src/core/SkDeque.cpp +FILE: ../../../third_party/skia/src/core/SkDescriptor.h +FILE: ../../../third_party/skia/src/core/SkDraw.cpp +FILE: ../../../third_party/skia/src/core/SkDraw.h +FILE: ../../../third_party/skia/src/core/SkEdge.cpp +FILE: ../../../third_party/skia/src/core/SkEdge.h +FILE: ../../../third_party/skia/src/core/SkEndian.h +FILE: ../../../third_party/skia/src/core/SkFDot6.h +FILE: ../../../third_party/skia/src/core/SkFDot6Constants.h +FILE: ../../../third_party/skia/src/core/SkGeometry.cpp +FILE: ../../../third_party/skia/src/core/SkGeometry.h +FILE: ../../../third_party/skia/src/core/SkGlyph.h +FILE: ../../../third_party/skia/src/core/SkGlyphCache.cpp +FILE: ../../../third_party/skia/src/core/SkGlyphCache.h +FILE: ../../../third_party/skia/src/core/SkGraphics.cpp +FILE: ../../../third_party/skia/src/core/SkMask.h +FILE: ../../../third_party/skia/src/core/SkMaskFilter.cpp +FILE: ../../../third_party/skia/src/core/SkMatrix.cpp +FILE: ../../../third_party/skia/src/core/SkMetaData.cpp +FILE: ../../../third_party/skia/src/core/SkModeColorFilter.cpp +FILE: ../../../third_party/skia/src/core/SkOSFile.h +FILE: ../../../third_party/skia/src/core/SkPaint.cpp +FILE: ../../../third_party/skia/src/core/SkPath.cpp +FILE: ../../../third_party/skia/src/core/SkPathEffect.cpp +FILE: ../../../third_party/skia/src/core/SkPointPriv.h +FILE: ../../../third_party/skia/src/core/SkRect.cpp +FILE: ../../../third_party/skia/src/core/SkRegion.cpp +FILE: ../../../third_party/skia/src/core/SkRegionPriv.h +FILE: ../../../third_party/skia/src/core/SkRegion_path.cpp +FILE: ../../../third_party/skia/src/core/SkScalerContext.cpp +FILE: ../../../third_party/skia/src/core/SkScalerContext.h +FILE: ../../../third_party/skia/src/core/SkScan.cpp +FILE: ../../../third_party/skia/src/core/SkScanPriv.h +FILE: ../../../third_party/skia/src/core/SkScan_AntiPath.cpp +FILE: ../../../third_party/skia/src/core/SkScan_Hairline.cpp +FILE: ../../../third_party/skia/src/core/SkScan_Path.cpp +FILE: ../../../third_party/skia/src/core/SkSpriteBlitter.h +FILE: ../../../third_party/skia/src/core/SkSpriteBlitter_ARGB32.cpp +FILE: ../../../third_party/skia/src/core/SkStream.cpp +FILE: ../../../third_party/skia/src/core/SkString.cpp +FILE: ../../../third_party/skia/src/core/SkStroke.h +FILE: ../../../third_party/skia/src/core/SkStrokerPriv.cpp +FILE: ../../../third_party/skia/src/core/SkStrokerPriv.h +FILE: ../../../third_party/skia/src/core/SkTSearch.cpp +FILE: ../../../third_party/skia/src/core/SkTSort.h +FILE: ../../../third_party/skia/src/core/SkUtils.cpp +FILE: ../../../third_party/skia/src/core/SkUtils.h +FILE: ../../../third_party/skia/src/core/SkXfermode.cpp +FILE: ../../../third_party/skia/src/core/SkXfermodePriv.h +FILE: ../../../third_party/skia/src/effects/Sk1DPathEffect.cpp +FILE: ../../../third_party/skia/src/effects/Sk2DPathEffect.cpp +FILE: ../../../third_party/skia/src/effects/SkCornerPathEffect.cpp +FILE: ../../../third_party/skia/src/effects/SkDashPathEffect.cpp +FILE: ../../../third_party/skia/src/effects/SkDiscretePathEffect.cpp +FILE: ../../../third_party/skia/src/effects/SkEmbossMask.cpp +FILE: ../../../third_party/skia/src/effects/SkEmbossMask.h +FILE: ../../../third_party/skia/src/effects/SkEmbossMaskFilter.cpp +FILE: ../../../third_party/skia/src/effects/SkEmbossMaskFilter.h +FILE: ../../../third_party/skia/src/images/SkPngEncoder.cpp +FILE: ../../../third_party/skia/src/ports/SkDebug_android.cpp +FILE: ../../../third_party/skia/src/ports/SkDebug_stdio.cpp +FILE: ../../../third_party/skia/src/ports/SkFontHost_FreeType.cpp +FILE: ../../../third_party/skia/src/ports/SkFontHost_mac.cpp +FILE: ../../../third_party/skia/src/ports/SkFontHost_win.cpp +FILE: ../../../third_party/skia/src/ports/SkFontMgr_custom.cpp +FILE: ../../../third_party/skia/src/ports/SkFontMgr_custom.h +FILE: ../../../third_party/skia/src/ports/SkOSFile_stdio.cpp +FILE: ../../../third_party/skia/src/shaders/SkBitmapProcShader.h +FILE: ../../../third_party/skia/src/shaders/SkComposeShader.cpp +FILE: ../../../third_party/skia/src/shaders/SkComposeShader.h +FILE: ../../../third_party/skia/src/shaders/SkShader.cpp +FILE: ../../../third_party/skia/src/shaders/gradients/SkGradientShader.cpp +FILE: ../../../third_party/skia/src/utils/SkBase64.cpp +FILE: ../../../third_party/skia/src/utils/SkBase64.h +FILE: ../../../third_party/skia/src/utils/SkCamera.cpp +FILE: ../../../third_party/skia/src/utils/SkParse.cpp +FILE: ../../../third_party/skia/src/utils/SkParseColor.cpp +FILE: ../../../third_party/skia/src/xml/SkDOM.cpp +FILE: ../../../third_party/skia/src/xml/SkDOM.h +FILE: ../../../third_party/skia/src/xml/SkXMLParser.cpp +FILE: ../../../third_party/skia/src/xml/SkXMLParser.h +FILE: ../../../third_party/skia/src/xml/SkXMLWriter.cpp +FILE: ../../../third_party/skia/src/xml/SkXMLWriter.h +---------------------------------------------------------------------------------------------------- +Copyright 2006 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/include/core/SkDrawLooper.h + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/include/core/SkDrawLooper.h +FILE: ../../../third_party/skia/include/effects/SkBlurImageFilter.h +FILE: ../../../third_party/skia/src/core/SkScan.h +FILE: ../../../third_party/skia/src/core/SkScan_Antihair.cpp +FILE: ../../../third_party/skia/src/core/SkTypeface.cpp +FILE: ../../../third_party/skia/src/effects/imagefilters/SkBlurImageFilter.cpp +FILE: ../../../third_party/skia/src/ports/SkFontMgr_android_parser.cpp +FILE: ../../../third_party/skia/src/ports/SkFontMgr_android_parser.h +---------------------------------------------------------------------------------------------------- +Copyright 2011 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/include/core/SkMallocPixelRef.h + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/include/core/SkMallocPixelRef.h +FILE: ../../../third_party/skia/include/core/SkPixelRef.h +FILE: ../../../third_party/skia/include/core/SkUnPreMultiply.h +FILE: ../../../third_party/skia/include/effects/SkBlurDrawLooper.h +FILE: ../../../third_party/skia/include/private/SkFloatBits.h +FILE: ../../../third_party/skia/src/core/SkBitmap.cpp +FILE: ../../../third_party/skia/src/core/SkCanvas.cpp +FILE: ../../../third_party/skia/src/core/SkDither.h +FILE: ../../../third_party/skia/src/core/SkMath.cpp +FILE: ../../../third_party/skia/src/core/SkPathMeasure.cpp +FILE: ../../../third_party/skia/src/core/SkPoint.cpp +FILE: ../../../third_party/skia/src/core/SkPtrRecorder.h +FILE: ../../../third_party/skia/src/core/SkReader32.h +FILE: ../../../third_party/skia/src/core/SkStroke.cpp +FILE: ../../../third_party/skia/src/core/SkWriter32.h +FILE: ../../../third_party/skia/src/effects/SkPackBits.h +FILE: ../../../third_party/skia/src/ports/SkFontMgr_empty_factory.cpp +FILE: ../../../third_party/skia/src/ports/SkImageEncoder_CG.cpp +FILE: ../../../third_party/skia/src/utils/SkInterpolator.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2008 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/include/core/SkPicture.h + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/include/core/SkPicture.h +FILE: ../../../third_party/skia/include/effects/SkColorMatrix.h +FILE: ../../../third_party/skia/include/effects/SkColorMatrixFilter.h +FILE: ../../../third_party/skia/src/core/SkBitmapProcState.h +FILE: ../../../third_party/skia/src/core/SkMask.cpp +FILE: ../../../third_party/skia/src/core/SkPicture.cpp +FILE: ../../../third_party/skia/src/images/SkJpegEncoder.cpp +FILE: ../../../third_party/skia/src/shaders/SkColorShader.h +---------------------------------------------------------------------------------------------------- +Copyright 2007 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/include/core/SkRegion.h + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/include/core/SkRegion.h +---------------------------------------------------------------------------------------------------- +Copyright 2005 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/include/effects/SkPictureImageFilter.h + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/include/effects/SkPictureImageFilter.h +FILE: ../../../third_party/skia/include/effects/SkXfermodeImageFilter.h +FILE: ../../../third_party/skia/src/effects/imagefilters/SkPictureImageFilter.cpp +FILE: ../../../third_party/skia/src/effects/imagefilters/SkXfermodeImageFilter.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2013 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/include/gpu/GrConfig.h + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/include/gpu/GrConfig.h +FILE: ../../../third_party/skia/include/gpu/GrContext.h +FILE: ../../../third_party/skia/include/gpu/GrTypes.h +FILE: ../../../third_party/skia/include/private/GrColor.h +FILE: ../../../third_party/skia/src/core/SkImageInfo.cpp +FILE: ../../../third_party/skia/src/core/SkRasterClip.cpp +FILE: ../../../third_party/skia/src/core/SkRasterClip.h +FILE: ../../../third_party/skia/src/core/SkStrikeCache.h +FILE: ../../../third_party/skia/src/gpu/GrAllocator.h +FILE: ../../../third_party/skia/src/gpu/GrBufferAllocPool.cpp +FILE: ../../../third_party/skia/src/gpu/GrBufferAllocPool.h +FILE: ../../../third_party/skia/src/gpu/GrClip.h +FILE: ../../../third_party/skia/src/gpu/GrFixedClip.cpp +FILE: ../../../third_party/skia/src/gpu/GrGlyph.h +FILE: ../../../third_party/skia/src/gpu/GrGpu.cpp +FILE: ../../../third_party/skia/src/gpu/GrRect.h +FILE: ../../../third_party/skia/src/gpu/GrRectanizer.h +FILE: ../../../third_party/skia/src/gpu/GrRectanizer_pow2.cpp +FILE: ../../../third_party/skia/src/gpu/GrRenderTargetOpList.cpp +FILE: ../../../third_party/skia/src/gpu/GrRenderTargetOpList.h +FILE: ../../../third_party/skia/src/gpu/SkGpuDevice.h +FILE: ../../../third_party/skia/src/gpu/SkGr.cpp +FILE: ../../../third_party/skia/src/ports/SkDebug_win.cpp +FILE: ../../../third_party/skia/src/shaders/gradients/SkGradientBitmapCache.cpp +FILE: ../../../third_party/skia/src/shaders/gradients/SkGradientBitmapCache.h +---------------------------------------------------------------------------------------------------- +Copyright 2010 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/include/gpu/GrDriverBugWorkaroundsAutogen.h + ../../../LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/include/gpu/GrDriverBugWorkaroundsAutogen.h +FILE: ../../../third_party/skia/include/utils/SkTraceEventPhase.h +FILE: ../../../third_party/skia/infra/lottiecap/gold/lottie-web-aggregator.go +FILE: ../../../third_party/skia/infra/pathkit/gold/pathkit_aggregator.go +---------------------------------------------------------------------------------------------------- +Copyright 2018 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/include/utils/SkEventTracer.h + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/include/utils/SkEventTracer.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2014 Google Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/infra/bots/ct/ct_skps.isolate + ../../../LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/infra/bots/ct/ct_skps.isolate +---------------------------------------------------------------------------------------------------- +Copyright (c) 2015 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/infra/bots/gen_tasks.go + ../../../LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/infra/bots/gen_tasks.go +---------------------------------------------------------------------------------------------------- +Copyright 2016 The Chromium Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/codec/SkCodecPriv.h + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/codec/SkCodecPriv.h +FILE: ../../../third_party/skia/src/core/SkLocalMatrixImageFilter.h +FILE: ../../../third_party/skia/src/ports/SkImageGenerator_none.cpp +FILE: ../../../third_party/skia/src/ports/SkImageGenerator_skia.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2015 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/codec/SkColorTable.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/codec/SkColorTable.cpp +FILE: ../../../third_party/skia/src/core/SkBitmapProcState_filter.h +FILE: ../../../third_party/skia/src/core/SkCubicClipper.cpp +FILE: ../../../third_party/skia/src/core/SkCubicClipper.h +FILE: ../../../third_party/skia/src/core/SkEdgeClipper.cpp +FILE: ../../../third_party/skia/src/core/SkEdgeClipper.h +FILE: ../../../third_party/skia/src/core/SkFontLCDConfig.cpp +FILE: ../../../third_party/skia/src/core/SkQuadClipper.cpp +FILE: ../../../third_party/skia/src/core/SkQuadClipper.h +FILE: ../../../third_party/skia/src/images/SkImageEncoder.cpp +FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_opts_SSE2.cpp +FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_opts_SSE2.h +FILE: ../../../third_party/skia/src/opts/SkBlitRow_opts_SSE2.h +FILE: ../../../third_party/skia/src/opts/opts_check_x86.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2009 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/codec/SkGifCodec.cpp +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/codec/SkGifCodec.cpp +---------------------------------------------------------------------------------------------------- +Copyright (C) 2006 Apple Computer, Inc. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY +OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/compute/sk/SkDevice_Compute.h + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/compute/sk/SkDevice_Compute.h +FILE: ../../../third_party/skia/src/core/SkScan_AAAPath.cpp +FILE: ../../../third_party/skia/src/core/SkScan_DAAPath.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2016 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/core/SkBitmapProcState_matrixProcs.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/core/SkBitmapProcState_matrixProcs.cpp +---------------------------------------------------------------------------------------------------- +NEON optimized code (C) COPYRIGHT 2009 Motorola + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/core/SkBitmapProcState_matrixProcs.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/core/SkBitmapProcState_matrixProcs.cpp +FILE: ../../../third_party/skia/src/ports/SkFontMgr_FontConfigInterface_factory.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2008 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/core/SkDevice.h + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/core/SkDevice.h +FILE: ../../../third_party/skia/src/core/SkScalar.cpp +FILE: ../../../third_party/skia/src/core/SkTextFormatParams.h +FILE: ../../../third_party/skia/src/images/SkJPEGWriteUtility.cpp +FILE: ../../../third_party/skia/src/images/SkJPEGWriteUtility.h +FILE: ../../../third_party/skia/src/pdf/SkDeflate.cpp +FILE: ../../../third_party/skia/src/pdf/SkDeflate.h +FILE: ../../../third_party/skia/src/pdf/SkPDFFormXObject.cpp +FILE: ../../../third_party/skia/src/pdf/SkPDFFormXObject.h +FILE: ../../../third_party/skia/src/pdf/SkPDFGraphicState.h +FILE: ../../../third_party/skia/src/pdf/SkPDFTypes.h +---------------------------------------------------------------------------------------------------- +Copyright 2010 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/core/SkFlattenablePriv.h + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/core/SkFlattenablePriv.h +FILE: ../../../third_party/skia/src/core/SkGlyphRun.cpp +FILE: ../../../third_party/skia/src/core/SkGlyphRun.h +FILE: ../../../third_party/skia/src/core/SkGlyphRunPainter.cpp +FILE: ../../../third_party/skia/src/core/SkGlyphRunPainter.h +---------------------------------------------------------------------------------------------------- +Copyright 2018 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/core/SkMatrixImageFilter.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/core/SkMatrixImageFilter.cpp +FILE: ../../../third_party/skia/src/core/SkMatrixImageFilter.h +FILE: ../../../third_party/skia/src/opts/SkColor_opts_SSE2.h +---------------------------------------------------------------------------------------------------- +Copyright 2014 The Android Open Source Project + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/core/SkTraceEvent.h + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/core/SkTraceEvent.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2014 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/gpu/GrDistanceFieldGenFromVector.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/gpu/GrDistanceFieldGenFromVector.cpp +FILE: ../../../third_party/skia/src/gpu/GrDistanceFieldGenFromVector.h +---------------------------------------------------------------------------------------------------- +Copyright 2017 ARM Ltd. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/gpu/ops/GrSmallPathRenderer.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/gpu/ops/GrSmallPathRenderer.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2014 Google Inc. +Copyright 2017 ARM Ltd. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/opts/SkBitmapProcState_matrixProcs_neon.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_matrixProcs_neon.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2009 Motorola + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/ports/SkFontConfigInterface_direct.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/ports/SkFontConfigInterface_direct.cpp +FILE: ../../../third_party/skia/src/ports/SkFontConfigInterface_direct.h +FILE: ../../../third_party/skia/src/ports/SkFontConfigInterface_direct_factory.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2009-2015 Google Inc. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/ports/SkFontHost_FreeType_common.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/ports/SkFontHost_FreeType_common.cpp +FILE: ../../../third_party/skia/src/ports/SkFontHost_FreeType_common.h +---------------------------------------------------------------------------------------------------- +Copyright 2006-2012 The Android Open Source Project +Copyright 2012 Mozilla Foundation + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/ports/SkMemory_mozalloc.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/ports/SkMemory_mozalloc.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2011 Google Inc. +Copyright 2012 Mozilla Foundation + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/sksl/GLSL.std.450.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/skia/src/sksl/GLSL.std.450.h +FILE: ../../../third_party/skia/src/sksl/spirv.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2014-2016 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and/or associated documentation files (the "Materials"), +to deal in the Materials without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Materials, and to permit persons to whom the +Materials are furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Materials. +==================================================================================================== + +==================================================================================================== +LIBRARY: skia +ORIGIN: ../../../third_party/skia/src/utils/SkUTF.cpp + ../../../third_party/skia/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/skia/src/utils/SkUTF.cpp +FILE: ../../../third_party/skia/src/utils/SkUTF.h +---------------------------------------------------------------------------------------------------- +Copyright 2018 Google LLC. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: vulkanmemoryallocator +ORIGIN: ../../../third_party/skia/third_party/vulkanmemoryallocator/include/LICENSE.txt +TYPE: LicenseType.mit +FILE: ../../../third_party/skia/third_party/vulkanmemoryallocator/include/vk_mem_alloc.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2017-2018 Advanced Micro Devices, Inc. All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== +Total license count: 54 diff --git a/travis/licenses_golden/licenses_third_party b/ci/licenses_golden/licenses_third_party similarity index 70% rename from travis/licenses_golden/licenses_third_party rename to ci/licenses_golden/licenses_third_party index 61e303baf6ced..ba70e444fdc73 100644 --- a/travis/licenses_golden/licenses_third_party +++ b/ci/licenses_golden/licenses_third_party @@ -1,12 +1,12 @@ -Signature: a3593f9d3adf185eaa6a15b0f50df584 +Signature: fbcaf0eca04aa4bfacf6dcc71a919be3 UNUSED LICENSES: ==================================================================================================== -ORIGIN: ../../../flutter/sky/engine/wtf/dtoa/LICENSE +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_internal/LICENSE TYPE: LicenseType.bsd ---------------------------------------------------------------------------------------------------- -Copyright 2006-2011, the V8 project authors. All rights reserved. +Copyright 2017, the Dart project authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -71,103 +71,12 @@ The above copyright notice and this permission notice shall be included in all c THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ==================================================================================================== - -==================================================================================================== -ORIGIN: ../../../third_party/skia/third_party/gif/LICENSE -TYPE: LicenseType.unknown ----------------------------------------------------------------------------------------------------- -Version: MPL 1.1/GPL 2.0/LGPL 2.1 - -The contents of this file are subject to the Mozilla Public License Version -1.1 (the "License"); you may not use this file except in compliance with -the License. You may obtain a copy of the License at -http://www.mozilla.org/MPL - -Software distributed under the License is distributed on an "AS IS" basis, -WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -for the specific language governing rights and limitations under the -License. - -The Original Code is mozilla.org code. - -The Initial Developer of the Original Code is -Netscape Communications Corporation. -Portions created by the Initial Developer are Copyright (C) 1998 -the Initial Developer. All Rights Reserved. - -Contributor(s): - Chris Saari - Apple Computer - -Alternatively, the contents of this file may be used under the terms of -either the GNU General Public License Version 2 or later (the "GPL"), or -the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -in which case the provisions of the GPL or the LGPL are applicable instead -of those above. If you wish to allow use of your version of this file only -under the terms of either the GPL or the LGPL, and not to allow others to -use your version of this file under the terms of the MPL, indicate your -decision by deleting the provisions above and replace them with the notice -and other provisions required by the GPL or the LGPL. If you do not delete -the provisions above, a recipient may use your version of this file under -the terms of any one of the MPL, the GPL or the LGPL. -==================================================================================================== ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ USED LICENSES: ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha256-armv8.S + ../../../third_party/boringssl/src/LICENSE -TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha256-armv8.S -FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha512-armv8.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/sha256-armv8.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/sha512-armv8.S ----------------------------------------------------------------------------------------------------- -Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html -==================================================================================================== - -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/aes-armv4.S + ../../../third_party/boringssl/src/LICENSE -TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/aes-armv4.S -FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha256-armv4.S -FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha512-armv4.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/aes-armv4.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha256-armv4.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha512-armv4.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/sha/sha256-armv4.S ----------------------------------------------------------------------------------------------------- -Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html -==================================================================================================== - -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/bsaes-armv7.S + ../../../third_party/boringssl/src/LICENSE -TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/bsaes-armv7.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/bsaes-armv7.S ----------------------------------------------------------------------------------------------------- -Copyright 2012-2016 The OpenSSL Project Authors. All Rights Reserved. - -Licensed under the OpenSSL license (the "License"). You may not use -this file except in compliance with the License. You can obtain a copy -in the file LICENSE in the source distribution or at -https://www.openssl.org/source/license.html -==================================================================================================== - -==================================================================================================== -LIBRARY: boringssl +LIBRARY: dart ORIGIN: ../../../third_party/boringssl/src/LICENSE TYPE: LicenseType.openssl FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha256-armv8.S @@ -186,9 +95,6 @@ FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha256-armv4.S FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha256-armv4.S FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha512-armv4.S FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha512-armv4.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/sha/sha256-armv4.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/sha/sha256-armv4.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/sha/sha512-armv4.S FILE: ../../../third_party/boringssl/src/crypto/err/asn1.errordata FILE: ../../../third_party/boringssl/src/crypto/err/bio.errordata FILE: ../../../third_party/boringssl/src/crypto/err/bn.errordata @@ -243,6 +149,7 @@ FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCryp FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/policydocs/BoringCrypto-Security-Policy-20170615.docx!/word/webSettings.xml FILE: ../../../third_party/boringssl/src/crypto/obj/obj_mac.num FILE: ../../../third_party/boringssl/src/crypto/poly1305/poly1305_arm_asm.S +FILE: ../../../third_party/boringssl/src/crypto/rsa_extra/print.c FILE: ../../../third_party/boringssl/src/crypto/x509/charmap.h FILE: ../../../third_party/boringssl/src/crypto/x509/many_constraints.pem FILE: ../../../third_party/boringssl/src/crypto/x509/many_names1.pem @@ -251,6 +158,7 @@ FILE: ../../../third_party/boringssl/src/crypto/x509/many_names3.pem FILE: ../../../third_party/boringssl/src/crypto/x509/some_names1.pem FILE: ../../../third_party/boringssl/src/crypto/x509/some_names2.pem FILE: ../../../third_party/boringssl/src/crypto/x509/some_names3.pem +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_ocsp.c FILE: ../../../third_party/boringssl/src/fipstools/run_cavp.go FILE: ../../../third_party/boringssl/src/infra/config/cq.cfg FILE: ../../../third_party/boringssl/src/ssl/bio_ssl.cc @@ -286,6 +194,7 @@ FILE: ../../../third_party/boringssl/src/util/fipstools/testdata/x86_64-LabelRew FILE: ../../../third_party/boringssl/src/util/fipstools/testdata/x86_64-LabelRewrite/out.s FILE: ../../../third_party/boringssl/src/util/fipstools/testdata/x86_64-Sections/in.s FILE: ../../../third_party/boringssl/src/util/fipstools/testdata/x86_64-Sections/out.s +FILE: ../../../third_party/dart/runtime/lib/bigint_patch.dart ---------------------------------------------------------------------------------------------------- OpenSSL License @@ -437,761 +346,699 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Licenses for support code + +Parts of the TLS test suite are under the Go license. This code is not included +in BoringSSL (i.e. libcrypto and libssl) when compiled, however, so +distributing code linked against BoringSSL does not trigger this license: + +Copyright (c) 2009 The Go Authors. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_bitstr.c -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_bitstr.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_bool.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_d2i_fp.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_dup.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_enum.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_gentm.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_i2d_fp.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_int.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_mbstr.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_object.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_octet.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_print.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_strnid.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_time.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_type.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_utctm.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/a_utf8.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/asn1_lib.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/asn1_par.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/asn_pack.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/f_enum.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/f_int.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/f_string.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_dec.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_enc.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_fre.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_new.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_typ.c -FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_utl.c -FILE: ../../../third_party/boringssl/src/crypto/base64/base64.c -FILE: ../../../third_party/boringssl/src/crypto/bio/bio.c -FILE: ../../../third_party/boringssl/src/crypto/bio/bio_mem.c -FILE: ../../../third_party/boringssl/src/crypto/bio/connect.c -FILE: ../../../third_party/boringssl/src/crypto/bio/fd.c -FILE: ../../../third_party/boringssl/src/crypto/bio/file.c -FILE: ../../../third_party/boringssl/src/crypto/bio/hexdump.c -FILE: ../../../third_party/boringssl/src/crypto/bio/internal.h -FILE: ../../../third_party/boringssl/src/crypto/bio/printf.c -FILE: ../../../third_party/boringssl/src/crypto/bio/socket.c -FILE: ../../../third_party/boringssl/src/crypto/bn_extra/convert.c -FILE: ../../../third_party/boringssl/src/crypto/buf/buf.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/cipher_extra.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/derive_key.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_null.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_rc2.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_rc4.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/internal.h -FILE: ../../../third_party/boringssl/src/crypto/conf/conf.c -FILE: ../../../third_party/boringssl/src/crypto/conf/conf_def.h -FILE: ../../../third_party/boringssl/src/crypto/cpu-intel.c -FILE: ../../../third_party/boringssl/src/crypto/dh/check.c -FILE: ../../../third_party/boringssl/src/crypto/dh/dh.c -FILE: ../../../third_party/boringssl/src/crypto/dh/dh_test.cc -FILE: ../../../third_party/boringssl/src/crypto/digest_extra/digest_extra.c -FILE: ../../../third_party/boringssl/src/crypto/dsa/dsa.c -FILE: ../../../third_party/boringssl/src/crypto/dsa/dsa_test.cc -FILE: ../../../third_party/boringssl/src/crypto/err/err.c -FILE: ../../../third_party/boringssl/src/crypto/evp/evp.c -FILE: ../../../third_party/boringssl/src/crypto/evp/evp_asn1.c -FILE: ../../../third_party/boringssl/src/crypto/evp/evp_ctx.c -FILE: ../../../third_party/boringssl/src/crypto/evp/internal.h -FILE: ../../../third_party/boringssl/src/crypto/evp/sign.c -FILE: ../../../third_party/boringssl/src/crypto/ex_data.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/add.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bn.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bn_test.cc -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bytes.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/cmp.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/div.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/exponentiation.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/gcd.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/generic.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/montgomery.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/mul.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/prime.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/random.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/shift.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/cipher.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/e_des.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/internal.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/des/des.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/des/internal.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/digest.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/digests.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/internal.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/hmac/hmac.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/md4/md4.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/md5/md5.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/internal.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/rsa.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/rsa_impl.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha1-altivec.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha1.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha256.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha512.c -FILE: ../../../third_party/boringssl/src/crypto/hmac_extra/hmac_test.cc -FILE: ../../../third_party/boringssl/src/crypto/internal.h -FILE: ../../../third_party/boringssl/src/crypto/lhash/lhash.c -FILE: ../../../third_party/boringssl/src/crypto/mem.c -FILE: ../../../third_party/boringssl/src/crypto/obj/obj.c -FILE: ../../../third_party/boringssl/src/crypto/obj/obj_xref.c -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_all.c -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_info.c -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_lib.c -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_oth.c -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_pk8.c -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_pkey.c -FILE: ../../../third_party/boringssl/src/crypto/rc4/rc4.c -FILE: ../../../third_party/boringssl/src/crypto/rsa_extra/rsa_test.cc -FILE: ../../../third_party/boringssl/src/crypto/stack/stack.c -FILE: ../../../third_party/boringssl/src/crypto/thread.c -FILE: ../../../third_party/boringssl/src/crypto/x509/a_digest.c -FILE: ../../../third_party/boringssl/src/crypto/x509/a_sign.c -FILE: ../../../third_party/boringssl/src/crypto/x509/a_strex.c -FILE: ../../../third_party/boringssl/src/crypto/x509/a_verify.c -FILE: ../../../third_party/boringssl/src/crypto/x509/algorithm.c -FILE: ../../../third_party/boringssl/src/crypto/x509/asn1_gen.c -FILE: ../../../third_party/boringssl/src/crypto/x509/by_dir.c -FILE: ../../../third_party/boringssl/src/crypto/x509/by_file.c -FILE: ../../../third_party/boringssl/src/crypto/x509/i2d_pr.c -FILE: ../../../third_party/boringssl/src/crypto/x509/t_crl.c -FILE: ../../../third_party/boringssl/src/crypto/x509/t_req.c -FILE: ../../../third_party/boringssl/src/crypto/x509/t_x509.c -FILE: ../../../third_party/boringssl/src/crypto/x509/t_x509a.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_att.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_cmp.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_d2.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_def.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_ext.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_lu.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_obj.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_r2x.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_req.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_set.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_txt.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_v3.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_vfy.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509name.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509rset.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_all.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_attrib.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_crl.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_exten.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_info.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_name.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_pkey.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_pubkey.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_req.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_sig.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_spki.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_val.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x_x509.c -FILE: ../../../third_party/boringssl/src/decrepit/bio/base64_bio.c -FILE: ../../../third_party/boringssl/src/decrepit/blowfish/blowfish.c -FILE: ../../../third_party/boringssl/src/decrepit/cast/cast.c -FILE: ../../../third_party/boringssl/src/decrepit/cast/cast_tables.c -FILE: ../../../third_party/boringssl/src/decrepit/cast/internal.h -FILE: ../../../third_party/boringssl/src/decrepit/des/cfb64ede.c -FILE: ../../../third_party/boringssl/src/decrepit/macros.h -FILE: ../../../third_party/boringssl/src/decrepit/rc4/rc4_decrepit.c -FILE: ../../../third_party/boringssl/src/decrepit/ripemd/internal.h -FILE: ../../../third_party/boringssl/src/decrepit/ripemd/ripemd.c -FILE: ../../../third_party/boringssl/src/decrepit/rsa/rsa_decrepit.c -FILE: ../../../third_party/boringssl/src/decrepit/ssl/ssl_decrepit.c -FILE: ../../../third_party/boringssl/src/include/openssl/asn1.h -FILE: ../../../third_party/boringssl/src/include/openssl/base64.h -FILE: ../../../third_party/boringssl/src/include/openssl/bio.h -FILE: ../../../third_party/boringssl/src/include/openssl/blowfish.h -FILE: ../../../third_party/boringssl/src/include/openssl/buf.h -FILE: ../../../third_party/boringssl/src/include/openssl/cast.h -FILE: ../../../third_party/boringssl/src/include/openssl/cipher.h -FILE: ../../../third_party/boringssl/src/include/openssl/conf.h -FILE: ../../../third_party/boringssl/src/include/openssl/cpu.h -FILE: ../../../third_party/boringssl/src/include/openssl/des.h -FILE: ../../../third_party/boringssl/src/include/openssl/dh.h -FILE: ../../../third_party/boringssl/src/include/openssl/digest.h -FILE: ../../../third_party/boringssl/src/include/openssl/dsa.h -FILE: ../../../third_party/boringssl/src/include/openssl/err.h -FILE: ../../../third_party/boringssl/src/include/openssl/evp.h -FILE: ../../../third_party/boringssl/src/include/openssl/ex_data.h -FILE: ../../../third_party/boringssl/src/include/openssl/hmac.h -FILE: ../../../third_party/boringssl/src/include/openssl/lhash.h -FILE: ../../../third_party/boringssl/src/include/openssl/md4.h -FILE: ../../../third_party/boringssl/src/include/openssl/md5.h -FILE: ../../../third_party/boringssl/src/include/openssl/mem.h -FILE: ../../../third_party/boringssl/src/include/openssl/obj.h -FILE: ../../../third_party/boringssl/src/include/openssl/rc4.h -FILE: ../../../third_party/boringssl/src/include/openssl/ripemd.h -FILE: ../../../third_party/boringssl/src/include/openssl/rsa.h -FILE: ../../../third_party/boringssl/src/include/openssl/sha.h -FILE: ../../../third_party/boringssl/src/include/openssl/ssl.h -FILE: ../../../third_party/boringssl/src/include/openssl/ssl3.h -FILE: ../../../third_party/boringssl/src/include/openssl/stack.h -FILE: ../../../third_party/boringssl/src/include/openssl/thread.h -FILE: ../../../third_party/boringssl/src/include/openssl/tls1.h -FILE: ../../../third_party/boringssl/src/include/openssl/type_check.h -FILE: ../../../third_party/boringssl/src/include/openssl/x509.h -FILE: ../../../third_party/boringssl/src/include/openssl/x509_vfy.h -FILE: ../../../third_party/boringssl/src/ssl/d1_srtp.cc -FILE: ../../../third_party/boringssl/src/ssl/handshake.cc -FILE: ../../../third_party/boringssl/src/ssl/handshake_client.cc -FILE: ../../../third_party/boringssl/src/ssl/handshake_server.cc -FILE: ../../../third_party/boringssl/src/ssl/internal.h -FILE: ../../../third_party/boringssl/src/ssl/s3_both.cc -FILE: ../../../third_party/boringssl/src/ssl/s3_lib.cc -FILE: ../../../third_party/boringssl/src/ssl/s3_pkt.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_asn1.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_cert.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_cipher.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_file.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_lib.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_privkey.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_session.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_stat.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_transcript.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_x509.cc -FILE: ../../../third_party/boringssl/src/ssl/t1_enc.cc -FILE: ../../../third_party/boringssl/src/ssl/t1_lib.cc -FILE: ../../../third_party/boringssl/src/ssl/tls_method.cc -FILE: ../../../third_party/boringssl/src/ssl/tls_record.cc +LIBRARY: observatory_pub_packages +LIBRARY: vulkan +ORIGIN: ../../../flutter/third_party/txt/LICENSE +TYPE: LicenseType.apache +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/METADATA +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_cbc_pkcs5_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_cmac_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_eax_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_gcm_siv_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_gcm_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/aes_siv_cmac_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/chacha20_poly1305_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/dsa_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdh_webcrypto_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP224r1_sha224_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP256r1_sha256_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP320r1_sha384_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP384r1_sha384_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_brainpoolP512r1_sha512_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha224_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp224r1_sha256_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256k1_sha256_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp256r1_sha256_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha384_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp384r1_sha512_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_secp521r1_sha512_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/ecdsa_webcrypto_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/eddsa_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/kw_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/kwp_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/rsa_signature_test.json +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/x25519_test.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/async.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/cache.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/check.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/collection.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/core.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/io.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/iterables.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/mirrors.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/pattern.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/collect.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/concat.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/countdown_timer.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/enumerate.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/future_stream.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/iteration.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/metronome.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/stream_buffer.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/stream_router.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/cache/cache.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/cache/map_cache.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/bimap.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/delegates/iterable.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/delegates/list.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/delegates/map.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/delegates/queue.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/delegates/set.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/lru_map.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/multimap.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/treeset.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/core/hash.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/core/optional.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/concat.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/count.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/cycle.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/enumerate.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/generating_iterable.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/infinite_iterable.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/merge.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/min_max.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/partition.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/range.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/zip.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/pattern/glob.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/time/clock.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/time/duration_unit_constants.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/time/util.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/strings.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/time.dart +FILE: ../../../third_party/vulkan/src/vulkan/vk_platform.h +FILE: ../../../third_party/vulkan/src/vulkan/vulkan.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) -All rights reserved. - -This package is an SSL implementation written -by Eric Young (eay@cryptsoft.com). -The implementation was written so as to conform with Netscapes SSL. +Apache License +Version 2.0, January 2004 +http://www.apache.org/licenses -This library is free for commercial and non-commercial use as long as -the following conditions are aheared to. The following conditions -apply to all code found in this distribution, be it the RC4, RSA, -lhash, DES, etc., code; not just the SSL code. The SSL documentation -included with this distribution is covered by the same copyright terms -except that the holder is Tim Hudson (tjh@cryptsoft.com). +TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -Copyright remains Eric Young's, and as such any Copyright notices in -the code are not to be removed. -If this package is used in a product, Eric Young should be given attribution -as the author of the parts of the library used. -This can be in the form of a textual message at program startup or -in documentation (online or textual) provided with the package. +1. Definitions. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - "This product includes cryptographic software written by - Eric Young (eay@cryptsoft.com)" - The word 'cryptographic' can be left out if the rouines from the library - being used are not cryptographic related :-). -4. If you include any Windows specific code (or a derivative thereof) from - the apps directory (application code) you must include an acknowledgement: - "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. -THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. -The licence and distribution terms for any publically available version or -derivative of this code cannot be changed. i.e. this code cannot simply be -copied and put under another distribution licence -[including the GNU Public Licence.] -==================================================================================================== + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/asn1_locl.h -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/asn1/asn1_locl.h -FILE: ../../../third_party/boringssl/src/crypto/evp/p_dsa_asn1.c -FILE: ../../../third_party/boringssl/src/crypto/evp/p_ec.c -FILE: ../../../third_party/boringssl/src/crypto/evp/p_ec_asn1.c -FILE: ../../../third_party/boringssl/src/crypto/evp/p_rsa.c -FILE: ../../../third_party/boringssl/src/crypto/evp/p_rsa_asn1.c -FILE: ../../../third_party/boringssl/src/crypto/evp/print.c -FILE: ../../../third_party/boringssl/src/crypto/x509/rsa_pss.c ----------------------------------------------------------------------------------------------------- -Copyright (c) 2006 The OpenSSL Project. All rights reserved. + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/asn1_test.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/src/crypto/asn1/asn1_test.cc -FILE: ../../../third_party/boringssl/src/crypto/bytestring/asn1_compat.c -FILE: ../../../third_party/boringssl/src/crypto/chacha/chacha_test.cc -FILE: ../../../third_party/boringssl/src/crypto/cpu-aarch64-linux.c -FILE: ../../../third_party/boringssl/src/crypto/cpu-arm-linux.c -FILE: ../../../third_party/boringssl/src/crypto/cpu-ppc64le.c -FILE: ../../../third_party/boringssl/src/crypto/curve25519/spake25519.c -FILE: ../../../third_party/boringssl/src/crypto/curve25519/spake25519_test.cc -FILE: ../../../third_party/boringssl/src/crypto/ecdh/ecdh_test.cc -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/check_bn_tests.go -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64_test.cc -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/polyval.c -FILE: ../../../third_party/boringssl/src/crypto/obj/obj_test.cc -FILE: ../../../third_party/boringssl/src/crypto/obj/objects.go -FILE: ../../../third_party/boringssl/src/crypto/poly1305/internal.h -FILE: ../../../third_party/boringssl/src/crypto/pool/internal.h -FILE: ../../../third_party/boringssl/src/crypto/pool/pool.c -FILE: ../../../third_party/boringssl/src/crypto/pool/pool_test.cc -FILE: ../../../third_party/boringssl/src/crypto/rand_extra/deterministic.c -FILE: ../../../third_party/boringssl/src/crypto/x509/internal.h -FILE: ../../../third_party/boringssl/src/crypto/x509/x509_test.cc -FILE: ../../../third_party/boringssl/src/decrepit/evp/dss1.c -FILE: ../../../third_party/boringssl/src/decrepit/evp/evp_do_all.c -FILE: ../../../third_party/boringssl/src/decrepit/obj/obj_decrepit.c -FILE: ../../../third_party/boringssl/src/decrepit/ripemd/ripemd_test.cc -FILE: ../../../third_party/boringssl/src/decrepit/x509/x509_decrepit.c -FILE: ../../../third_party/boringssl/src/include/openssl/asn1_mac.h -FILE: ../../../third_party/boringssl/src/include/openssl/obj_mac.h -FILE: ../../../third_party/boringssl/src/include/openssl/pool.h -FILE: ../../../third_party/boringssl/src/ssl/tls13_both.cc -FILE: ../../../third_party/boringssl/src/ssl/tls13_client.cc -FILE: ../../../third_party/boringssl/src/ssl/tls13_enc.cc -FILE: ../../../third_party/boringssl/src/ssl/tls13_server.cc -FILE: ../../../third_party/boringssl/src/util/BUILD.toplevel -FILE: ../../../third_party/boringssl/src/util/diff_asm.go -FILE: ../../../third_party/boringssl/src/util/run_android_tests.go ----------------------------------------------------------------------------------------------------- -Copyright (c) 2016, Google Inc. +4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -==================================================================================================== + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/time_support.c -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/asn1/time_support.c -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_x509.c -FILE: ../../../third_party/boringssl/src/crypto/pem/pem_xaux.c -FILE: ../../../third_party/boringssl/src/crypto/x509/x509cset.c ----------------------------------------------------------------------------------------------------- -Copyright (c) 2001 The OpenSSL Project. All rights reserved. + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" +6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - licensing@OpenSSL.org. +7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. +8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" +9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +END OF TERMS AND CONDITIONS + +APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + +Copyright [yyyy] [name of copyright owner] + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. ==================================================================================================== ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/base64/base64_test.cc +ORIGIN: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha256-armv8.S + ../../../third_party/boringssl/src/LICENSE TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/src/crypto/base64/base64_test.cc -FILE: ../../../third_party/boringssl/src/crypto/bio/bio_test.cc -FILE: ../../../third_party/boringssl/src/crypto/bio/socket_helper.c -FILE: ../../../third_party/boringssl/src/crypto/bytestring/ber.c -FILE: ../../../third_party/boringssl/src/crypto/bytestring/bytestring_test.cc -FILE: ../../../third_party/boringssl/src/crypto/bytestring/cbb.c -FILE: ../../../third_party/boringssl/src/crypto/bytestring/cbs.c -FILE: ../../../third_party/boringssl/src/crypto/bytestring/internal.h -FILE: ../../../third_party/boringssl/src/crypto/chacha/chacha.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/aead_test.cc -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_chacha20poly1305.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_ssl3.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_tls.c -FILE: ../../../third_party/boringssl/src/crypto/cpu-arm.c -FILE: ../../../third_party/boringssl/src/crypto/crypto.c -FILE: ../../../third_party/boringssl/src/crypto/digest_extra/digest_test.cc -FILE: ../../../third_party/boringssl/src/crypto/engine/engine.c -FILE: ../../../third_party/boringssl/src/crypto/err/err_test.cc -FILE: ../../../third_party/boringssl/src/crypto/evp/evp_extra_test.cc -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/aead.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec_test.cc -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/rand.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/urandom.c -FILE: ../../../third_party/boringssl/src/crypto/hkdf/hkdf.c -FILE: ../../../third_party/boringssl/src/crypto/hkdf/hkdf_test.cc -FILE: ../../../third_party/boringssl/src/crypto/lhash/lhash_test.cc -FILE: ../../../third_party/boringssl/src/crypto/pkcs7/pkcs7.c -FILE: ../../../third_party/boringssl/src/crypto/pkcs7/pkcs7_test.cc -FILE: ../../../third_party/boringssl/src/crypto/pkcs8/pkcs12_test.cc -FILE: ../../../third_party/boringssl/src/crypto/poly1305/poly1305.c -FILE: ../../../third_party/boringssl/src/crypto/poly1305/poly1305_arm.c -FILE: ../../../third_party/boringssl/src/crypto/poly1305/poly1305_vec.c -FILE: ../../../third_party/boringssl/src/crypto/rand_extra/windows.c -FILE: ../../../third_party/boringssl/src/include/openssl/aead.h -FILE: ../../../third_party/boringssl/src/include/openssl/bytestring.h -FILE: ../../../third_party/boringssl/src/include/openssl/chacha.h -FILE: ../../../third_party/boringssl/src/include/openssl/crypto.h -FILE: ../../../third_party/boringssl/src/include/openssl/engine.h -FILE: ../../../third_party/boringssl/src/include/openssl/hkdf.h -FILE: ../../../third_party/boringssl/src/include/openssl/lhash_macros.h -FILE: ../../../third_party/boringssl/src/include/openssl/objects.h -FILE: ../../../third_party/boringssl/src/include/openssl/opensslconf.h -FILE: ../../../third_party/boringssl/src/include/openssl/opensslv.h -FILE: ../../../third_party/boringssl/src/include/openssl/ossl_typ.h -FILE: ../../../third_party/boringssl/src/include/openssl/pkcs12.h -FILE: ../../../third_party/boringssl/src/include/openssl/pkcs7.h -FILE: ../../../third_party/boringssl/src/include/openssl/poly1305.h -FILE: ../../../third_party/boringssl/src/include/openssl/rand.h -FILE: ../../../third_party/boringssl/src/include/openssl/safestack.h -FILE: ../../../third_party/boringssl/src/ssl/custom_extensions.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_test.cc -FILE: ../../../third_party/boringssl/src/tool/args.cc -FILE: ../../../third_party/boringssl/src/tool/client.cc -FILE: ../../../third_party/boringssl/src/tool/const.cc -FILE: ../../../third_party/boringssl/src/tool/digest.cc -FILE: ../../../third_party/boringssl/src/tool/internal.h -FILE: ../../../third_party/boringssl/src/tool/pkcs12.cc -FILE: ../../../third_party/boringssl/src/tool/server.cc -FILE: ../../../third_party/boringssl/src/tool/speed.cc -FILE: ../../../third_party/boringssl/src/tool/tool.cc -FILE: ../../../third_party/boringssl/src/tool/transport_common.cc -FILE: ../../../third_party/boringssl/src/tool/transport_common.h -FILE: ../../../third_party/boringssl/src/util/make_errors.go ----------------------------------------------------------------------------------------------------- -Copyright (c) 2014, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/bio/pair.c -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/bio/pair.c +FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha256-armv8.S +FILE: ../../../third_party/boringssl/ios-aarch64/crypto/fipsmodule/sha512-armv8.S +FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/sha256-armv8.S +FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/sha512-armv8.S ---------------------------------------------------------------------------------------------------- -Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - endorse or promote products derived from this software without - prior written permission. For written permission, please contact - openssl-core@openssl.org. - -5. Products derived from this software may not be called "OpenSSL" - nor may "OpenSSL" appear in their names without prior written - permission of the OpenSSL Project. - -6. Redistributions of any form whatsoever must retain the following - acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" +Copyright 2014-2016 The OpenSSL Project Authors. All Rights Reserved. -THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY -EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR -ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html ==================================================================================================== ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/bn_extra/bn_asn1.c +ORIGIN: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/aes-armv4.S + ../../../third_party/boringssl/src/LICENSE TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/err_data.c -FILE: ../../../third_party/boringssl/src/crypto/bn_extra/bn_asn1.c -FILE: ../../../third_party/boringssl/src/crypto/cmac/cmac_test.cc -FILE: ../../../third_party/boringssl/src/crypto/conf/internal.h -FILE: ../../../third_party/boringssl/src/crypto/curve25519/asm/x25519-asm-arm.S -FILE: ../../../third_party/boringssl/src/crypto/curve25519/ed25519_test.cc -FILE: ../../../third_party/boringssl/src/crypto/curve25519/x25519_test.cc -FILE: ../../../third_party/boringssl/src/crypto/err/err_data_generate.go -FILE: ../../../third_party/boringssl/src/crypto/evp/pbkdf_test.cc -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/aes_test.cc -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p224-64.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/util.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/internal.h -FILE: ../../../third_party/boringssl/src/crypto/pkcs8/pkcs8_test.cc -FILE: ../../../third_party/boringssl/src/crypto/poly1305/poly1305_test.cc -FILE: ../../../third_party/boringssl/src/crypto/refcount_c11.c -FILE: ../../../third_party/boringssl/src/crypto/refcount_lock.c -FILE: ../../../third_party/boringssl/src/crypto/refcount_test.cc -FILE: ../../../third_party/boringssl/src/crypto/thread_none.c -FILE: ../../../third_party/boringssl/src/crypto/thread_pthread.c -FILE: ../../../third_party/boringssl/src/crypto/thread_test.cc -FILE: ../../../third_party/boringssl/src/crypto/thread_win.c -FILE: ../../../third_party/boringssl/src/include/openssl/buffer.h -FILE: ../../../third_party/boringssl/src/include/openssl/cmac.h -FILE: ../../../third_party/boringssl/src/include/openssl/curve25519.h -FILE: ../../../third_party/boringssl/src/include/openssl/dtls1.h -FILE: ../../../third_party/boringssl/src/include/openssl/srtp.h -FILE: ../../../third_party/boringssl/src/ssl/ssl_aead_ctx.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_buffer.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_key_share.cc -FILE: ../../../third_party/boringssl/src/tool/ciphers.cc -FILE: ../../../third_party/boringssl/src/tool/generate_ed25519.cc -FILE: ../../../third_party/boringssl/src/tool/genrsa.cc -FILE: ../../../third_party/boringssl/src/tool/rand.cc -FILE: ../../../third_party/boringssl/src/util/all_tests.go -FILE: ../../../third_party/boringssl/src/util/bot/DEPS +FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/aes-armv4.S +FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha256-armv4.S +FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha512-armv4.S +FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/aes-armv4.S +FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha256-armv4.S +FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha512-armv4.S ---------------------------------------------------------------------------------------------------- -Copyright (c) 2015, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. +Copyright 2007-2016 The OpenSSL Project Authors. All Rights Reserved. -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html ==================================================================================================== ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/buf/buf_test.cc +ORIGIN: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/bsaes-armv7.S + ../../../third_party/boringssl/src/LICENSE TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/src/crypto/buf/buf_test.cc -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_aesctrhmac.c -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_aesgcmsiv.c -FILE: ../../../third_party/boringssl/src/crypto/compiler_test.cc -FILE: ../../../third_party/boringssl/src/crypto/err/internal.h -FILE: ../../../third_party/boringssl/src/crypto/evp/p_ed25519.c -FILE: ../../../third_party/boringssl/src/crypto/evp/p_ed25519_asn1.c -FILE: ../../../third_party/boringssl/src/crypto/evp/scrypt_test.cc -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/internal.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bcm.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bn_test_to_fuzzer.go -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/delocate.h -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/is_fips.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/ctrdrbg.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/ctrdrbg_test.cc -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/self_check/self_check.c -FILE: ../../../third_party/boringssl/src/crypto/pkcs7/internal.h -FILE: ../../../third_party/boringssl/src/crypto/pkcs7/pkcs7_x509.c -FILE: ../../../third_party/boringssl/src/crypto/rand_extra/forkunsafe.c -FILE: ../../../third_party/boringssl/src/crypto/rand_extra/fuchsia.c -FILE: ../../../third_party/boringssl/src/crypto/rand_extra/rand_extra.c -FILE: ../../../third_party/boringssl/src/crypto/x509/make_many_constraints.go -FILE: ../../../third_party/boringssl/src/decrepit/cfb/cfb.c -FILE: ../../../third_party/boringssl/src/decrepit/cfb/cfb_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_aes_gcm_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_aes_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_ctr_drbg_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_ecdsa2_keypair_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_ecdsa2_pkv_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_ecdsa2_siggen_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_ecdsa2_sigver_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_hmac_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_keywrap_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_main.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_rsa2_keygen_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_rsa2_siggen_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_rsa2_sigver_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_sha_monte_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_sha_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_tdes_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_test_util.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_test_util.h -FILE: ../../../third_party/boringssl/src/fipstools/test_fips.c -FILE: ../../../third_party/boringssl/src/include/openssl/is_boringssl.h -FILE: ../../../third_party/boringssl/src/include/openssl/span.h -FILE: ../../../third_party/boringssl/src/ssl/span_test.cc -FILE: ../../../third_party/boringssl/src/ssl/ssl_versions.cc -FILE: ../../../third_party/boringssl/src/tool/file.cc -FILE: ../../../third_party/boringssl/src/tool/sign.cc -FILE: ../../../third_party/boringssl/src/util/check_imported_libraries.go -FILE: ../../../third_party/boringssl/src/util/convert_comments.go -FILE: ../../../third_party/boringssl/src/util/embed_test_data.go -FILE: ../../../third_party/boringssl/src/util/fipstools/ar.go -FILE: ../../../third_party/boringssl/src/util/fipstools/break-hash.go -FILE: ../../../third_party/boringssl/src/util/fipstools/const.go -FILE: ../../../third_party/boringssl/src/util/fipstools/delocate.go -FILE: ../../../third_party/boringssl/src/util/fipstools/delocate.peg -FILE: ../../../third_party/boringssl/src/util/fipstools/delocate_test.go -FILE: ../../../third_party/boringssl/src/util/fipstools/inject-hash.go +FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/bsaes-armv7.S +FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/bsaes-armv7.S ---------------------------------------------------------------------------------------------------- -Copyright (c) 2017, Google Inc. - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. +Copyright 2012-2016 The OpenSSL Project Authors. All Rights Reserved. -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY -SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION -OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html ==================================================================================================== ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/cipher_test.cc +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/a_bitstr.c TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/cipher_test.cc -FILE: ../../../third_party/boringssl/src/crypto/evp/evp_test.cc +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_bitstr.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_bool.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_d2i_fp.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_dup.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_enum.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_gentm.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_i2d_fp.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_int.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_mbstr.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_object.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_octet.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_print.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_strnid.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_time.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_type.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_utctm.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/a_utf8.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/asn1_lib.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/asn1_par.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/asn_pack.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/f_enum.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/f_int.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/f_string.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_dec.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_enc.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_fre.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_new.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_typ.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/tasn_utl.c +FILE: ../../../third_party/boringssl/src/crypto/base64/base64.c +FILE: ../../../third_party/boringssl/src/crypto/bio/bio.c +FILE: ../../../third_party/boringssl/src/crypto/bio/bio_mem.c +FILE: ../../../third_party/boringssl/src/crypto/bio/connect.c +FILE: ../../../third_party/boringssl/src/crypto/bio/fd.c +FILE: ../../../third_party/boringssl/src/crypto/bio/file.c +FILE: ../../../third_party/boringssl/src/crypto/bio/hexdump.c +FILE: ../../../third_party/boringssl/src/crypto/bio/internal.h +FILE: ../../../third_party/boringssl/src/crypto/bio/printf.c +FILE: ../../../third_party/boringssl/src/crypto/bio/socket.c +FILE: ../../../third_party/boringssl/src/crypto/bn_extra/convert.c +FILE: ../../../third_party/boringssl/src/crypto/buf/buf.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/cipher_extra.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/derive_key.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_null.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_rc2.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_rc4.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/internal.h +FILE: ../../../third_party/boringssl/src/crypto/conf/conf.c +FILE: ../../../third_party/boringssl/src/crypto/conf/conf_def.h +FILE: ../../../third_party/boringssl/src/crypto/cpu-intel.c +FILE: ../../../third_party/boringssl/src/crypto/dh/check.c +FILE: ../../../third_party/boringssl/src/crypto/dh/dh.c +FILE: ../../../third_party/boringssl/src/crypto/dh/dh_test.cc +FILE: ../../../third_party/boringssl/src/crypto/digest_extra/digest_extra.c +FILE: ../../../third_party/boringssl/src/crypto/dsa/dsa.c +FILE: ../../../third_party/boringssl/src/crypto/dsa/dsa_test.cc +FILE: ../../../third_party/boringssl/src/crypto/err/err.c +FILE: ../../../third_party/boringssl/src/crypto/evp/evp.c +FILE: ../../../third_party/boringssl/src/crypto/evp/evp_asn1.c +FILE: ../../../third_party/boringssl/src/crypto/evp/evp_ctx.c +FILE: ../../../third_party/boringssl/src/crypto/evp/internal.h +FILE: ../../../third_party/boringssl/src/crypto/evp/sign.c +FILE: ../../../third_party/boringssl/src/crypto/ex_data.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/add.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bn.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bn_test.cc +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bytes.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/cmp.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/div.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/exponentiation.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/gcd.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/generic.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/montgomery.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/mul.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/prime.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/random.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/shift.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/cipher.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/e_des.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/internal.h +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/des/des.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/des/internal.h +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/digest.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/digests.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/digest/internal.h +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/hmac/hmac.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/md4/md4.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/md5/md5.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/internal.h +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/rsa.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rsa/rsa_impl.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha1-altivec.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha1.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha256.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/sha/sha512.c +FILE: ../../../third_party/boringssl/src/crypto/hmac_extra/hmac_test.cc +FILE: ../../../third_party/boringssl/src/crypto/internal.h +FILE: ../../../third_party/boringssl/src/crypto/lhash/lhash.c +FILE: ../../../third_party/boringssl/src/crypto/mem.c +FILE: ../../../third_party/boringssl/src/crypto/obj/obj.c +FILE: ../../../third_party/boringssl/src/crypto/obj/obj_xref.c +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_all.c +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_info.c +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_lib.c +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_oth.c +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_pk8.c +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_pkey.c +FILE: ../../../third_party/boringssl/src/crypto/rc4/rc4.c +FILE: ../../../third_party/boringssl/src/crypto/rsa_extra/rsa_test.cc +FILE: ../../../third_party/boringssl/src/crypto/stack/stack.c +FILE: ../../../third_party/boringssl/src/crypto/thread.c +FILE: ../../../third_party/boringssl/src/crypto/x509/a_digest.c +FILE: ../../../third_party/boringssl/src/crypto/x509/a_sign.c +FILE: ../../../third_party/boringssl/src/crypto/x509/a_strex.c +FILE: ../../../third_party/boringssl/src/crypto/x509/a_verify.c +FILE: ../../../third_party/boringssl/src/crypto/x509/algorithm.c +FILE: ../../../third_party/boringssl/src/crypto/x509/asn1_gen.c +FILE: ../../../third_party/boringssl/src/crypto/x509/by_dir.c +FILE: ../../../third_party/boringssl/src/crypto/x509/by_file.c +FILE: ../../../third_party/boringssl/src/crypto/x509/i2d_pr.c +FILE: ../../../third_party/boringssl/src/crypto/x509/t_crl.c +FILE: ../../../third_party/boringssl/src/crypto/x509/t_req.c +FILE: ../../../third_party/boringssl/src/crypto/x509/t_x509.c +FILE: ../../../third_party/boringssl/src/crypto/x509/t_x509a.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_att.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_cmp.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_d2.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_def.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_ext.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_lu.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_obj.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_r2x.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_req.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_set.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_txt.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_v3.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_vfy.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509name.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509rset.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_all.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_attrib.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_crl.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_exten.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_info.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_name.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_pkey.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_pubkey.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_req.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_sig.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_spki.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_val.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x_x509.c +FILE: ../../../third_party/boringssl/src/decrepit/bio/base64_bio.c +FILE: ../../../third_party/boringssl/src/decrepit/blowfish/blowfish.c +FILE: ../../../third_party/boringssl/src/decrepit/cast/cast.c +FILE: ../../../third_party/boringssl/src/decrepit/cast/cast_tables.c +FILE: ../../../third_party/boringssl/src/decrepit/cast/internal.h +FILE: ../../../third_party/boringssl/src/decrepit/des/cfb64ede.c +FILE: ../../../third_party/boringssl/src/decrepit/macros.h +FILE: ../../../third_party/boringssl/src/decrepit/rc4/rc4_decrepit.c +FILE: ../../../third_party/boringssl/src/decrepit/ripemd/internal.h +FILE: ../../../third_party/boringssl/src/decrepit/ripemd/ripemd.c +FILE: ../../../third_party/boringssl/src/decrepit/rsa/rsa_decrepit.c +FILE: ../../../third_party/boringssl/src/decrepit/ssl/ssl_decrepit.c +FILE: ../../../third_party/boringssl/src/include/openssl/asn1.h +FILE: ../../../third_party/boringssl/src/include/openssl/base64.h +FILE: ../../../third_party/boringssl/src/include/openssl/bio.h +FILE: ../../../third_party/boringssl/src/include/openssl/blowfish.h +FILE: ../../../third_party/boringssl/src/include/openssl/buf.h +FILE: ../../../third_party/boringssl/src/include/openssl/cast.h +FILE: ../../../third_party/boringssl/src/include/openssl/cipher.h +FILE: ../../../third_party/boringssl/src/include/openssl/conf.h +FILE: ../../../third_party/boringssl/src/include/openssl/cpu.h +FILE: ../../../third_party/boringssl/src/include/openssl/des.h +FILE: ../../../third_party/boringssl/src/include/openssl/dh.h +FILE: ../../../third_party/boringssl/src/include/openssl/digest.h +FILE: ../../../third_party/boringssl/src/include/openssl/dsa.h +FILE: ../../../third_party/boringssl/src/include/openssl/err.h +FILE: ../../../third_party/boringssl/src/include/openssl/evp.h +FILE: ../../../third_party/boringssl/src/include/openssl/ex_data.h +FILE: ../../../third_party/boringssl/src/include/openssl/hmac.h +FILE: ../../../third_party/boringssl/src/include/openssl/lhash.h +FILE: ../../../third_party/boringssl/src/include/openssl/md4.h +FILE: ../../../third_party/boringssl/src/include/openssl/md5.h +FILE: ../../../third_party/boringssl/src/include/openssl/mem.h +FILE: ../../../third_party/boringssl/src/include/openssl/obj.h +FILE: ../../../third_party/boringssl/src/include/openssl/rc4.h +FILE: ../../../third_party/boringssl/src/include/openssl/ripemd.h +FILE: ../../../third_party/boringssl/src/include/openssl/rsa.h +FILE: ../../../third_party/boringssl/src/include/openssl/sha.h +FILE: ../../../third_party/boringssl/src/include/openssl/ssl.h +FILE: ../../../third_party/boringssl/src/include/openssl/ssl3.h +FILE: ../../../third_party/boringssl/src/include/openssl/stack.h +FILE: ../../../third_party/boringssl/src/include/openssl/thread.h +FILE: ../../../third_party/boringssl/src/include/openssl/tls1.h +FILE: ../../../third_party/boringssl/src/include/openssl/type_check.h +FILE: ../../../third_party/boringssl/src/include/openssl/x509.h +FILE: ../../../third_party/boringssl/src/include/openssl/x509_vfy.h +FILE: ../../../third_party/boringssl/src/ssl/d1_srtp.cc +FILE: ../../../third_party/boringssl/src/ssl/handshake.cc +FILE: ../../../third_party/boringssl/src/ssl/handshake_client.cc +FILE: ../../../third_party/boringssl/src/ssl/handshake_server.cc +FILE: ../../../third_party/boringssl/src/ssl/internal.h +FILE: ../../../third_party/boringssl/src/ssl/s3_both.cc +FILE: ../../../third_party/boringssl/src/ssl/s3_lib.cc +FILE: ../../../third_party/boringssl/src/ssl/s3_pkt.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_asn1.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_cert.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_cipher.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_file.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_lib.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_privkey.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_session.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_stat.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_transcript.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_x509.cc +FILE: ../../../third_party/boringssl/src/ssl/t1_enc.cc +FILE: ../../../third_party/boringssl/src/ssl/t1_lib.cc +FILE: ../../../third_party/boringssl/src/ssl/tls_method.cc +FILE: ../../../third_party/boringssl/src/ssl/tls_record.cc ---------------------------------------------------------------------------------------------------- -Copyright (c) 2015 The OpenSSL Project. All rights reserved. +Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) +All rights reserved. + +This package is an SSL implementation written +by Eric Young (eay@cryptsoft.com). +The implementation was written so as to conform with Netscapes SSL. + +This library is free for commercial and non-commercial use as long as +the following conditions are aheared to. The following conditions +apply to all code found in this distribution, be it the RC4, RSA, +lhash, DES, etc., code; not just the SSL code. The SSL documentation +included with this distribution is covered by the same copyright terms +except that the holder is Tim Hudson (tjh@cryptsoft.com). + +Copyright remains Eric Young's, and as such any Copyright notices in +the code are not to be removed. +If this package is used in a product, Eric Young should be given attribution +as the author of the parts of the library used. +This can be in the form of a textual message at program startup or +in documentation (online or textual) provided with the package. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright +1. Redistributions of source code must retain the copyright notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - -3. All advertising materials mentioning features or use of this - software must display the following acknowledgment: - "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" - -4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + "This product includes cryptographic software written by + Eric Young (eay@cryptsoft.com)" + The word 'cryptographic' can be left out if the rouines from the library + being used are not cryptographic related :-). +4. If you include any Windows specific code (or a derivative thereof) from + the apps directory (application code) you must include an acknowledgement: + "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + +THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. + +The licence and distribution terms for any publically available version or +derivative of this code cannot be changed. i.e. this code cannot simply be +copied and put under another distribution licence +[including the GNU Public Licence.] +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/asn1_locl.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/asn1/asn1_locl.h +FILE: ../../../third_party/boringssl/src/crypto/evp/p_dsa_asn1.c +FILE: ../../../third_party/boringssl/src/crypto/evp/p_ec.c +FILE: ../../../third_party/boringssl/src/crypto/evp/p_ec_asn1.c +FILE: ../../../third_party/boringssl/src/crypto/evp/p_rsa.c +FILE: ../../../third_party/boringssl/src/crypto/evp/p_rsa_asn1.c +FILE: ../../../third_party/boringssl/src/crypto/evp/print.c +FILE: ../../../third_party/boringssl/src/crypto/x509/rsa_pss.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 2006 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact licensing@OpenSSL.org. @@ -1221,17 +1068,46 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/e_aesccm.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/asn1_test.cc TYPE: LicenseType.unknown -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_aesccm.c -FILE: ../../../third_party/boringssl/src/crypto/cpu-aarch64-fuchsia.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/tls/internal.h -FILE: ../../../third_party/boringssl/src/crypto/self_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_kas_test.cc -FILE: ../../../third_party/boringssl/src/fipstools/cavp_tlskdf_test.cc -FILE: ../../../third_party/boringssl/src/ssl/handoff.cc +FILE: ../../../third_party/boringssl/src/crypto/asn1/asn1_test.cc +FILE: ../../../third_party/boringssl/src/crypto/bytestring/asn1_compat.c +FILE: ../../../third_party/boringssl/src/crypto/chacha/chacha_test.cc +FILE: ../../../third_party/boringssl/src/crypto/cpu-aarch64-linux.c +FILE: ../../../third_party/boringssl/src/crypto/cpu-arm-linux.c +FILE: ../../../third_party/boringssl/src/crypto/cpu-ppc64le.c +FILE: ../../../third_party/boringssl/src/crypto/curve25519/spake25519.c +FILE: ../../../third_party/boringssl/src/crypto/curve25519/spake25519_test.cc +FILE: ../../../third_party/boringssl/src/crypto/ecdh/ecdh_test.cc +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/check_bn_tests.go +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p256-x86_64_test.cc +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/modes/polyval.c +FILE: ../../../third_party/boringssl/src/crypto/obj/obj_test.cc +FILE: ../../../third_party/boringssl/src/crypto/obj/objects.go +FILE: ../../../third_party/boringssl/src/crypto/poly1305/internal.h +FILE: ../../../third_party/boringssl/src/crypto/pool/internal.h +FILE: ../../../third_party/boringssl/src/crypto/pool/pool.c +FILE: ../../../third_party/boringssl/src/crypto/pool/pool_test.cc +FILE: ../../../third_party/boringssl/src/crypto/rand_extra/deterministic.c +FILE: ../../../third_party/boringssl/src/crypto/x509/internal.h +FILE: ../../../third_party/boringssl/src/crypto/x509/x509_test.cc +FILE: ../../../third_party/boringssl/src/decrepit/evp/dss1.c +FILE: ../../../third_party/boringssl/src/decrepit/evp/evp_do_all.c +FILE: ../../../third_party/boringssl/src/decrepit/obj/obj_decrepit.c +FILE: ../../../third_party/boringssl/src/decrepit/ripemd/ripemd_test.cc +FILE: ../../../third_party/boringssl/src/decrepit/x509/x509_decrepit.c +FILE: ../../../third_party/boringssl/src/include/openssl/asn1_mac.h +FILE: ../../../third_party/boringssl/src/include/openssl/obj_mac.h +FILE: ../../../third_party/boringssl/src/include/openssl/pool.h +FILE: ../../../third_party/boringssl/src/ssl/tls13_both.cc +FILE: ../../../third_party/boringssl/src/ssl/tls13_client.cc +FILE: ../../../third_party/boringssl/src/ssl/tls13_enc.cc +FILE: ../../../third_party/boringssl/src/ssl/tls13_server.cc +FILE: ../../../third_party/boringssl/src/util/BUILD.toplevel +FILE: ../../../third_party/boringssl/src/util/diff_asm.go +FILE: ../../../third_party/boringssl/src/util/run_android_tests.go ---------------------------------------------------------------------------------------------------- -Copyright (c) 2018, Google Inc. +Copyright (c) 2016, Google Inc. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -1248,11 +1124,14 @@ CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/tls_cbc.c +ORIGIN: ../../../third_party/boringssl/src/crypto/asn1/time_support.c TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/tls_cbc.c +FILE: ../../../third_party/boringssl/src/crypto/asn1/time_support.c +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_x509.c +FILE: ../../../third_party/boringssl/src/crypto/pem/pem_xaux.c +FILE: ../../../third_party/boringssl/src/crypto/x509/x509cset.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 2012 The OpenSSL Project. All rights reserved. +Copyright (c) 2001 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -1269,12 +1148,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.openssl.org/)" + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - openssl-core@openssl.org. + licensing@OpenSSL.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -1283,7 +1162,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.openssl.org/)" + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -1301,11 +1180,94 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/cmac/cmac.c +ORIGIN: ../../../third_party/boringssl/src/crypto/base64/base64_test.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/boringssl/src/crypto/base64/base64_test.cc +FILE: ../../../third_party/boringssl/src/crypto/bio/bio_test.cc +FILE: ../../../third_party/boringssl/src/crypto/bio/socket_helper.c +FILE: ../../../third_party/boringssl/src/crypto/bytestring/ber.c +FILE: ../../../third_party/boringssl/src/crypto/bytestring/bytestring_test.cc +FILE: ../../../third_party/boringssl/src/crypto/bytestring/cbb.c +FILE: ../../../third_party/boringssl/src/crypto/bytestring/cbs.c +FILE: ../../../third_party/boringssl/src/crypto/bytestring/internal.h +FILE: ../../../third_party/boringssl/src/crypto/chacha/chacha.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/aead_test.cc +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_chacha20poly1305.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_ssl3.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_tls.c +FILE: ../../../third_party/boringssl/src/crypto/cpu-arm.c +FILE: ../../../third_party/boringssl/src/crypto/crypto.c +FILE: ../../../third_party/boringssl/src/crypto/digest_extra/digest_test.cc +FILE: ../../../third_party/boringssl/src/crypto/engine/engine.c +FILE: ../../../third_party/boringssl/src/crypto/err/err_test.cc +FILE: ../../../third_party/boringssl/src/crypto/evp/evp_extra_test.cc +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/cipher/aead.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/ec_test.cc +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/rand.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/urandom.c +FILE: ../../../third_party/boringssl/src/crypto/hkdf/hkdf.c +FILE: ../../../third_party/boringssl/src/crypto/hkdf/hkdf_test.cc +FILE: ../../../third_party/boringssl/src/crypto/lhash/lhash_test.cc +FILE: ../../../third_party/boringssl/src/crypto/pkcs7/pkcs7.c +FILE: ../../../third_party/boringssl/src/crypto/pkcs7/pkcs7_test.cc +FILE: ../../../third_party/boringssl/src/crypto/pkcs8/pkcs12_test.cc +FILE: ../../../third_party/boringssl/src/crypto/poly1305/poly1305.c +FILE: ../../../third_party/boringssl/src/crypto/poly1305/poly1305_arm.c +FILE: ../../../third_party/boringssl/src/crypto/poly1305/poly1305_vec.c +FILE: ../../../third_party/boringssl/src/crypto/rand_extra/windows.c +FILE: ../../../third_party/boringssl/src/include/openssl/aead.h +FILE: ../../../third_party/boringssl/src/include/openssl/bytestring.h +FILE: ../../../third_party/boringssl/src/include/openssl/chacha.h +FILE: ../../../third_party/boringssl/src/include/openssl/crypto.h +FILE: ../../../third_party/boringssl/src/include/openssl/engine.h +FILE: ../../../third_party/boringssl/src/include/openssl/hkdf.h +FILE: ../../../third_party/boringssl/src/include/openssl/lhash_macros.h +FILE: ../../../third_party/boringssl/src/include/openssl/objects.h +FILE: ../../../third_party/boringssl/src/include/openssl/opensslconf.h +FILE: ../../../third_party/boringssl/src/include/openssl/opensslv.h +FILE: ../../../third_party/boringssl/src/include/openssl/ossl_typ.h +FILE: ../../../third_party/boringssl/src/include/openssl/pkcs12.h +FILE: ../../../third_party/boringssl/src/include/openssl/pkcs7.h +FILE: ../../../third_party/boringssl/src/include/openssl/poly1305.h +FILE: ../../../third_party/boringssl/src/include/openssl/rand.h +FILE: ../../../third_party/boringssl/src/include/openssl/safestack.h +FILE: ../../../third_party/boringssl/src/ssl/custom_extensions.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_test.cc +FILE: ../../../third_party/boringssl/src/tool/args.cc +FILE: ../../../third_party/boringssl/src/tool/client.cc +FILE: ../../../third_party/boringssl/src/tool/const.cc +FILE: ../../../third_party/boringssl/src/tool/digest.cc +FILE: ../../../third_party/boringssl/src/tool/internal.h +FILE: ../../../third_party/boringssl/src/tool/pkcs12.cc +FILE: ../../../third_party/boringssl/src/tool/server.cc +FILE: ../../../third_party/boringssl/src/tool/speed.cc +FILE: ../../../third_party/boringssl/src/tool/tool.cc +FILE: ../../../third_party/boringssl/src/tool/transport_common.cc +FILE: ../../../third_party/boringssl/src/tool/transport_common.h +FILE: ../../../third_party/boringssl/src/util/make_errors.go +---------------------------------------------------------------------------------------------------- +Copyright (c) 2014, Google Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/bio/pair.c TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/cmac/cmac.c +FILE: ../../../third_party/boringssl/src/crypto/bio/pair.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 2010 The OpenSSL Project. All rights reserved. +Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -1322,12 +1284,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - licensing@OpenSSL.org. + openssl-core@openssl.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -1336,7 +1298,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + for use in the OpenSSL Toolkit (http://www.openssl.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -1354,58 +1316,185 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/constant_time_test.cc -TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/constant_time_test.cc ----------------------------------------------------------------------------------------------------- -Copyright (c) 2014 The OpenSSL Project. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. -3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - "This product includes cryptographic software written by - Eric Young (eay@cryptsoft.com)" - The word 'cryptographic' can be left out if the rouines from the library - being used are not cryptographic related :-). -4. If you include any Windows specific code (or a derivative thereof) from - the apps directory (application code) you must include an acknowledgement: - "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - -THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE -FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS -OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. - -The licence and distribution terms for any publically available version or -derivative of this code cannot be changed. i.e. this code cannot simply be -copied and put under another distribution licence -[including the GNU Public Licence.] +ORIGIN: ../../../third_party/boringssl/src/crypto/bn_extra/bn_asn1.c +TYPE: LicenseType.unknown +FILE: ../../../third_party/boringssl/err_data.c +FILE: ../../../third_party/boringssl/src/crypto/bn_extra/bn_asn1.c +FILE: ../../../third_party/boringssl/src/crypto/cmac/cmac_test.cc +FILE: ../../../third_party/boringssl/src/crypto/conf/internal.h +FILE: ../../../third_party/boringssl/src/crypto/curve25519/asm/x25519-asm-arm.S +FILE: ../../../third_party/boringssl/src/crypto/curve25519/ed25519_test.cc +FILE: ../../../third_party/boringssl/src/crypto/curve25519/x25519_test.cc +FILE: ../../../third_party/boringssl/src/crypto/err/err_data_generate.go +FILE: ../../../third_party/boringssl/src/crypto/evp/pbkdf_test.cc +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/aes_test.cc +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/p224-64.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/util.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/internal.h +FILE: ../../../third_party/boringssl/src/crypto/pkcs8/pkcs8_test.cc +FILE: ../../../third_party/boringssl/src/crypto/poly1305/poly1305_test.cc +FILE: ../../../third_party/boringssl/src/crypto/refcount_c11.c +FILE: ../../../third_party/boringssl/src/crypto/refcount_lock.c +FILE: ../../../third_party/boringssl/src/crypto/refcount_test.cc +FILE: ../../../third_party/boringssl/src/crypto/thread_none.c +FILE: ../../../third_party/boringssl/src/crypto/thread_pthread.c +FILE: ../../../third_party/boringssl/src/crypto/thread_test.cc +FILE: ../../../third_party/boringssl/src/crypto/thread_win.c +FILE: ../../../third_party/boringssl/src/include/openssl/buffer.h +FILE: ../../../third_party/boringssl/src/include/openssl/cmac.h +FILE: ../../../third_party/boringssl/src/include/openssl/curve25519.h +FILE: ../../../third_party/boringssl/src/include/openssl/dtls1.h +FILE: ../../../third_party/boringssl/src/include/openssl/srtp.h +FILE: ../../../third_party/boringssl/src/ssl/ssl_aead_ctx.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_buffer.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_key_share.cc +FILE: ../../../third_party/boringssl/src/tool/ciphers.cc +FILE: ../../../third_party/boringssl/src/tool/generate_ed25519.cc +FILE: ../../../third_party/boringssl/src/tool/genrsa.cc +FILE: ../../../third_party/boringssl/src/tool/rand.cc +FILE: ../../../third_party/boringssl/src/util/all_tests.go +FILE: ../../../third_party/boringssl/src/util/bot/DEPS +---------------------------------------------------------------------------------------------------- +Copyright (c) 2015, Google Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ==================================================================================================== ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/dh/dh_asn1.c +ORIGIN: ../../../third_party/boringssl/src/crypto/buf/buf_test.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/boringssl/crypto_test_data.cc +FILE: ../../../third_party/boringssl/src/crypto/buf/buf_test.cc +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_aesctrhmac.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_aesgcmsiv.c +FILE: ../../../third_party/boringssl/src/crypto/compiler_test.cc +FILE: ../../../third_party/boringssl/src/crypto/err/internal.h +FILE: ../../../third_party/boringssl/src/crypto/evp/p_ed25519.c +FILE: ../../../third_party/boringssl/src/crypto/evp/p_ed25519_asn1.c +FILE: ../../../third_party/boringssl/src/crypto/evp/scrypt_test.cc +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/aes/internal.h +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bcm.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/bn_test_to_fuzzer.go +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/delocate.h +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/is_fips.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/ctrdrbg.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/rand/ctrdrbg_test.cc +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/self_check/self_check.c +FILE: ../../../third_party/boringssl/src/crypto/pkcs7/internal.h +FILE: ../../../third_party/boringssl/src/crypto/pkcs7/pkcs7_x509.c +FILE: ../../../third_party/boringssl/src/crypto/rand_extra/forkunsafe.c +FILE: ../../../third_party/boringssl/src/crypto/rand_extra/fuchsia.c +FILE: ../../../third_party/boringssl/src/crypto/rand_extra/rand_extra.c +FILE: ../../../third_party/boringssl/src/crypto/x509/make_many_constraints.go +FILE: ../../../third_party/boringssl/src/decrepit/cfb/cfb.c +FILE: ../../../third_party/boringssl/src/decrepit/cfb/cfb_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_aes_gcm_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_aes_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_ctr_drbg_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_ecdsa2_keypair_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_ecdsa2_pkv_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_ecdsa2_siggen_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_ecdsa2_sigver_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_hmac_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_keywrap_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_main.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_rsa2_keygen_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_rsa2_siggen_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_rsa2_sigver_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_sha_monte_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_sha_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_tdes_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_test_util.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_test_util.h +FILE: ../../../third_party/boringssl/src/fipstools/test_fips.c +FILE: ../../../third_party/boringssl/src/include/openssl/is_boringssl.h +FILE: ../../../third_party/boringssl/src/include/openssl/span.h +FILE: ../../../third_party/boringssl/src/ssl/span_test.cc +FILE: ../../../third_party/boringssl/src/ssl/ssl_versions.cc +FILE: ../../../third_party/boringssl/src/tool/file.cc +FILE: ../../../third_party/boringssl/src/tool/sign.cc +FILE: ../../../third_party/boringssl/src/util/check_imported_libraries.go +FILE: ../../../third_party/boringssl/src/util/convert_comments.go +FILE: ../../../third_party/boringssl/src/util/embed_test_data.go +FILE: ../../../third_party/boringssl/src/util/fipstools/ar.go +FILE: ../../../third_party/boringssl/src/util/fipstools/break-hash.go +FILE: ../../../third_party/boringssl/src/util/fipstools/const.go +FILE: ../../../third_party/boringssl/src/util/fipstools/delocate.go +FILE: ../../../third_party/boringssl/src/util/fipstools/delocate.peg +FILE: ../../../third_party/boringssl/src/util/fipstools/delocate_test.go +FILE: ../../../third_party/boringssl/src/util/fipstools/inject-hash.go +---------------------------------------------------------------------------------------------------- +Copyright (c) 2017, Google Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/bytestring/unicode.c +TYPE: LicenseType.unknown +FILE: ../../../third_party/boringssl/src/crypto/bytestring/unicode.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/e_aesccm.c +FILE: ../../../third_party/boringssl/src/crypto/cpu-aarch64-fuchsia.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/div_extra.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/bn/gcd_extra.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/felem.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/make_ec_scalar_base_mult_tests.go +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/make_p256-x86_64-table.go +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/scalar.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ec/simple_mul.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/tls/internal.h +FILE: ../../../third_party/boringssl/src/crypto/self_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_kas_test.cc +FILE: ../../../third_party/boringssl/src/fipstools/cavp_tlskdf_test.cc +FILE: ../../../third_party/boringssl/src/include/openssl/e_os2.h +FILE: ../../../third_party/boringssl/src/ssl/handoff.cc +FILE: ../../../third_party/boringssl/src/third_party/wycheproof_testvectors/convert_wycheproof.go +---------------------------------------------------------------------------------------------------- +Copyright (c) 2018, Google Inc. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/cipher_test.cc TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/dh/dh_asn1.c -FILE: ../../../third_party/boringssl/src/crypto/dsa/dsa_asn1.c -FILE: ../../../third_party/boringssl/src/crypto/rsa_extra/rsa_asn1.c -FILE: ../../../third_party/boringssl/src/include/openssl/asn1t.h +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/cipher_test.cc +FILE: ../../../third_party/boringssl/src/crypto/evp/evp_test.cc ---------------------------------------------------------------------------------------------------- -Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. +Copyright (c) 2015 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -1454,11 +1543,11 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/dh/params.c +ORIGIN: ../../../third_party/boringssl/src/crypto/cipher_extra/tls_cbc.c TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/dh/params.c +FILE: ../../../third_party/boringssl/src/crypto/cipher_extra/tls_cbc.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 2011 The OpenSSL Project. All rights reserved. +Copyright (c) 2012 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -1475,12 +1564,12 @@ are met: 3. All advertising materials mentioning features or use of this software must display the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + for use in the OpenSSL Toolkit. (http://www.openssl.org/)" 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact - licensing@OpenSSL.org. + openssl-core@openssl.org. 5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written @@ -1489,7 +1578,7 @@ are met: 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project - for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + for use in the OpenSSL Toolkit (http://www.openssl.org/)" THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE @@ -1507,11 +1596,11 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/ec_extra/ec_asn1.c +ORIGIN: ../../../third_party/boringssl/src/crypto/cmac/cmac.c TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/ec_extra/ec_asn1.c +FILE: ../../../third_party/boringssl/src/crypto/cmac/cmac.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 2000-2003 The OpenSSL Project. All rights reserved. +Copyright (c) 2010 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -1560,12 +1649,58 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/ecdh/ecdh.c +ORIGIN: ../../../third_party/boringssl/src/crypto/constant_time_test.cc TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/ecdh/ecdh.c -FILE: ../../../third_party/boringssl/src/include/openssl/ecdh.h +FILE: ../../../third_party/boringssl/src/crypto/constant_time_test.cc ---------------------------------------------------------------------------------------------------- -Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. +Copyright (c) 2014 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: +1. Redistributions of source code must retain the copyright + notice, this list of conditions and the following disclaimer. +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. +3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + "This product includes cryptographic software written by + Eric Young (eay@cryptsoft.com)" + The word 'cryptographic' can be left out if the rouines from the library + being used are not cryptographic related :-). +4. If you include any Windows specific code (or a derivative thereof) from + the apps directory (application code) you must include an acknowledgement: + "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" + +THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. + +The licence and distribution terms for any publically available version or +derivative of this code cannot be changed. i.e. this code cannot simply be +copied and put under another distribution licence +[including the GNU Public Licence.] +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/dh/dh_asn1.c +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/dh/dh_asn1.c +FILE: ../../../third_party/boringssl/src/crypto/dsa/dsa_asn1.c +FILE: ../../../third_party/boringssl/src/crypto/rsa_extra/rsa_asn1.c +FILE: ../../../third_party/boringssl/src/include/openssl/asn1t.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -1614,12 +1749,11 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/ecdh/ecdh.c + ../../../third_party/boringssl/src/crypto/ecdh/ecdh.c +ORIGIN: ../../../third_party/boringssl/src/crypto/dh/params.c TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/ecdh/ecdh.c -FILE: ../../../third_party/boringssl/src/include/openssl/ecdh.h +FILE: ../../../third_party/boringssl/src/crypto/dh/params.c ---------------------------------------------------------------------------------------------------- -Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. +Copyright (c) 2011 The OpenSSL Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions @@ -1668,12 +1802,173 @@ OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: boringssl -ORIGIN: ../../../third_party/boringssl/src/crypto/ecdsa_extra/ecdsa_asn1.c +ORIGIN: ../../../third_party/boringssl/src/crypto/ec_extra/ec_asn1.c TYPE: LicenseType.bsd -FILE: ../../../third_party/boringssl/src/crypto/ecdsa_extra/ecdsa_asn1.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdsa/ecdsa.c -FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdsa/ecdsa_test.cc -FILE: ../../../third_party/boringssl/src/include/openssl/ecdsa.h +FILE: ../../../third_party/boringssl/src/crypto/ec_extra/ec_asn1.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 2000-2003 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/ecdh/ecdh.c +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/ecdh/ecdh.c +FILE: ../../../third_party/boringssl/src/include/openssl/ecdh.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/ecdh/ecdh.c + ../../../third_party/boringssl/src/crypto/ecdh/ecdh.c +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/ecdh/ecdh.c +FILE: ../../../third_party/boringssl/src/include/openssl/ecdh.h +---------------------------------------------------------------------------------------------------- +Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + +3. All advertising materials mentioning features or use of this + software must display the following acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" + +4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to + endorse or promote products derived from this software without + prior written permission. For written permission, please contact + licensing@OpenSSL.org. + +5. Products derived from this software may not be called "OpenSSL" + nor may "OpenSSL" appear in their names without prior written + permission of the OpenSSL Project. + +6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes software developed by the OpenSSL Project + for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" + +THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY +EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR +ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/ecdsa_extra/ecdsa_asn1.c +TYPE: LicenseType.bsd +FILE: ../../../third_party/boringssl/src/crypto/ecdsa_extra/ecdsa_asn1.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdsa/ecdsa.c +FILE: ../../../third_party/boringssl/src/crypto/fipsmodule/ecdsa/ecdsa_test.cc +FILE: ../../../third_party/boringssl/src/include/openssl/ecdsa.h ---------------------------------------------------------------------------------------------------- Copyright (c) 1998-2005 The OpenSSL Project. All rights reserved. @@ -2671,6 +2966,20 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/rsa_extra/print.c + ../../../third_party/boringssl/src/LICENSE +TYPE: LicenseType.unknown +FILE: ../../../third_party/boringssl/src/crypto/rsa_extra/print.c +---------------------------------------------------------------------------------------------------- +Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +==================================================================================================== + ==================================================================================================== LIBRARY: boringssl ORIGIN: ../../../third_party/boringssl/src/crypto/x509/vpm_int.h @@ -3111,6 +3420,20 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== +==================================================================================================== +LIBRARY: boringssl +ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_ocsp.c + ../../../third_party/boringssl/src/LICENSE +TYPE: LicenseType.unknown +FILE: ../../../third_party/boringssl/src/crypto/x509v3/v3_ocsp.c +---------------------------------------------------------------------------------------------------- +Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +https://www.openssl.org/source/license.html +==================================================================================================== + ==================================================================================================== LIBRARY: boringssl ORIGIN: ../../../third_party/boringssl/src/crypto/x509v3/v3_pci.c @@ -3959,40 +4282,19 @@ FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/armv4-mont.S FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/ghash-armv4.S FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/ghashv8-armx32.S FILE: ../../../third_party/boringssl/ios-arm/crypto/fipsmodule/sha1-armv4-large.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/aes/aesv8-armx64.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/bn/armv8-mont.S FILE: ../../../third_party/boringssl/linux-aarch64/crypto/chacha/chacha-armv8.S FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/aesv8-armx64.S FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/armv8-mont.S FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/ghashv8-armx64.S FILE: ../../../third_party/boringssl/linux-aarch64/crypto/fipsmodule/sha1-armv8.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/modes/ghashv8-armx64.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/sha/sha1-armv8.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/sha/sha256-armv8.S -FILE: ../../../third_party/boringssl/linux-aarch64/crypto/sha/sha512-armv8.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/aes/aes-armv4.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/aes/aesv8-armx32.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/aes/bsaes-armv7.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/bn/armv4-mont.S FILE: ../../../third_party/boringssl/linux-arm/crypto/chacha/chacha-armv4.S FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/aesv8-armx32.S FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/armv4-mont.S FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/ghash-armv4.S FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/ghashv8-armx32.S FILE: ../../../third_party/boringssl/linux-arm/crypto/fipsmodule/sha1-armv4-large.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/modes/ghash-armv4.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/modes/ghashv8-armx32.S -FILE: ../../../third_party/boringssl/linux-arm/crypto/sha/sha1-armv4-large.S -FILE: ../../../third_party/boringssl/linux-ppc64le/crypto/aes/aesp8-ppc.S FILE: ../../../third_party/boringssl/linux-ppc64le/crypto/fipsmodule/aesp8-ppc.S FILE: ../../../third_party/boringssl/linux-ppc64le/crypto/fipsmodule/ghashp8-ppc.S -FILE: ../../../third_party/boringssl/linux-ppc64le/crypto/modes/ghashp8-ppc.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/aes/aes-586.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/aes/aesni-x86.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/aes/vpaes-x86.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/bn/bn-586.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/bn/co-586.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/bn/x86-mont.S FILE: ../../../third_party/boringssl/linux-x86/crypto/chacha/chacha-x86.S FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/aes-586.S FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/aesni-x86.S @@ -4005,23 +4307,9 @@ FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/sha256-586.S FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/sha512-586.S FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/vpaes-x86.S FILE: ../../../third_party/boringssl/linux-x86/crypto/fipsmodule/x86-mont.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/md5/md5-586.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/modes/ghash-x86.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/sha/sha1-586.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/sha/sha256-586.S -FILE: ../../../third_party/boringssl/linux-x86/crypto/sha/sha512-586.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/aes/aes-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/aes/aesni-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/aes/bsaes-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/aes/vpaes-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/bn/rsaz-avx2.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/bn/rsaz-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/bn/x86_64-mont.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/bn/x86_64-mont5.S FILE: ../../../third_party/boringssl/linux-x86_64/crypto/chacha/chacha-x86_64.S FILE: ../../../third_party/boringssl/linux-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S FILE: ../../../third_party/boringssl/linux-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/ec/p256-x86_64-asm.S FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/aes-x86_64.S FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/aesni-x86_64.S @@ -4037,19 +4325,6 @@ FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/sha512-x86_6 FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/vpaes-x86_64.S FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont.S FILE: ../../../third_party/boringssl/linux-x86_64/crypto/fipsmodule/x86_64-mont5.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/md5/md5-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/modes/aesni-gcm-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/modes/ghash-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/rand/rdrand-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/sha/sha1-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/sha/sha256-x86_64.S -FILE: ../../../third_party/boringssl/linux-x86_64/crypto/sha/sha512-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/aes/aes-586.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/aes/aesni-x86.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/aes/vpaes-x86.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/bn/bn-586.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/bn/co-586.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/bn/x86-mont.S FILE: ../../../third_party/boringssl/mac-x86/crypto/chacha/chacha-x86.S FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/aes-586.S FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/aesni-x86.S @@ -4062,23 +4337,9 @@ FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/sha256-586.S FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/sha512-586.S FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/vpaes-x86.S FILE: ../../../third_party/boringssl/mac-x86/crypto/fipsmodule/x86-mont.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/md5/md5-586.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/modes/ghash-x86.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/sha/sha1-586.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/sha/sha256-586.S -FILE: ../../../third_party/boringssl/mac-x86/crypto/sha/sha512-586.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/aes/aes-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/aes/aesni-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/aes/bsaes-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/aes/vpaes-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/bn/rsaz-avx2.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/bn/rsaz-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/bn/x86_64-mont.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/bn/x86_64-mont5.S FILE: ../../../third_party/boringssl/mac-x86_64/crypto/chacha/chacha-x86_64.S FILE: ../../../third_party/boringssl/mac-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.S FILE: ../../../third_party/boringssl/mac-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/ec/p256-x86_64-asm.S FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/aes-x86_64.S FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.S FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/aesni-x86_64.S @@ -4094,19 +4355,6 @@ FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/sha512-x86_64. FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/vpaes-x86_64.S FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/x86_64-mont.S FILE: ../../../third_party/boringssl/mac-x86_64/crypto/fipsmodule/x86_64-mont5.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/md5/md5-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/modes/aesni-gcm-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/modes/ghash-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/rand/rdrand-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/sha/sha1-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/sha/sha256-x86_64.S -FILE: ../../../third_party/boringssl/mac-x86_64/crypto/sha/sha512-x86_64.S -FILE: ../../../third_party/boringssl/win-x86/crypto/aes/aes-586.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/aes/aesni-x86.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/aes/vpaes-x86.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/bn/bn-586.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/bn/co-586.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/bn/x86-mont.asm FILE: ../../../third_party/boringssl/win-x86/crypto/chacha/chacha-x86.asm FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/aes-586.asm FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/aesni-x86.asm @@ -4119,23 +4367,9 @@ FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/sha256-586.asm FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/sha512-586.asm FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/vpaes-x86.asm FILE: ../../../third_party/boringssl/win-x86/crypto/fipsmodule/x86-mont.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/md5/md5-586.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/modes/ghash-x86.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/sha/sha1-586.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/sha/sha256-586.asm -FILE: ../../../third_party/boringssl/win-x86/crypto/sha/sha512-586.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/aes/aes-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/aes/aesni-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/aes/bsaes-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/aes/vpaes-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/bn/rsaz-avx2.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/bn/rsaz-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/bn/x86_64-mont.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/bn/x86_64-mont5.asm FILE: ../../../third_party/boringssl/win-x86_64/crypto/chacha/chacha-x86_64.asm FILE: ../../../third_party/boringssl/win-x86_64/crypto/cipher_extra/aes128gcmsiv-x86_64.asm FILE: ../../../third_party/boringssl/win-x86_64/crypto/cipher_extra/chacha20_poly1305_x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/ec/p256-x86_64-asm.asm FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/aes-x86_64.asm FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/aesni-gcm-x86_64.asm FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/aesni-x86_64.asm @@ -4151,13 +4385,6 @@ FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/sha512-x86_64. FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/vpaes-x86_64.asm FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/x86_64-mont.asm FILE: ../../../third_party/boringssl/win-x86_64/crypto/fipsmodule/x86_64-mont5.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/md5/md5-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/modes/aesni-gcm-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/modes/ghash-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/rand/rdrand-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/sha/sha1-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/sha/sha256-x86_64.asm -FILE: ../../../third_party/boringssl/win-x86_64/crypto/sha/sha512-x86_64.asm ---------------------------------------------------------------------------------------------------- ==================================================================================================== @@ -4201,113 +4428,32 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: dart -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/runtime/bin/vmservice/loader.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/runtime/bin/address_sanitizer.cc -FILE: ../../../third_party/dart/runtime/bin/builtin_common.cc -FILE: ../../../third_party/dart/runtime/bin/embedded_dart_io.cc -FILE: ../../../third_party/dart/runtime/bin/embedded_dart_io.h -FILE: ../../../third_party/dart/runtime/bin/observatory_assets_empty.cc -FILE: ../../../third_party/dart/runtime/bin/vmservice/loader.dart -FILE: ../../../third_party/dart/runtime/lib/async_patch.dart -FILE: ../../../third_party/dart/runtime/lib/compact_hash.dart -FILE: ../../../third_party/dart/runtime/lib/developer.cc -FILE: ../../../third_party/dart/runtime/lib/developer.dart -FILE: ../../../third_party/dart/runtime/lib/timeline.cc -FILE: ../../../third_party/dart/runtime/lib/timeline.dart -FILE: ../../../third_party/dart/runtime/lib/vmservice.cc -FILE: ../../../third_party/dart/runtime/observatory/lib/allocation_profile.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/cli.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/debugger.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/heap_snapshot.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/sample_profile.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/allocation_profile/allocation_profile.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/app/analytics.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/cli/command.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/debugger/debugger.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/debugger/debugger_location.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/heap_snapshot.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/logging.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/logging_list.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/megamorphiccache_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/objectpool_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/persistent_handles.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/ports.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/timeline_page.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/view_footer.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/sample_profile/sample_profile.dart -FILE: ../../../third_party/dart/runtime/observatory/web/timeline.js -FILE: ../../../third_party/dart/runtime/vm/atomic_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/aot/precompiler.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/aot/precompiler.h -FILE: ../../../third_party/dart/runtime/vm/log.cc -FILE: ../../../third_party/dart/runtime/vm/log.h -FILE: ../../../third_party/dart/runtime/vm/log_test.cc -FILE: ../../../third_party/dart/runtime/vm/os_thread.cc -FILE: ../../../third_party/dart/runtime/vm/profiler_service.cc -FILE: ../../../third_party/dart/runtime/vm/profiler_service.h -FILE: ../../../third_party/dart/runtime/vm/program_visitor.cc -FILE: ../../../third_party/dart/runtime/vm/program_visitor.h -FILE: ../../../third_party/dart/runtime/vm/regexp_assembler_bytecode.cc -FILE: ../../../third_party/dart/runtime/vm/regexp_assembler_bytecode.h -FILE: ../../../third_party/dart/runtime/vm/regexp_assembler_bytecode_inl.h -FILE: ../../../third_party/dart/runtime/vm/regexp_bytecodes.h -FILE: ../../../third_party/dart/runtime/vm/regexp_interpreter.cc -FILE: ../../../third_party/dart/runtime/vm/regexp_interpreter.h -FILE: ../../../third_party/dart/runtime/vm/scope_timer.h -FILE: ../../../third_party/dart/runtime/vm/service_event.cc -FILE: ../../../third_party/dart/runtime/vm/service_event.h -FILE: ../../../third_party/dart/runtime/vm/service_isolate.cc -FILE: ../../../third_party/dart/runtime/vm/source_report.cc -FILE: ../../../third_party/dart/runtime/vm/source_report.h -FILE: ../../../third_party/dart/runtime/vm/source_report_test.cc -FILE: ../../../third_party/dart/runtime/vm/thread.cc -FILE: ../../../third_party/dart/runtime/vm/thread.h -FILE: ../../../third_party/dart/runtime/vm/thread_barrier.h -FILE: ../../../third_party/dart/runtime/vm/thread_barrier_test.cc -FILE: ../../../third_party/dart/runtime/vm/thread_registry.cc -FILE: ../../../third_party/dart/runtime/vm/thread_registry.h -FILE: ../../../third_party/dart/runtime/vm/timeline.cc -FILE: ../../../third_party/dart/runtime/vm/timeline.h -FILE: ../../../third_party/dart/runtime/vm/timeline_analysis.cc -FILE: ../../../third_party/dart/runtime/vm/timeline_analysis.h -FILE: ../../../third_party/dart/runtime/vm/timeline_test.cc -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/developer_patch.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/preambles/d8.js -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/preambles/jsshell.js -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/shared/async_await_error_codes.dart -FILE: ../../../third_party/dart/sdk/lib/convert/base64.dart -FILE: ../../../third_party/dart/sdk/lib/dart_client.platform -FILE: ../../../third_party/dart/sdk/lib/dart_server.platform -FILE: ../../../third_party/dart/sdk/lib/dart_shared.platform -FILE: ../../../third_party/dart/sdk/lib/developer/developer.dart -FILE: ../../../third_party/dart/sdk/lib/developer/extension.dart -FILE: ../../../third_party/dart/sdk/lib/developer/timeline.dart -FILE: ../../../third_party/dart/sdk/lib/io/io_resource_info.dart -FILE: ../../../third_party/dart/sdk/lib/io/security_context.dart -FILE: ../../../third_party/dart/sdk/lib/vmservice/asset.dart -FILE: ../../../third_party/dart/sdk/lib/vmservice/vmservice.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/build/common.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/build/html_import_annotation_recorder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/build/import_inliner.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/build/messages.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/build/mirrors_remover.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/build/script_compactor.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/build/test_compatibility.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/build/web_components.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/custom_element_proxy.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/html_import_annotation.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/init.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/src/custom_element.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/src/init.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/src/normalize_path.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/web_components.dart +FILE: ../../../third_party/dart/.gitconfig +FILE: ../../../third_party/dart/.mailmap +FILE: ../../../third_party/dart/client/idea/.idea/.name +FILE: ../../../third_party/dart/client/idea/.idea/inspectionProfiles/Project_Default.xml +FILE: ../../../third_party/dart/client/idea/.idea/vcs.xml +FILE: ../../../third_party/dart/runtime/CPPLINT.cfg +FILE: ../../../third_party/dart/runtime/observatory/lib/elements.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/img/chromium_icon.png +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/img/dart_icon.png +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/img/isolate_icon.png +FILE: ../../../third_party/dart/runtime/observatory/web/favicon.ico +FILE: ../../../third_party/dart/runtime/observatory/web/index.html +FILE: ../../../third_party/dart/runtime/observatory/web/third_party/trace_viewer_full.html +FILE: ../../../third_party/dart/runtime/observatory/web/timeline.html +FILE: ../../../third_party/dart/runtime/vm/snapshot_test_in.dat +FILE: ../../../third_party/dart/sdk/lib/html/html_common/conversions_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/html/html_common/html_common.dart +FILE: ../../../third_party/dart/sdk/lib/libraries.json +FILE: ../../../third_party/dart/sdk/lib/vmservice_libraries.json +FILE: ../../../third_party/dart/third_party/7zip.tar.gz.sha1 +FILE: ../../../third_party/dart/third_party/clang.tar.gz.sha1 +FILE: ../../../third_party/dart/third_party/gsutil.tar.gz.sha1 ---------------------------------------------------------------------------------------------------- -Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - +Copyright 2012, the Dart project authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -4335,9550 +4481,8844 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: dart -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/runtime/bin/vmservice/server.dart + ../../../third_party/dart/LICENSE +ORIGIN: ../../../third_party/dart/client/dart.js + ../../../third_party/dart/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/WATCHLISTS -FILE: ../../../third_party/dart/runtime/bin/eventhandler_win.cc -FILE: ../../../third_party/dart/runtime/bin/file.cc -FILE: ../../../third_party/dart/runtime/bin/file.h -FILE: ../../../third_party/dart/runtime/bin/file_system_entity_patch.dart -FILE: ../../../third_party/dart/runtime/bin/file_system_watcher.cc -FILE: ../../../third_party/dart/runtime/bin/file_system_watcher.h -FILE: ../../../third_party/dart/runtime/bin/file_system_watcher_android.cc -FILE: ../../../third_party/dart/runtime/bin/file_system_watcher_linux.cc -FILE: ../../../third_party/dart/runtime/bin/file_system_watcher_macos.cc -FILE: ../../../third_party/dart/runtime/bin/file_system_watcher_win.cc -FILE: ../../../third_party/dart/runtime/bin/filter.cc -FILE: ../../../third_party/dart/runtime/bin/filter.h -FILE: ../../../third_party/dart/runtime/bin/filter_patch.dart -FILE: ../../../third_party/dart/runtime/bin/gen_snapshot.cc -FILE: ../../../third_party/dart/runtime/bin/io_natives.cc -FILE: ../../../third_party/dart/runtime/bin/io_service.cc -FILE: ../../../third_party/dart/runtime/bin/io_service.h -FILE: ../../../third_party/dart/runtime/bin/io_service_no_ssl.cc -FILE: ../../../third_party/dart/runtime/bin/io_service_no_ssl.h -FILE: ../../../third_party/dart/runtime/bin/io_service_patch.dart -FILE: ../../../third_party/dart/runtime/bin/process.cc -FILE: ../../../third_party/dart/runtime/bin/process_patch.dart -FILE: ../../../third_party/dart/runtime/bin/socket.cc -FILE: ../../../third_party/dart/runtime/bin/socket.h -FILE: ../../../third_party/dart/runtime/bin/socket_base_linux.cc -FILE: ../../../third_party/dart/runtime/bin/socket_base_macos.cc -FILE: ../../../third_party/dart/runtime/bin/socket_base_win.cc -FILE: ../../../third_party/dart/runtime/bin/socket_linux.cc -FILE: ../../../third_party/dart/runtime/bin/socket_macos.cc -FILE: ../../../third_party/dart/runtime/bin/socket_patch.dart -FILE: ../../../third_party/dart/runtime/bin/socket_win.cc -FILE: ../../../third_party/dart/runtime/bin/stdio.cc -FILE: ../../../third_party/dart/runtime/bin/stdio.h -FILE: ../../../third_party/dart/runtime/bin/stdio_android.cc -FILE: ../../../third_party/dart/runtime/bin/stdio_linux.cc -FILE: ../../../third_party/dart/runtime/bin/stdio_macos.cc -FILE: ../../../third_party/dart/runtime/bin/stdio_patch.dart -FILE: ../../../third_party/dart/runtime/bin/stdio_win.cc -FILE: ../../../third_party/dart/runtime/bin/vmservice/server.dart -FILE: ../../../third_party/dart/runtime/bin/vmservice/vmservice_io.dart -FILE: ../../../third_party/dart/runtime/bin/vmservice_impl.cc -FILE: ../../../third_party/dart/runtime/bin/vmservice_impl.h -FILE: ../../../third_party/dart/runtime/include/dart_mirrors_api.h -FILE: ../../../third_party/dart/runtime/include/dart_native_api.h -FILE: ../../../third_party/dart/runtime/lib/collection_patch.dart -FILE: ../../../third_party/dart/runtime/lib/core_patch.dart -FILE: ../../../third_party/dart/runtime/lib/deferred_load_patch.dart -FILE: ../../../third_party/dart/runtime/lib/function.dart -FILE: ../../../third_party/dart/runtime/lib/internal_patch.dart -FILE: ../../../third_party/dart/runtime/lib/invocation_mirror.h -FILE: ../../../third_party/dart/runtime/lib/libgen_in.cc -FILE: ../../../third_party/dart/runtime/lib/mirror_reference.dart -FILE: ../../../third_party/dart/runtime/lib/null_patch.dart -FILE: ../../../third_party/dart/runtime/lib/schedule_microtask_patch.dart -FILE: ../../../third_party/dart/runtime/lib/simd128.cc -FILE: ../../../third_party/dart/runtime/lib/stacktrace.cc -FILE: ../../../third_party/dart/runtime/lib/stacktrace.dart -FILE: ../../../third_party/dart/runtime/lib/symbol_patch.dart -FILE: ../../../third_party/dart/runtime/lib/timer_impl.dart -FILE: ../../../third_party/dart/runtime/lib/typed_data.cc -FILE: ../../../third_party/dart/runtime/lib/typed_data_patch.dart -FILE: ../../../third_party/dart/runtime/lib/uri.cc -FILE: ../../../third_party/dart/runtime/lib/uri_patch.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/app/application.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/app/location_manager.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/class_instances.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/class_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/class_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/code_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/code_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/context_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/context_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/cpu_profile.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/cpu_profile/virtual_tree.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/cpu_profile_table.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/curly_block.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/error_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/eval_box.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/field_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/field_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/flag_list.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/function_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/function_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/heap_snapshot.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/any_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/icdata_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/icdata_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/instance_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/instance_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/json_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/library_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/library_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/local_var_descriptors_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/megamorphiccache_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/native_memory_profiler.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/object_common.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/object_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/objectpool_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/objectstore_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/observatory_application.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/pc_descriptors_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/sample_buffer_control.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/script_inset.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/script_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/script_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/sentinel_value.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/sentinel_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/source_inset.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/stack_trace_tree_config.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/token_stream_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/type_arguments_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/unknown_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/vm_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/tracer.dart -FILE: ../../../third_party/dart/runtime/platform/signal_blocker.h -FILE: ../../../third_party/dart/runtime/vm/allocation.h -FILE: ../../../third_party/dart/runtime/vm/atomic.h -FILE: ../../../third_party/dart/runtime/vm/atomic_android.h -FILE: ../../../third_party/dart/runtime/vm/atomic_linux.h -FILE: ../../../third_party/dart/runtime/vm/atomic_macos.h -FILE: ../../../third_party/dart/runtime/vm/atomic_win.h -FILE: ../../../third_party/dart/runtime/vm/class_finalizer.cc -FILE: ../../../third_party/dart/runtime/vm/code_patcher_arm.cc -FILE: ../../../third_party/dart/runtime/vm/code_patcher_arm_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/aot/aot_call_specializer.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm.h -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm64_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_ia32.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_ia32.h -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_x64.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_x64.h -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_arm.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/block_scheduler.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/block_scheduler.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/constant_propagator.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_arm.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_ia32.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_x64.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_arm.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_ia32.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_x64.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/inliner.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/linearscan.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/linearscan.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/locations.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/locations.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/type_propagator.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/type_propagator.h -FILE: ../../../third_party/dart/runtime/vm/compiler/intrinsifier_arm.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/intrinsifier_ia32.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/intrinsifier_x64.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/jit/jit_call_specializer.cc -FILE: ../../../third_party/dart/runtime/vm/constants_arm.h -FILE: ../../../third_party/dart/runtime/vm/constants_ia32.h -FILE: ../../../third_party/dart/runtime/vm/constants_x64.h -FILE: ../../../third_party/dart/runtime/vm/dart.cc -FILE: ../../../third_party/dart/runtime/vm/dart_api_impl.cc -FILE: ../../../third_party/dart/runtime/vm/deferred_objects.cc -FILE: ../../../third_party/dart/runtime/vm/deferred_objects.h -FILE: ../../../third_party/dart/runtime/vm/deopt_instructions.cc -FILE: ../../../third_party/dart/runtime/vm/deopt_instructions.h -FILE: ../../../third_party/dart/runtime/vm/guard_field_test.cc -FILE: ../../../third_party/dart/runtime/vm/instructions.h -FILE: ../../../third_party/dart/runtime/vm/instructions_arm.cc -FILE: ../../../third_party/dart/runtime/vm/instructions_arm.h -FILE: ../../../third_party/dart/runtime/vm/instructions_arm_test.cc -FILE: ../../../third_party/dart/runtime/vm/isolate.cc -FILE: ../../../third_party/dart/runtime/vm/isolate.h -FILE: ../../../third_party/dart/runtime/vm/json_stream.cc -FILE: ../../../third_party/dart/runtime/vm/json_stream.h -FILE: ../../../third_party/dart/runtime/vm/mirrors_api_impl.cc -FILE: ../../../third_party/dart/runtime/vm/native_api_impl.cc -FILE: ../../../third_party/dart/runtime/vm/native_symbol.h -FILE: ../../../third_party/dart/runtime/vm/native_symbol_android.cc -FILE: ../../../third_party/dart/runtime/vm/native_symbol_linux.cc -FILE: ../../../third_party/dart/runtime/vm/native_symbol_macos.cc -FILE: ../../../third_party/dart/runtime/vm/native_symbol_win.cc -FILE: ../../../third_party/dart/runtime/vm/object_id_ring.cc -FILE: ../../../third_party/dart/runtime/vm/object_id_ring.h -FILE: ../../../third_party/dart/runtime/vm/object_id_ring_test.cc -FILE: ../../../third_party/dart/runtime/vm/object_store.cc -FILE: ../../../third_party/dart/runtime/vm/os_test.cc -FILE: ../../../third_party/dart/runtime/vm/profiler.cc -FILE: ../../../third_party/dart/runtime/vm/profiler.h -FILE: ../../../third_party/dart/runtime/vm/profiler_test.cc -FILE: ../../../third_party/dart/runtime/vm/random.cc -FILE: ../../../third_party/dart/runtime/vm/random.h -FILE: ../../../third_party/dart/runtime/vm/reusable_handles.h -FILE: ../../../third_party/dart/runtime/vm/service.cc -FILE: ../../../third_party/dart/runtime/vm/service.h -FILE: ../../../third_party/dart/runtime/vm/service_isolate.h -FILE: ../../../third_party/dart/runtime/vm/service_test.cc -FILE: ../../../third_party/dart/runtime/vm/signal_handler.h -FILE: ../../../third_party/dart/runtime/vm/signal_handler_android.cc -FILE: ../../../third_party/dart/runtime/vm/signal_handler_linux.cc -FILE: ../../../third_party/dart/runtime/vm/signal_handler_macos.cc -FILE: ../../../third_party/dart/runtime/vm/signal_handler_win.cc -FILE: ../../../third_party/dart/runtime/vm/simulator.h -FILE: ../../../third_party/dart/runtime/vm/simulator_arm.cc -FILE: ../../../third_party/dart/runtime/vm/simulator_arm.h -FILE: ../../../third_party/dart/runtime/vm/stack_frame_arm.h -FILE: ../../../third_party/dart/runtime/vm/stack_frame_ia32.h -FILE: ../../../third_party/dart/runtime/vm/stack_frame_x64.h -FILE: ../../../third_party/dart/runtime/vm/stub_code_arm.cc -FILE: ../../../third_party/dart/runtime/vm/stub_code_arm_test.cc -FILE: ../../../third_party/dart/runtime/vm/stub_code_ia32.cc -FILE: ../../../third_party/dart/runtime/vm/stub_code_x64.cc -FILE: ../../../third_party/dart/runtime/vm/tags.h -FILE: ../../../third_party/dart/runtime/vm/thread_interrupter.cc -FILE: ../../../third_party/dart/runtime/vm/thread_interrupter.h -FILE: ../../../third_party/dart/runtime/vm/thread_interrupter_android.cc -FILE: ../../../third_party/dart/runtime/vm/thread_interrupter_linux.cc -FILE: ../../../third_party/dart/runtime/vm/thread_interrupter_macos.cc -FILE: ../../../third_party/dart/runtime/vm/thread_interrupter_win.cc -FILE: ../../../third_party/dart/runtime/vm/weak_table.cc -FILE: ../../../third_party/dart/runtime/vm/weak_table.h -FILE: ../../../third_party/dart/sdk/lib/_chrome/dart2js/chrome_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/_chrome/dart2js/chrome_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/_http/http.dart -FILE: ../../../third_party/dart/sdk/lib/_http/http_headers.dart -FILE: ../../../third_party/dart/sdk/lib/_http/http_impl.dart -FILE: ../../../third_party/dart/sdk/lib/_http/http_parser.dart -FILE: ../../../third_party/dart/sdk/lib/_http/http_session.dart -FILE: ../../../third_party/dart/sdk/lib/_http/websocket.dart -FILE: ../../../third_party/dart/sdk/lib/_http/websocket_impl.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/annotations.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/collection_patch.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/convert_patch.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/internal_patch.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/io_patch.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_helper.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_mirrors.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_names.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_primitives.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_rti.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/native_typed_data.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/typed_data_patch.dart -FILE: ../../../third_party/dart/sdk/lib/async/deferred_load.dart -FILE: ../../../third_party/dart/sdk/lib/async/schedule_microtask.dart -FILE: ../../../third_party/dart/sdk/lib/async/stream.dart -FILE: ../../../third_party/dart/sdk/lib/async/stream_transformers.dart -FILE: ../../../third_party/dart/sdk/lib/async/zone.dart -FILE: ../../../third_party/dart/sdk/lib/collection/collections.dart -FILE: ../../../third_party/dart/sdk/lib/collection/hash_map.dart -FILE: ../../../third_party/dart/sdk/lib/collection/hash_set.dart -FILE: ../../../third_party/dart/sdk/lib/collection/linked_hash_map.dart -FILE: ../../../third_party/dart/sdk/lib/collection/linked_hash_set.dart -FILE: ../../../third_party/dart/sdk/lib/collection/linked_list.dart -FILE: ../../../third_party/dart/sdk/lib/collection/list.dart -FILE: ../../../third_party/dart/sdk/lib/convert/ascii.dart -FILE: ../../../third_party/dart/sdk/lib/convert/byte_conversion.dart -FILE: ../../../third_party/dart/sdk/lib/convert/chunked_conversion.dart -FILE: ../../../third_party/dart/sdk/lib/convert/codec.dart -FILE: ../../../third_party/dart/sdk/lib/convert/convert.dart -FILE: ../../../third_party/dart/sdk/lib/convert/converter.dart -FILE: ../../../third_party/dart/sdk/lib/convert/encoding.dart -FILE: ../../../third_party/dart/sdk/lib/convert/html_escape.dart -FILE: ../../../third_party/dart/sdk/lib/convert/json.dart -FILE: ../../../third_party/dart/sdk/lib/convert/latin1.dart -FILE: ../../../third_party/dart/sdk/lib/convert/line_splitter.dart -FILE: ../../../third_party/dart/sdk/lib/convert/string_conversion.dart -FILE: ../../../third_party/dart/sdk/lib/convert/utf.dart -FILE: ../../../third_party/dart/sdk/lib/core/annotations.dart -FILE: ../../../third_party/dart/sdk/lib/core/null.dart -FILE: ../../../third_party/dart/sdk/lib/core/stacktrace.dart -FILE: ../../../third_party/dart/sdk/lib/core/string_sink.dart -FILE: ../../../third_party/dart/sdk/lib/core/symbol.dart -FILE: ../../../third_party/dart/sdk/lib/internal/list.dart -FILE: ../../../third_party/dart/sdk/lib/internal/print.dart -FILE: ../../../third_party/dart/sdk/lib/internal/symbol.dart -FILE: ../../../third_party/dart/sdk/lib/io/bytes_builder.dart -FILE: ../../../third_party/dart/sdk/lib/io/data_transformer.dart -FILE: ../../../third_party/dart/sdk/lib/io/file.dart -FILE: ../../../third_party/dart/sdk/lib/io/file_impl.dart -FILE: ../../../third_party/dart/sdk/lib/io/file_system_entity.dart -FILE: ../../../third_party/dart/sdk/lib/io/io_service.dart -FILE: ../../../third_party/dart/sdk/lib/io/io_sink.dart -FILE: ../../../third_party/dart/sdk/lib/io/link.dart -FILE: ../../../third_party/dart/sdk/lib/io/secure_socket.dart -FILE: ../../../third_party/dart/sdk/lib/io/socket.dart -FILE: ../../../third_party/dart/sdk/lib/io/stdio.dart -FILE: ../../../third_party/dart/sdk/lib/io/string_transformer.dart -FILE: ../../../third_party/dart/sdk/lib/js/dart2js/js_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/math/jenkins_smi_hash.dart -FILE: ../../../third_party/dart/sdk/lib/math/point.dart -FILE: ../../../third_party/dart/sdk/lib/math/rectangle.dart -FILE: ../../../third_party/dart/sdk/lib/mirrors/mirrors.dart -FILE: ../../../third_party/dart/sdk/lib/typed_data/typed_data.dart -FILE: ../../../third_party/dart/sdk/lib/vmservice/client.dart -FILE: ../../../third_party/dart/sdk/lib/vmservice/constants.dart -FILE: ../../../third_party/dart/sdk/lib/vmservice/message.dart -FILE: ../../../third_party/dart/sdk/lib/vmservice/message_router.dart -FILE: ../../../third_party/dart/sdk/lib/vmservice/running_isolate.dart -FILE: ../../../third_party/dart/sdk/lib/vmservice/running_isolates.dart -FILE: ../../../third_party/dart/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/build/import_crawler.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/polyfill.dart -FILE: ../../../third_party/dart/utils/compiler/create_snapshot_entry.dart ----------------------------------------------------------------------------------------------------- -Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: dart -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/runtime/lib/bigint.dart + ../../../third_party/dart/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/runtime/lib/bigint.dart -FILE: ../../../third_party/dart/runtime/lib/class_id.cc -FILE: ../../../third_party/dart/runtime/lib/class_id.dart -FILE: ../../../third_party/dart/runtime/lib/convert_patch.dart -FILE: ../../../third_party/dart/runtime/lib/lib_prefix.dart -FILE: ../../../third_party/dart/runtime/lib/linked_hash_map.cc -FILE: ../../../third_party/dart/runtime/lib/profiler.cc -FILE: ../../../third_party/dart/runtime/lib/profiler.dart -FILE: ../../../third_party/dart/runtime/observatory/bin/shell.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/app.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/object_graph.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/service.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/service_common.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/service_html.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/service_io.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/app/page.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/app/settings.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/app/view_model.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/allocation_profile.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/class_tree.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/debugger.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/heap_map.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate_reconnect.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/metrics.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/vm_connect.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/service/object.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/utils.dart -FILE: ../../../third_party/dart/runtime/observatory/web/main.dart -FILE: ../../../third_party/dart/runtime/platform/address_sanitizer.h -FILE: ../../../third_party/dart/runtime/platform/math.h -FILE: ../../../third_party/dart/runtime/platform/memory_sanitizer.h -FILE: ../../../third_party/dart/runtime/platform/safe_stack.h -FILE: ../../../third_party/dart/runtime/tools/verbose_gc_to_bmu.dart -FILE: ../../../third_party/dart/runtime/vm/ast_transformer.cc -FILE: ../../../third_party/dart/runtime/vm/ast_transformer.h -FILE: ../../../third_party/dart/runtime/vm/bigint_test.cc -FILE: ../../../third_party/dart/runtime/vm/bit_set_test.cc -FILE: ../../../third_party/dart/runtime/vm/code_patcher_arm64.cc -FILE: ../../../third_party/dart/runtime/vm/code_patcher_arm64_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm64.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm64.h -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_arm64.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_arm64.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_arm64.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/range_analysis.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/range_analysis.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/range_analysis_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/intrinsifier_arm64.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/method_recognizer.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/method_recognizer.h -FILE: ../../../third_party/dart/runtime/vm/constants_arm64.h -FILE: ../../../third_party/dart/runtime/vm/cpu_arm.h -FILE: ../../../third_party/dart/runtime/vm/cpu_arm64.cc -FILE: ../../../third_party/dart/runtime/vm/cpu_arm64.h -FILE: ../../../third_party/dart/runtime/vm/cpu_ia32.h -FILE: ../../../third_party/dart/runtime/vm/cpu_x64.h -FILE: ../../../third_party/dart/runtime/vm/cpuid.cc -FILE: ../../../third_party/dart/runtime/vm/cpuid.h -FILE: ../../../third_party/dart/runtime/vm/cpuinfo.h -FILE: ../../../third_party/dart/runtime/vm/cpuinfo_android.cc -FILE: ../../../third_party/dart/runtime/vm/cpuinfo_test.cc -FILE: ../../../third_party/dart/runtime/vm/cpuinfo_win.cc -FILE: ../../../third_party/dart/runtime/vm/debugger_arm64.cc -FILE: ../../../third_party/dart/runtime/vm/hash_table.h -FILE: ../../../third_party/dart/runtime/vm/hash_table_test.cc -FILE: ../../../third_party/dart/runtime/vm/instructions_arm64.cc -FILE: ../../../third_party/dart/runtime/vm/instructions_arm64.h -FILE: ../../../third_party/dart/runtime/vm/instructions_arm64_test.cc -FILE: ../../../third_party/dart/runtime/vm/metrics.cc -FILE: ../../../third_party/dart/runtime/vm/metrics.h -FILE: ../../../third_party/dart/runtime/vm/metrics_test.cc -FILE: ../../../third_party/dart/runtime/vm/object_arm64_test.cc -FILE: ../../../third_party/dart/runtime/vm/object_graph.cc -FILE: ../../../third_party/dart/runtime/vm/object_graph.h -FILE: ../../../third_party/dart/runtime/vm/object_graph_test.cc -FILE: ../../../third_party/dart/runtime/vm/regexp.cc -FILE: ../../../third_party/dart/runtime/vm/regexp.h -FILE: ../../../third_party/dart/runtime/vm/regexp_assembler.cc -FILE: ../../../third_party/dart/runtime/vm/regexp_assembler.h -FILE: ../../../third_party/dart/runtime/vm/regexp_assembler_ir.cc -FILE: ../../../third_party/dart/runtime/vm/regexp_assembler_ir.h -FILE: ../../../third_party/dart/runtime/vm/regexp_ast.cc -FILE: ../../../third_party/dart/runtime/vm/regexp_ast.h -FILE: ../../../third_party/dart/runtime/vm/regexp_parser.cc -FILE: ../../../third_party/dart/runtime/vm/regexp_parser.h -FILE: ../../../third_party/dart/runtime/vm/regexp_test.cc -FILE: ../../../third_party/dart/runtime/vm/report.cc -FILE: ../../../third_party/dart/runtime/vm/report.h -FILE: ../../../third_party/dart/runtime/vm/ring_buffer.h -FILE: ../../../third_party/dart/runtime/vm/ring_buffer_test.cc -FILE: ../../../third_party/dart/runtime/vm/runtime_entry_arm64.cc -FILE: ../../../third_party/dart/runtime/vm/scavenger_test.cc -FILE: ../../../third_party/dart/runtime/vm/simulator_arm64.cc -FILE: ../../../third_party/dart/runtime/vm/simulator_arm64.h -FILE: ../../../third_party/dart/runtime/vm/spaces.h -FILE: ../../../third_party/dart/runtime/vm/stack_frame_arm64.h -FILE: ../../../third_party/dart/runtime/vm/stub_code_arm64.cc -FILE: ../../../third_party/dart/runtime/vm/stub_code_arm64_test.cc -FILE: ../../../third_party/dart/runtime/vm/tags.cc -FILE: ../../../third_party/dart/runtime/vm/unibrow-inl.h -FILE: ../../../third_party/dart/runtime/vm/unibrow.cc -FILE: ../../../third_party/dart/runtime/vm/unibrow.h -FILE: ../../../third_party/dart/runtime/vm/verified_memory_test.cc -FILE: ../../../third_party/dart/runtime/vm/weak_code.cc -FILE: ../../../third_party/dart/runtime/vm/weak_code.h -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/isolate_serialization.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/linked_hash_map.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/shared/embedded_names.dart -FILE: ../../../third_party/dart/sdk/lib/collection/set.dart -FILE: ../../../third_party/dart/sdk/lib/core/sink.dart -FILE: ../../../third_party/dart/sdk/lib/developer/profiler.dart -FILE: ../../../third_party/dart/sdk/lib/io/process.dart -FILE: ../../../third_party/dart/sdk/lib/io/service_object.dart -FILE: ../../../third_party/dart/sdk/lib/isolate/capability.dart -FILE: ../../../third_party/dart/sdk/lib/profiler/profiler.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/.status -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/lib/src/css_class_set.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/dart_support.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/interop.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/interop_support.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/src/mirror_initializer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/src/static_initializer.dart ----------------------------------------------------------------------------------------------------- -Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: dart -ORIGIN: ../../../third_party/dart/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/.mailmap -FILE: ../../../third_party/dart/client/idea/.idea/.name -FILE: ../../../third_party/dart/client/idea/.idea/inspectionProfiles/Project_Default.xml -FILE: ../../../third_party/dart/client/idea/.idea/vcs.xml -FILE: ../../../third_party/dart/runtime/CPPLINT.cfg -FILE: ../../../third_party/dart/runtime/observatory/.analysis_options -FILE: ../../../third_party/dart/runtime/observatory/lib/elements.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/img/chromium_icon.png -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/img/dart_icon.png -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/img/isolate_icon.png -FILE: ../../../third_party/dart/runtime/observatory/maintainers/pubspec.template -FILE: ../../../third_party/dart/runtime/observatory/web/favicon.ico -FILE: ../../../third_party/dart/runtime/observatory/web/index.html -FILE: ../../../third_party/dart/runtime/observatory/web/third_party/trace_viewer_full.html -FILE: ../../../third_party/dart/runtime/observatory/web/timeline.html -FILE: ../../../third_party/dart/runtime/vm/snapshot_test_in.dat -FILE: ../../../third_party/dart/samples/build_dart/test.foo -FILE: ../../../third_party/dart/samples/build_dart_simple/test.foo -FILE: ../../../third_party/dart/sdk/lib/html/html_common/conversions_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/html/html_common/html_common.dart -FILE: ../../../third_party/dart/sdk/lib/libraries.json -FILE: ../../../third_party/dart/sdk/lib/vmservice_libraries.json -FILE: ../../../third_party/dart/third_party/7zip.tar.gz.sha1 -FILE: ../../../third_party/dart/third_party/clang.tar.gz.sha1 -FILE: ../../../third_party/dart/third_party/gsutil.tar.gz.sha1 ----------------------------------------------------------------------------------------------------- -Copyright 2012, the Dart project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: dart -ORIGIN: ../../../third_party/dart/client/dart.js + ../../../third_party/dart/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/DEPS -FILE: ../../../third_party/dart/client/dart.js -FILE: ../../../third_party/dart/runtime/bin/builtin.cc -FILE: ../../../third_party/dart/runtime/bin/builtin.dart -FILE: ../../../third_party/dart/runtime/bin/builtin.h -FILE: ../../../third_party/dart/runtime/bin/builtin_gen_snapshot.cc -FILE: ../../../third_party/dart/runtime/bin/builtin_in.cc -FILE: ../../../third_party/dart/runtime/bin/builtin_natives.cc -FILE: ../../../third_party/dart/runtime/bin/builtin_nolib.cc -FILE: ../../../third_party/dart/runtime/bin/common_patch.dart -FILE: ../../../third_party/dart/runtime/bin/crypto.cc -FILE: ../../../third_party/dart/runtime/bin/crypto.h -FILE: ../../../third_party/dart/runtime/bin/crypto_android.cc -FILE: ../../../third_party/dart/runtime/bin/crypto_linux.cc -FILE: ../../../third_party/dart/runtime/bin/crypto_macos.cc -FILE: ../../../third_party/dart/runtime/bin/crypto_win.cc -FILE: ../../../third_party/dart/runtime/bin/dartutils.cc -FILE: ../../../third_party/dart/runtime/bin/dartutils.h -FILE: ../../../third_party/dart/runtime/bin/directory.cc -FILE: ../../../third_party/dart/runtime/bin/directory.h -FILE: ../../../third_party/dart/runtime/bin/directory_android.cc -FILE: ../../../third_party/dart/runtime/bin/directory_linux.cc -FILE: ../../../third_party/dart/runtime/bin/directory_macos.cc -FILE: ../../../third_party/dart/runtime/bin/directory_patch.dart -FILE: ../../../third_party/dart/runtime/bin/directory_win.cc -FILE: ../../../third_party/dart/runtime/bin/eventhandler.cc -FILE: ../../../third_party/dart/runtime/bin/eventhandler.h -FILE: ../../../third_party/dart/runtime/bin/eventhandler_android.cc -FILE: ../../../third_party/dart/runtime/bin/eventhandler_android.h -FILE: ../../../third_party/dart/runtime/bin/eventhandler_linux.cc -FILE: ../../../third_party/dart/runtime/bin/eventhandler_linux.h -FILE: ../../../third_party/dart/runtime/bin/eventhandler_macos.cc -FILE: ../../../third_party/dart/runtime/bin/eventhandler_macos.h -FILE: ../../../third_party/dart/runtime/bin/eventhandler_patch.dart -FILE: ../../../third_party/dart/runtime/bin/eventhandler_test.cc -FILE: ../../../third_party/dart/runtime/bin/eventhandler_win.h -FILE: ../../../third_party/dart/runtime/bin/extensions.cc -FILE: ../../../third_party/dart/runtime/bin/extensions.h -FILE: ../../../third_party/dart/runtime/bin/extensions_android.cc -FILE: ../../../third_party/dart/runtime/bin/extensions_linux.cc -FILE: ../../../third_party/dart/runtime/bin/extensions_macos.cc -FILE: ../../../third_party/dart/runtime/bin/extensions_win.cc -FILE: ../../../third_party/dart/runtime/bin/fdutils.h -FILE: ../../../third_party/dart/runtime/bin/fdutils_android.cc -FILE: ../../../third_party/dart/runtime/bin/fdutils_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/fdutils_linux.cc -FILE: ../../../third_party/dart/runtime/bin/fdutils_macos.cc -FILE: ../../../third_party/dart/runtime/bin/file_android.cc -FILE: ../../../third_party/dart/runtime/bin/file_linux.cc -FILE: ../../../third_party/dart/runtime/bin/file_macos.cc -FILE: ../../../third_party/dart/runtime/bin/file_patch.dart -FILE: ../../../third_party/dart/runtime/bin/file_test.cc -FILE: ../../../third_party/dart/runtime/bin/file_win.cc -FILE: ../../../third_party/dart/runtime/bin/hashmap_test.cc -FILE: ../../../third_party/dart/runtime/bin/io_buffer.cc -FILE: ../../../third_party/dart/runtime/bin/io_buffer.h -FILE: ../../../third_party/dart/runtime/bin/io_natives.h -FILE: ../../../third_party/dart/runtime/bin/isolate_data.h -FILE: ../../../third_party/dart/runtime/bin/lockers.h -FILE: ../../../third_party/dart/runtime/bin/log.h -FILE: ../../../third_party/dart/runtime/bin/log_android.cc -FILE: ../../../third_party/dart/runtime/bin/log_linux.cc -FILE: ../../../third_party/dart/runtime/bin/log_macos.cc -FILE: ../../../third_party/dart/runtime/bin/log_win.cc -FILE: ../../../third_party/dart/runtime/bin/main.cc -FILE: ../../../third_party/dart/runtime/bin/platform.cc -FILE: ../../../third_party/dart/runtime/bin/platform.h -FILE: ../../../third_party/dart/runtime/bin/platform_android.cc -FILE: ../../../third_party/dart/runtime/bin/platform_linux.cc -FILE: ../../../third_party/dart/runtime/bin/platform_macos.cc -FILE: ../../../third_party/dart/runtime/bin/platform_patch.dart -FILE: ../../../third_party/dart/runtime/bin/platform_win.cc -FILE: ../../../third_party/dart/runtime/bin/process.h -FILE: ../../../third_party/dart/runtime/bin/process_android.cc -FILE: ../../../third_party/dart/runtime/bin/process_linux.cc -FILE: ../../../third_party/dart/runtime/bin/process_macos.cc -FILE: ../../../third_party/dart/runtime/bin/process_win.cc -FILE: ../../../third_party/dart/runtime/bin/run_vm_tests.cc -FILE: ../../../third_party/dart/runtime/bin/secure_socket_patch.dart -FILE: ../../../third_party/dart/runtime/bin/secure_socket_unsupported.cc -FILE: ../../../third_party/dart/runtime/bin/socket_android.cc -FILE: ../../../third_party/dart/runtime/bin/socket_base_android.cc -FILE: ../../../third_party/dart/runtime/bin/socket_base_android.h -FILE: ../../../third_party/dart/runtime/bin/socket_base_linux.h -FILE: ../../../third_party/dart/runtime/bin/socket_base_macos.h -FILE: ../../../third_party/dart/runtime/bin/socket_base_win.h -FILE: ../../../third_party/dart/runtime/bin/test_extension.c -FILE: ../../../third_party/dart/runtime/bin/test_extension_dllmain_win.cc -FILE: ../../../third_party/dart/runtime/bin/thread.h -FILE: ../../../third_party/dart/runtime/bin/thread_android.cc -FILE: ../../../third_party/dart/runtime/bin/thread_android.h -FILE: ../../../third_party/dart/runtime/bin/thread_linux.cc -FILE: ../../../third_party/dart/runtime/bin/thread_linux.h -FILE: ../../../third_party/dart/runtime/bin/thread_macos.cc -FILE: ../../../third_party/dart/runtime/bin/thread_macos.h -FILE: ../../../third_party/dart/runtime/bin/thread_win.cc -FILE: ../../../third_party/dart/runtime/bin/thread_win.h -FILE: ../../../third_party/dart/runtime/bin/utils.h -FILE: ../../../third_party/dart/runtime/bin/utils_android.cc -FILE: ../../../third_party/dart/runtime/bin/utils_linux.cc -FILE: ../../../third_party/dart/runtime/bin/utils_macos.cc -FILE: ../../../third_party/dart/runtime/bin/utils_win.cc -FILE: ../../../third_party/dart/runtime/bin/utils_win.h -FILE: ../../../third_party/dart/runtime/include/dart_api.h -FILE: ../../../third_party/dart/runtime/lib/array.cc -FILE: ../../../third_party/dart/runtime/lib/array.dart -FILE: ../../../third_party/dart/runtime/lib/array_patch.dart -FILE: ../../../third_party/dart/runtime/lib/bool.cc -FILE: ../../../third_party/dart/runtime/lib/bool_patch.dart -FILE: ../../../third_party/dart/runtime/lib/date.cc -FILE: ../../../third_party/dart/runtime/lib/date_patch.dart -FILE: ../../../third_party/dart/runtime/lib/double.dart -FILE: ../../../third_party/dart/runtime/lib/double_patch.dart -FILE: ../../../third_party/dart/runtime/lib/empty_source.dart -FILE: ../../../third_party/dart/runtime/lib/errors.cc -FILE: ../../../third_party/dart/runtime/lib/errors_patch.dart -FILE: ../../../third_party/dart/runtime/lib/expando_patch.dart -FILE: ../../../third_party/dart/runtime/lib/function.cc -FILE: ../../../third_party/dart/runtime/lib/function_patch.dart -FILE: ../../../third_party/dart/runtime/lib/growable_array.cc -FILE: ../../../third_party/dart/runtime/lib/growable_array.dart -FILE: ../../../third_party/dart/runtime/lib/identical.cc -FILE: ../../../third_party/dart/runtime/lib/identical_patch.dart -FILE: ../../../third_party/dart/runtime/lib/immutable_map.dart -FILE: ../../../third_party/dart/runtime/lib/integers.cc -FILE: ../../../third_party/dart/runtime/lib/integers.dart -FILE: ../../../third_party/dart/runtime/lib/integers_patch.dart -FILE: ../../../third_party/dart/runtime/lib/invocation_mirror_patch.dart -FILE: ../../../third_party/dart/runtime/lib/isolate.cc -FILE: ../../../third_party/dart/runtime/lib/isolate_patch.dart -FILE: ../../../third_party/dart/runtime/lib/map_patch.dart -FILE: ../../../third_party/dart/runtime/lib/math_patch.dart -FILE: ../../../third_party/dart/runtime/lib/mirrors.cc -FILE: ../../../third_party/dart/runtime/lib/mirrors_impl.dart -FILE: ../../../third_party/dart/runtime/lib/mirrors_patch.dart -FILE: ../../../third_party/dart/runtime/lib/object_patch.dart -FILE: ../../../third_party/dart/runtime/lib/print_patch.dart -FILE: ../../../third_party/dart/runtime/lib/regexp.cc -FILE: ../../../third_party/dart/runtime/lib/regexp_patch.dart -FILE: ../../../third_party/dart/runtime/lib/stopwatch.cc -FILE: ../../../third_party/dart/runtime/lib/stopwatch_patch.dart -FILE: ../../../third_party/dart/runtime/lib/string_buffer_patch.dart -FILE: ../../../third_party/dart/runtime/lib/string_patch.dart -FILE: ../../../third_party/dart/runtime/lib/timer_patch.dart -FILE: ../../../third_party/dart/runtime/lib/type_patch.dart -FILE: ../../../third_party/dart/runtime/lib/weak_property.cc -FILE: ../../../third_party/dart/runtime/lib/weak_property.dart -FILE: ../../../third_party/dart/runtime/platform/assert.cc -FILE: ../../../third_party/dart/runtime/platform/assert.h -FILE: ../../../third_party/dart/runtime/platform/floating_point.h -FILE: ../../../third_party/dart/runtime/platform/floating_point_win.cc -FILE: ../../../third_party/dart/runtime/platform/floating_point_win.h -FILE: ../../../third_party/dart/runtime/platform/globals.h -FILE: ../../../third_party/dart/runtime/platform/hashmap.cc -FILE: ../../../third_party/dart/runtime/platform/hashmap.h -FILE: ../../../third_party/dart/runtime/platform/text_buffer.cc -FILE: ../../../third_party/dart/runtime/platform/text_buffer.h -FILE: ../../../third_party/dart/runtime/platform/utils.cc -FILE: ../../../third_party/dart/runtime/platform/utils.h -FILE: ../../../third_party/dart/runtime/platform/utils_android.cc -FILE: ../../../third_party/dart/runtime/platform/utils_android.h -FILE: ../../../third_party/dart/runtime/platform/utils_linux.cc -FILE: ../../../third_party/dart/runtime/platform/utils_linux.h -FILE: ../../../third_party/dart/runtime/platform/utils_macos.cc -FILE: ../../../third_party/dart/runtime/platform/utils_macos.h -FILE: ../../../third_party/dart/runtime/platform/utils_win.cc -FILE: ../../../third_party/dart/runtime/platform/utils_win.h -FILE: ../../../third_party/dart/runtime/vm/allocation.cc -FILE: ../../../third_party/dart/runtime/vm/allocation_test.cc -FILE: ../../../third_party/dart/runtime/vm/assert_test.cc -FILE: ../../../third_party/dart/runtime/vm/ast.h -FILE: ../../../third_party/dart/runtime/vm/ast_printer_test.cc -FILE: ../../../third_party/dart/runtime/vm/ast_test.cc -FILE: ../../../third_party/dart/runtime/vm/base_isolate.h -FILE: ../../../third_party/dart/runtime/vm/benchmark_test.cc -FILE: ../../../third_party/dart/runtime/vm/benchmark_test.h -FILE: ../../../third_party/dart/runtime/vm/bit_set.h -FILE: ../../../third_party/dart/runtime/vm/bit_vector.cc -FILE: ../../../third_party/dart/runtime/vm/bit_vector.h -FILE: ../../../third_party/dart/runtime/vm/bit_vector_test.cc -FILE: ../../../third_party/dart/runtime/vm/bitfield_test.cc -FILE: ../../../third_party/dart/runtime/vm/bitmap.cc -FILE: ../../../third_party/dart/runtime/vm/bitmap.h -FILE: ../../../third_party/dart/runtime/vm/bitmap_test.cc -FILE: ../../../third_party/dart/runtime/vm/boolfield.h -FILE: ../../../third_party/dart/runtime/vm/boolfield_test.cc -FILE: ../../../third_party/dart/runtime/vm/bootstrap.cc -FILE: ../../../third_party/dart/runtime/vm/bootstrap.h -FILE: ../../../third_party/dart/runtime/vm/bootstrap_natives.cc -FILE: ../../../third_party/dart/runtime/vm/bootstrap_natives.h -FILE: ../../../third_party/dart/runtime/vm/bootstrap_nocore.cc -FILE: ../../../third_party/dart/runtime/vm/class_finalizer.h -FILE: ../../../third_party/dart/runtime/vm/class_finalizer_test.cc -FILE: ../../../third_party/dart/runtime/vm/class_table.cc -FILE: ../../../third_party/dart/runtime/vm/class_table.h -FILE: ../../../third_party/dart/runtime/vm/code_descriptors.cc -FILE: ../../../third_party/dart/runtime/vm/code_descriptors.h -FILE: ../../../third_party/dart/runtime/vm/code_descriptors_test.cc -FILE: ../../../third_party/dart/runtime/vm/code_observers.cc -FILE: ../../../third_party/dart/runtime/vm/code_observers.h -FILE: ../../../third_party/dart/runtime/vm/code_patcher.cc -FILE: ../../../third_party/dart/runtime/vm/code_patcher.h -FILE: ../../../third_party/dart/runtime/vm/code_patcher_ia32.cc -FILE: ../../../third_party/dart/runtime/vm/code_patcher_x64.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/aot/aot_call_specializer.h -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler.h -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_ia32_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_x64_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_x86.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/constant_propagator.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_printer.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_printer.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/inliner.h -FILE: ../../../third_party/dart/runtime/vm/compiler/cha.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/cha.h -FILE: ../../../third_party/dart/runtime/vm/compiler/cha_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/code_generator_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/flow_graph_builder.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/flow_graph_builder.h -FILE: ../../../third_party/dart/runtime/vm/compiler/intrinsifier.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/intrinsifier.h -FILE: ../../../third_party/dart/runtime/vm/compiler/jit/compiler.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/jit/compiler.h -FILE: ../../../third_party/dart/runtime/vm/compiler_test.cc -FILE: ../../../third_party/dart/runtime/vm/cpu.h -FILE: ../../../third_party/dart/runtime/vm/cpu_arm.cc -FILE: ../../../third_party/dart/runtime/vm/cpu_test.cc -FILE: ../../../third_party/dart/runtime/vm/cpu_x64.cc -FILE: ../../../third_party/dart/runtime/vm/cpuinfo_linux.cc -FILE: ../../../third_party/dart/runtime/vm/cpuinfo_macos.cc -FILE: ../../../third_party/dart/runtime/vm/dart_api_impl_test.cc -FILE: ../../../third_party/dart/runtime/vm/dart_api_message.cc -FILE: ../../../third_party/dart/runtime/vm/dart_api_message.h -FILE: ../../../third_party/dart/runtime/vm/dart_api_state.h -FILE: ../../../third_party/dart/runtime/vm/dart_entry_test.cc -FILE: ../../../third_party/dart/runtime/vm/datastream.h -FILE: ../../../third_party/dart/runtime/vm/debugger.cc -FILE: ../../../third_party/dart/runtime/vm/debugger.h -FILE: ../../../third_party/dart/runtime/vm/debugger_api_impl_test.cc -FILE: ../../../third_party/dart/runtime/vm/double_internals.h -FILE: ../../../third_party/dart/runtime/vm/exceptions_test.cc -FILE: ../../../third_party/dart/runtime/vm/find_code_object_test.cc -FILE: ../../../third_party/dart/runtime/vm/flag_list.h -FILE: ../../../third_party/dart/runtime/vm/flags.cc -FILE: ../../../third_party/dart/runtime/vm/flags.h -FILE: ../../../third_party/dart/runtime/vm/flags_test.cc -FILE: ../../../third_party/dart/runtime/vm/freelist.h -FILE: ../../../third_party/dart/runtime/vm/freelist_test.cc -FILE: ../../../third_party/dart/runtime/vm/globals.h -FILE: ../../../third_party/dart/runtime/vm/growable_array.h -FILE: ../../../third_party/dart/runtime/vm/growable_array_test.cc -FILE: ../../../third_party/dart/runtime/vm/handles.cc -FILE: ../../../third_party/dart/runtime/vm/handles_impl.h -FILE: ../../../third_party/dart/runtime/vm/handles_test.cc -FILE: ../../../third_party/dart/runtime/vm/hash_map.h -FILE: ../../../third_party/dart/runtime/vm/hash_map_test.cc -FILE: ../../../third_party/dart/runtime/vm/heap.cc -FILE: ../../../third_party/dart/runtime/vm/heap.h -FILE: ../../../third_party/dart/runtime/vm/heap_test.cc -FILE: ../../../third_party/dart/runtime/vm/instructions_ia32.cc -FILE: ../../../third_party/dart/runtime/vm/instructions_ia32.h -FILE: ../../../third_party/dart/runtime/vm/instructions_ia32_test.cc -FILE: ../../../third_party/dart/runtime/vm/instructions_x64.cc -FILE: ../../../third_party/dart/runtime/vm/instructions_x64.h -FILE: ../../../third_party/dart/runtime/vm/instructions_x64_test.cc -FILE: ../../../third_party/dart/runtime/vm/isolate_test.cc -FILE: ../../../third_party/dart/runtime/vm/json_test.cc -FILE: ../../../third_party/dart/runtime/vm/lockers.h -FILE: ../../../third_party/dart/runtime/vm/megamorphic_cache_table.cc -FILE: ../../../third_party/dart/runtime/vm/megamorphic_cache_table.h -FILE: ../../../third_party/dart/runtime/vm/memory_region.h -FILE: ../../../third_party/dart/runtime/vm/memory_region_test.cc -FILE: ../../../third_party/dart/runtime/vm/message_handler_test.cc -FILE: ../../../third_party/dart/runtime/vm/message_test.cc -FILE: ../../../third_party/dart/runtime/vm/native_arguments.h -FILE: ../../../third_party/dart/runtime/vm/native_message_handler.cc -FILE: ../../../third_party/dart/runtime/vm/native_message_handler.h -FILE: ../../../third_party/dart/runtime/vm/object.cc -FILE: ../../../third_party/dart/runtime/vm/object.h -FILE: ../../../third_party/dart/runtime/vm/object_arm_test.cc -FILE: ../../../third_party/dart/runtime/vm/object_ia32_test.cc -FILE: ../../../third_party/dart/runtime/vm/object_set.h -FILE: ../../../third_party/dart/runtime/vm/object_store.h -FILE: ../../../third_party/dart/runtime/vm/object_test.cc -FILE: ../../../third_party/dart/runtime/vm/object_x64_test.cc -FILE: ../../../third_party/dart/runtime/vm/os_android.cc -FILE: ../../../third_party/dart/runtime/vm/os_linux.cc -FILE: ../../../third_party/dart/runtime/vm/os_macos.cc -FILE: ../../../third_party/dart/runtime/vm/os_thread.h -FILE: ../../../third_party/dart/runtime/vm/os_thread_android.cc -FILE: ../../../third_party/dart/runtime/vm/os_thread_android.h -FILE: ../../../third_party/dart/runtime/vm/os_thread_linux.cc -FILE: ../../../third_party/dart/runtime/vm/os_thread_linux.h -FILE: ../../../third_party/dart/runtime/vm/os_thread_macos.cc -FILE: ../../../third_party/dart/runtime/vm/os_thread_macos.h -FILE: ../../../third_party/dart/runtime/vm/os_thread_win.cc -FILE: ../../../third_party/dart/runtime/vm/os_thread_win.h -FILE: ../../../third_party/dart/runtime/vm/os_win.cc -FILE: ../../../third_party/dart/runtime/vm/pages.cc -FILE: ../../../third_party/dart/runtime/vm/pages_test.cc -FILE: ../../../third_party/dart/runtime/vm/parser.cc -FILE: ../../../third_party/dart/runtime/vm/parser.h -FILE: ../../../third_party/dart/runtime/vm/port.cc -FILE: ../../../third_party/dart/runtime/vm/port_test.cc -FILE: ../../../third_party/dart/runtime/vm/proccpuinfo.cc -FILE: ../../../third_party/dart/runtime/vm/proccpuinfo.h -FILE: ../../../third_party/dart/runtime/vm/raw_object.cc -FILE: ../../../third_party/dart/runtime/vm/raw_object.h -FILE: ../../../third_party/dart/runtime/vm/raw_object_snapshot.cc -FILE: ../../../third_party/dart/runtime/vm/resolver_test.cc -FILE: ../../../third_party/dart/runtime/vm/scanner.cc -FILE: ../../../third_party/dart/runtime/vm/scanner_test.cc -FILE: ../../../third_party/dart/runtime/vm/scavenger.h -FILE: ../../../third_party/dart/runtime/vm/scopes.cc -FILE: ../../../third_party/dart/runtime/vm/scopes.h -FILE: ../../../third_party/dart/runtime/vm/scopes_test.cc -FILE: ../../../third_party/dart/runtime/vm/snapshot.cc -FILE: ../../../third_party/dart/runtime/vm/snapshot.h -FILE: ../../../third_party/dart/runtime/vm/snapshot_ids.h -FILE: ../../../third_party/dart/runtime/vm/snapshot_test.cc -FILE: ../../../third_party/dart/runtime/vm/snapshot_test.dart -FILE: ../../../third_party/dart/runtime/vm/stack_frame.cc -FILE: ../../../third_party/dart/runtime/vm/stack_frame_test.cc -FILE: ../../../third_party/dart/runtime/vm/store_buffer.cc -FILE: ../../../third_party/dart/runtime/vm/store_buffer.h -FILE: ../../../third_party/dart/runtime/vm/stub_code.cc -FILE: ../../../third_party/dart/runtime/vm/symbols.cc -FILE: ../../../third_party/dart/runtime/vm/symbols.h -FILE: ../../../third_party/dart/runtime/vm/thread_pool.cc -FILE: ../../../third_party/dart/runtime/vm/thread_pool.h -FILE: ../../../third_party/dart/runtime/vm/thread_pool_test.cc -FILE: ../../../third_party/dart/runtime/vm/thread_test.cc -FILE: ../../../third_party/dart/runtime/vm/token.h -FILE: ../../../third_party/dart/runtime/vm/unicode.cc -FILE: ../../../third_party/dart/runtime/vm/unicode.h -FILE: ../../../third_party/dart/runtime/vm/unit_test.cc -FILE: ../../../third_party/dart/runtime/vm/utils_test.cc -FILE: ../../../third_party/dart/runtime/vm/verifier.cc -FILE: ../../../third_party/dart/runtime/vm/version.h -FILE: ../../../third_party/dart/runtime/vm/version_in.cc -FILE: ../../../third_party/dart/runtime/vm/virtual_memory.cc -FILE: ../../../third_party/dart/runtime/vm/virtual_memory.h -FILE: ../../../third_party/dart/runtime/vm/virtual_memory_android.cc -FILE: ../../../third_party/dart/runtime/vm/virtual_memory_linux.cc -FILE: ../../../third_party/dart/runtime/vm/virtual_memory_macos.cc -FILE: ../../../third_party/dart/runtime/vm/virtual_memory_test.cc -FILE: ../../../third_party/dart/runtime/vm/virtual_memory_win.cc -FILE: ../../../third_party/dart/runtime/vm/zone.cc -FILE: ../../../third_party/dart/runtime/vm/zone.h -FILE: ../../../third_party/dart/runtime/vm/zone_test.cc -FILE: ../../../third_party/dart/samples/build_dart/bin/test.dart -FILE: ../../../third_party/dart/samples/build_dart/build.dart -FILE: ../../../third_party/dart/samples/build_dart_simple/build.dart -FILE: ../../../third_party/dart/samples/build_dart_simple/test.dart -FILE: ../../../third_party/dart/samples/sample_extension/sample_asynchronous_extension.dart -FILE: ../../../third_party/dart/samples/sample_extension/sample_extension.cc -FILE: ../../../third_party/dart/samples/sample_extension/sample_extension_dllmain_win.cc -FILE: ../../../third_party/dart/samples/sample_extension/sample_synchronous_extension.dart -FILE: ../../../third_party/dart/samples/sample_extension/test_sample_asynchronous_extension.dart -FILE: ../../../third_party/dart/samples/sample_extension/test_sample_synchronous_extension.dart -FILE: ../../../third_party/dart/samples/samples.status -FILE: ../../../third_party/dart/sdk/lib/_http/crypto.dart -FILE: ../../../third_party/dart/sdk/lib/_http/http_date.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/async_patch.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/constant_map.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/core_patch.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/foreign_helper.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/interceptors.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/isolate_helper.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/isolate_patch.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_array.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_number.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_string.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/math_patch.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/mirrors_patch.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/mirrors_patch_cfe.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/native_helper.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/regexp_helper.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/string_helper.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart -FILE: ../../../third_party/dart/sdk/lib/async/async.dart -FILE: ../../../third_party/dart/sdk/lib/async/async_error.dart -FILE: ../../../third_party/dart/sdk/lib/async/broadcast_stream_controller.dart -FILE: ../../../third_party/dart/sdk/lib/async/future.dart -FILE: ../../../third_party/dart/sdk/lib/async/future_impl.dart -FILE: ../../../third_party/dart/sdk/lib/async/stream_controller.dart -FILE: ../../../third_party/dart/sdk/lib/async/stream_impl.dart -FILE: ../../../third_party/dart/sdk/lib/async/stream_pipe.dart -FILE: ../../../third_party/dart/sdk/lib/async/timer.dart -FILE: ../../../third_party/dart/sdk/lib/collection/collection.dart -FILE: ../../../third_party/dart/sdk/lib/collection/iterable.dart -FILE: ../../../third_party/dart/sdk/lib/collection/iterator.dart -FILE: ../../../third_party/dart/sdk/lib/collection/maps.dart -FILE: ../../../third_party/dart/sdk/lib/collection/splay_tree.dart -FILE: ../../../third_party/dart/sdk/lib/core/bool.dart -FILE: ../../../third_party/dart/sdk/lib/core/core.dart -FILE: ../../../third_party/dart/sdk/lib/core/double.dart -FILE: ../../../third_party/dart/sdk/lib/core/errors.dart -FILE: ../../../third_party/dart/sdk/lib/core/exceptions.dart -FILE: ../../../third_party/dart/sdk/lib/core/expando.dart -FILE: ../../../third_party/dart/sdk/lib/core/identical.dart -FILE: ../../../third_party/dart/sdk/lib/core/int.dart -FILE: ../../../third_party/dart/sdk/lib/core/invocation.dart -FILE: ../../../third_party/dart/sdk/lib/core/iterator.dart -FILE: ../../../third_party/dart/sdk/lib/core/list.dart -FILE: ../../../third_party/dart/sdk/lib/core/num.dart -FILE: ../../../third_party/dart/sdk/lib/core/object.dart -FILE: ../../../third_party/dart/sdk/lib/core/print.dart -FILE: ../../../third_party/dart/sdk/lib/core/regexp.dart -FILE: ../../../third_party/dart/sdk/lib/core/string.dart -FILE: ../../../third_party/dart/sdk/lib/core/type.dart -FILE: ../../../third_party/dart/sdk/lib/core/uri.dart -FILE: ../../../third_party/dart/sdk/lib/html/dart2js/html_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/html/dart2js/html_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/html/dartium/nativewrappers.dart -FILE: ../../../third_party/dart/sdk/lib/html/html_common/conversions.dart -FILE: ../../../third_party/dart/sdk/lib/html/html_common/css_class_set.dart -FILE: ../../../third_party/dart/sdk/lib/html/html_common/html_common_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/html/html_common/metadata.dart -FILE: ../../../third_party/dart/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/internal/async_cast.dart -FILE: ../../../third_party/dart/sdk/lib/internal/cast.dart -FILE: ../../../third_party/dart/sdk/lib/internal/internal.dart -FILE: ../../../third_party/dart/sdk/lib/io/common.dart -FILE: ../../../third_party/dart/sdk/lib/io/directory.dart -FILE: ../../../third_party/dart/sdk/lib/io/directory_impl.dart -FILE: ../../../third_party/dart/sdk/lib/io/eventhandler.dart -FILE: ../../../third_party/dart/sdk/lib/io/io.dart -FILE: ../../../third_party/dart/sdk/lib/io/platform.dart -FILE: ../../../third_party/dart/sdk/lib/io/platform_impl.dart -FILE: ../../../third_party/dart/sdk/lib/io/secure_server_socket.dart -FILE: ../../../third_party/dart/sdk/lib/isolate/isolate.dart -FILE: ../../../third_party/dart/sdk/lib/math/math.dart -FILE: ../../../third_party/dart/sdk/lib/math/random.dart -FILE: ../../../third_party/dart/sdk/lib/svg/dart2js/svg_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/svg/dart2js/svg_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/svg/dart2js/svg_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/svg/dart2js/svg_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/web_audio/dart2js/web_audio_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/web_audio/dart2js/web_audio_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/web_audio/dart2js/web_audio_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart ----------------------------------------------------------------------------------------------------- -Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: dart -ORIGIN: ../../../third_party/dart/runtime/bin/cli.cc + ../../../third_party/dart/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/runtime/bin/cli.cc -FILE: ../../../third_party/dart/runtime/bin/cli_patch.dart -FILE: ../../../third_party/dart/runtime/bin/dfe.cc -FILE: ../../../third_party/dart/runtime/bin/dfe.h -FILE: ../../../third_party/dart/runtime/bin/error_exit.cc -FILE: ../../../third_party/dart/runtime/bin/error_exit.h -FILE: ../../../third_party/dart/runtime/bin/gzip.cc -FILE: ../../../third_party/dart/runtime/bin/gzip.h -FILE: ../../../third_party/dart/runtime/bin/isolate_data.cc -FILE: ../../../third_party/dart/runtime/bin/main_options.cc -FILE: ../../../third_party/dart/runtime/bin/main_options.h -FILE: ../../../third_party/dart/runtime/bin/namespace.cc -FILE: ../../../third_party/dart/runtime/bin/namespace.h -FILE: ../../../third_party/dart/runtime/bin/namespace_android.cc -FILE: ../../../third_party/dart/runtime/bin/namespace_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/namespace_linux.cc -FILE: ../../../third_party/dart/runtime/bin/namespace_macos.cc -FILE: ../../../third_party/dart/runtime/bin/namespace_patch.dart -FILE: ../../../third_party/dart/runtime/bin/namespace_win.cc -FILE: ../../../third_party/dart/runtime/bin/options.cc -FILE: ../../../third_party/dart/runtime/bin/options.h -FILE: ../../../third_party/dart/runtime/bin/secure_socket_filter.cc -FILE: ../../../third_party/dart/runtime/bin/secure_socket_filter.h -FILE: ../../../third_party/dart/runtime/bin/secure_socket_utils.cc -FILE: ../../../third_party/dart/runtime/bin/secure_socket_utils.h -FILE: ../../../third_party/dart/runtime/bin/security_context.cc -FILE: ../../../third_party/dart/runtime/bin/security_context.h -FILE: ../../../third_party/dart/runtime/bin/security_context_android.cc -FILE: ../../../third_party/dart/runtime/bin/security_context_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/security_context_linux.cc -FILE: ../../../third_party/dart/runtime/bin/security_context_macos.cc -FILE: ../../../third_party/dart/runtime/bin/security_context_win.cc -FILE: ../../../third_party/dart/runtime/bin/snapshot_utils.cc -FILE: ../../../third_party/dart/runtime/bin/snapshot_utils.h -FILE: ../../../third_party/dart/runtime/bin/socket_base.cc -FILE: ../../../third_party/dart/runtime/bin/socket_base.h -FILE: ../../../third_party/dart/runtime/bin/sync_socket.cc -FILE: ../../../third_party/dart/runtime/bin/sync_socket.h -FILE: ../../../third_party/dart/runtime/bin/sync_socket_android.cc -FILE: ../../../third_party/dart/runtime/bin/sync_socket_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/sync_socket_linux.cc -FILE: ../../../third_party/dart/runtime/bin/sync_socket_macos.cc -FILE: ../../../third_party/dart/runtime/bin/sync_socket_patch.dart -FILE: ../../../third_party/dart/runtime/bin/sync_socket_win.cc -FILE: ../../../third_party/dart/runtime/lib/async.cc -FILE: ../../../third_party/dart/runtime/lib/bigint_patch.dart -FILE: ../../../third_party/dart/runtime/lib/class_id_fasta.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/containers/search_bar.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/memory/allocations.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/memory/dashboard.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/memory/graph.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/memory/profile.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/memory/snapshot.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/reload.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/singletargetcache_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/singletargetcache_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/subtypetestcache_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/subtypetestcache_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/timeline/dashboard.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/unlinkedcall_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/unlinkedcall_view.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/service.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/single_target_cache.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/subtype_test_cache.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/timeline.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/unlinked_call.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/single_target_cache.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/subtype_test_cache.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/timeline.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/unlinked_call.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/vm.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/single_target_cache.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/subtype_test_cache.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/timeline.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/unlinked_call.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/vm.dart -FILE: ../../../third_party/dart/runtime/platform/allocation.h -FILE: ../../../third_party/dart/runtime/platform/growable_array.h -FILE: ../../../third_party/dart/runtime/vm/compilation_trace.cc -FILE: ../../../third_party/dart/runtime/vm/compilation_trace.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/locations_helpers.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/locations_helpers_arm.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/locations_helpers_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/call_specializer.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/call_specializer.h -FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_binary_flowgraph.h -FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/prologue_builder.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/prologue_builder.h -FILE: ../../../third_party/dart/runtime/vm/compiler/jit/jit_call_specializer.h -FILE: ../../../third_party/dart/runtime/vm/constants_x86.h -FILE: ../../../third_party/dart/runtime/vm/debugger_api_impl_test.h -FILE: ../../../third_party/dart/runtime/vm/dwarf.cc -FILE: ../../../third_party/dart/runtime/vm/dwarf.h -FILE: ../../../third_party/dart/runtime/vm/fixed_cache.h -FILE: ../../../third_party/dart/runtime/vm/fixed_cache_test.cc -FILE: ../../../third_party/dart/runtime/vm/gc_compactor.cc -FILE: ../../../third_party/dart/runtime/vm/gc_compactor.h -FILE: ../../../third_party/dart/runtime/vm/gdb_helpers.cc -FILE: ../../../third_party/dart/runtime/vm/image_snapshot.cc -FILE: ../../../third_party/dart/runtime/vm/image_snapshot.h -FILE: ../../../third_party/dart/runtime/vm/json_writer.cc -FILE: ../../../third_party/dart/runtime/vm/json_writer.h -FILE: ../../../third_party/dart/runtime/vm/kernel_binary.h -FILE: ../../../third_party/dart/runtime/vm/malloc_hooks.h -FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_arm.cc -FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_arm64.cc -FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_ia32.cc -FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_jemalloc.cc -FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_tcmalloc.cc -FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_test.cc -FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_unsupported.cc -FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_x64.cc -FILE: ../../../third_party/dart/runtime/vm/mixin_test.cc -FILE: ../../../third_party/dart/runtime/vm/stack_trace.cc -FILE: ../../../third_party/dart/runtime/vm/stack_trace.h -FILE: ../../../third_party/dart/runtime/vm/timeline_android.cc -FILE: ../../../third_party/dart/runtime/vm/timeline_fuchsia.cc -FILE: ../../../third_party/dart/runtime/vm/timeline_linux.cc -FILE: ../../../third_party/dart/runtime/vm/timeline_macos.cc -FILE: ../../../third_party/dart/runtime/vm/timeline_win.cc -FILE: ../../../third_party/dart/runtime/vm/zone_text_buffer.cc -FILE: ../../../third_party/dart/runtime/vm/zone_text_buffer.h -FILE: ../../../third_party/dart/sdk/lib/_http/overrides.dart -FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/cli_patch.dart -FILE: ../../../third_party/dart/sdk/lib/cli/cli.dart -FILE: ../../../third_party/dart/sdk/lib/cli/wait_for.dart -FILE: ../../../third_party/dart/sdk/lib/core/bigint.dart -FILE: ../../../third_party/dart/sdk/lib/internal/linked_list.dart -FILE: ../../../third_party/dart/sdk/lib/internal/patch.dart -FILE: ../../../third_party/dart/sdk/lib/io/embedder_config.dart -FILE: ../../../third_party/dart/sdk/lib/io/namespace_impl.dart -FILE: ../../../third_party/dart/sdk/lib/io/overrides.dart -FILE: ../../../third_party/dart/sdk/lib/io/sync_socket.dart -FILE: ../../../third_party/dart/sdk/lib/vmservice/named_lookup.dart -FILE: ../../../third_party/dart/utils/bazel/kernel_summary_worker.dart ----------------------------------------------------------------------------------------------------- -Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: dart -ORIGIN: ../../../third_party/dart/runtime/bin/console.h + ../../../third_party/dart/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/runtime/bin/console.h -FILE: ../../../third_party/dart/runtime/bin/console_posix.cc -FILE: ../../../third_party/dart/runtime/bin/console_win.cc ----------------------------------------------------------------------------------------------------- -Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: dart -ORIGIN: ../../../third_party/dart/runtime/bin/crypto_fuchsia.cc + ../../../third_party/dart/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/runtime/bin/crypto_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/crypto_test.cc -FILE: ../../../third_party/dart/runtime/bin/directory_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/directory_test.cc -FILE: ../../../third_party/dart/runtime/bin/eventhandler_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/eventhandler_fuchsia.h -FILE: ../../../third_party/dart/runtime/bin/extensions_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/file_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/file_support.cc -FILE: ../../../third_party/dart/runtime/bin/file_system_watcher_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/loader.cc -FILE: ../../../third_party/dart/runtime/bin/loader.h -FILE: ../../../third_party/dart/runtime/bin/log_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/platform_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/process_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/reference_counting.h -FILE: ../../../third_party/dart/runtime/bin/root_certificates_unsupported.cc -FILE: ../../../third_party/dart/runtime/bin/socket_base_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/socket_base_fuchsia.h -FILE: ../../../third_party/dart/runtime/bin/socket_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/stdio_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/thread_fuchsia.cc -FILE: ../../../third_party/dart/runtime/bin/thread_fuchsia.h -FILE: ../../../third_party/dart/runtime/bin/utils_fuchsia.cc -FILE: ../../../third_party/dart/runtime/lib/stacktrace.h -FILE: ../../../third_party/dart/runtime/observatory/lib/event.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/models.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/repositories.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/app/notification.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/class_allocation_profile.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/containers/virtual_collection.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/containers/virtual_tree.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/error_ref.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/general_error.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/nav_bar.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/nav_menu.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/rendering_queue.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/rendering_scheduler.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/tag.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/uris.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/inbound_references.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate/counter_chart.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate/location.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate/run_state.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate/shared_summary.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate/summary.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/metric/details.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/metric/graph.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/class_menu.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/isolate_menu.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/library_menu.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/menu_item.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/notify.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/notify_event.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/notify_exception.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/refresh.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/top_menu.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/vm_menu.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/retaining_path.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/source_link.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/strongly_reachable_instances.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/top_retaining_instances.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/vm_connect_target.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/heap_snapshot/heap_snapshot.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/exceptions.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/allocation_profile.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/breakpoint.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/class.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/code.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/context.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/error.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/event.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/extension_data.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/field.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/flag.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/frame.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/function.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/guarded.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/heap_snapshot.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/heap_space.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/icdata.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/inbound_references.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/instance.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/isolate.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/library.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/local_var_descriptors.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/map_association.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/megamorphiccache.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/metric.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/notification.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/object.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/objectpool.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/objectstore.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/pc_descriptors.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/persistent_handles.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/ports.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/retaining_path.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/sample_profile.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/script.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/sentinel.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/source_location.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/target.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/thread.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/timeline_event.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/token_stream.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/type_arguments.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/unknown.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/vm.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/zone.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/allocation_profile.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/breakpoint.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/class.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/context.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/editor.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/eval.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/event.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/field.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/flag.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/function.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/heap_snapshot.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/icdata.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/inbound_references.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/instance.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/isolate.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/library.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/megamorphiccache.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/metric.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/notification.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/object.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/objectpool.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/objectstore.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/persistent_handles.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/ports.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/reachable_size.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/retained_size.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/retaining_path.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/sample_profile.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/script.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/strongly_reachable_instances.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/target.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/top_retaining_instances.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/type_arguments.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/allocation_profile.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/breakpoint.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/class.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/context.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/editor.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/eval.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/event.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/field.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/flag.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/function.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/heap_snapshot.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/icdata.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/inbound_references.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/instance.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/isolate.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/library.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/megamorphiccache.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/metric.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/notification.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/object.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/objectpool.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/objectstore.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/persistent_handles.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/ports.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/reachable_size.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/retained_size.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/retaining_path.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/sample_profile.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/script.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/settings.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/strongly_reachable_instances.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/target.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/top_retaining_instances.dart -FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/type_arguments.dart -FILE: ../../../third_party/dart/runtime/observatory/web/timeline_message_handler.js -FILE: ../../../third_party/dart/runtime/platform/utils_fuchsia.cc -FILE: ../../../third_party/dart/runtime/platform/utils_fuchsia.h -FILE: ../../../third_party/dart/runtime/vm/atomic_fuchsia.h -FILE: ../../../third_party/dart/runtime/vm/become.cc -FILE: ../../../third_party/dart/runtime/vm/become.h -FILE: ../../../third_party/dart/runtime/vm/clustered_snapshot.cc -FILE: ../../../third_party/dart/runtime/vm/clustered_snapshot.h -FILE: ../../../third_party/dart/runtime/vm/code_patcher_dbc.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_dbc.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_dbc.h -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_dbc_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_dbc.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/branch_optimizer.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/branch_optimizer.h -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_dbc.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_dbc.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/redundancy_elimination.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/backend/redundancy_elimination.h -FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/flow_graph_builder_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_binary_flowgraph.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_to_il.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_to_il.h -FILE: ../../../third_party/dart/runtime/vm/compiler/intrinsifier_dbc.cc -FILE: ../../../third_party/dart/runtime/vm/constants_dbc.h -FILE: ../../../third_party/dart/runtime/vm/cpu_dbc.cc -FILE: ../../../third_party/dart/runtime/vm/cpu_dbc.h -FILE: ../../../third_party/dart/runtime/vm/cpuinfo_fuchsia.cc -FILE: ../../../third_party/dart/runtime/vm/dart_api_state.cc -FILE: ../../../third_party/dart/runtime/vm/debugger_dbc.cc -FILE: ../../../third_party/dart/runtime/vm/instructions_dbc.cc -FILE: ../../../third_party/dart/runtime/vm/instructions_dbc.h -FILE: ../../../third_party/dart/runtime/vm/isolate_reload.cc -FILE: ../../../third_party/dart/runtime/vm/isolate_reload.h -FILE: ../../../third_party/dart/runtime/vm/isolate_reload_test.cc -FILE: ../../../third_party/dart/runtime/vm/kernel.cc -FILE: ../../../third_party/dart/runtime/vm/kernel.h -FILE: ../../../third_party/dart/runtime/vm/kernel_binary.cc -FILE: ../../../third_party/dart/runtime/vm/kernel_isolate.cc -FILE: ../../../third_party/dart/runtime/vm/kernel_isolate.h -FILE: ../../../third_party/dart/runtime/vm/kernel_loader.cc -FILE: ../../../third_party/dart/runtime/vm/kernel_loader.h -FILE: ../../../third_party/dart/runtime/vm/lockers.cc -FILE: ../../../third_party/dart/runtime/vm/native_symbol_fuchsia.cc -FILE: ../../../third_party/dart/runtime/vm/object_dbc_test.cc -FILE: ../../../third_party/dart/runtime/vm/object_reload.cc -FILE: ../../../third_party/dart/runtime/vm/object_service.cc -FILE: ../../../third_party/dart/runtime/vm/os_fuchsia.cc -FILE: ../../../third_party/dart/runtime/vm/os_thread_fuchsia.cc -FILE: ../../../third_party/dart/runtime/vm/os_thread_fuchsia.h -FILE: ../../../third_party/dart/runtime/vm/runtime_entry_dbc.cc -FILE: ../../../third_party/dart/runtime/vm/safepoint.cc -FILE: ../../../third_party/dart/runtime/vm/safepoint.h -FILE: ../../../third_party/dart/runtime/vm/signal_handler_fuchsia.cc -FILE: ../../../third_party/dart/runtime/vm/simulator_dbc.cc -FILE: ../../../third_party/dart/runtime/vm/simulator_dbc.h -FILE: ../../../third_party/dart/runtime/vm/stack_frame_dbc.h -FILE: ../../../third_party/dart/runtime/vm/stub_code_dbc.cc -FILE: ../../../third_party/dart/runtime/vm/thread_interrupter_fuchsia.cc -FILE: ../../../third_party/dart/runtime/vm/token_position.cc -FILE: ../../../third_party/dart/runtime/vm/token_position.h -FILE: ../../../third_party/dart/runtime/vm/type_table.h -FILE: ../../../third_party/dart/runtime/vm/uri.cc -FILE: ../../../third_party/dart/runtime/vm/uri.h -FILE: ../../../third_party/dart/runtime/vm/uri_test.cc -FILE: ../../../third_party/dart/runtime/vm/virtual_memory_fuchsia.cc -FILE: ../../../third_party/dart/sdk/lib/developer/service.dart -FILE: ../../../third_party/dart/sdk/lib/js_util/dart2js/js_util_dart2js.dart -FILE: ../../../third_party/dart/sdk/lib/vmservice/devfs.dart ----------------------------------------------------------------------------------------------------- -Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: dart -ORIGIN: ../../../third_party/dart/runtime/bin/process_test.cc + ../../../third_party/dart/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/runtime/bin/process_test.cc -FILE: ../../../third_party/dart/runtime/bin/snapshot_empty.cc -FILE: ../../../third_party/dart/runtime/bin/snapshot_in.cc -FILE: ../../../third_party/dart/runtime/include/dart_tools_api.h -FILE: ../../../third_party/dart/runtime/lib/double.cc -FILE: ../../../third_party/dart/runtime/lib/math.cc -FILE: ../../../third_party/dart/runtime/lib/mirrors.h -FILE: ../../../third_party/dart/runtime/lib/object.cc -FILE: ../../../third_party/dart/runtime/lib/string.cc -FILE: ../../../third_party/dart/runtime/platform/c99_support_win.h -FILE: ../../../third_party/dart/runtime/platform/inttypes_support_win.h -FILE: ../../../third_party/dart/runtime/vm/ast.cc -FILE: ../../../third_party/dart/runtime/vm/ast_printer.cc -FILE: ../../../third_party/dart/runtime/vm/ast_printer.h -FILE: ../../../third_party/dart/runtime/vm/bitfield.h -FILE: ../../../third_party/dart/runtime/vm/code_patcher_ia32_test.cc -FILE: ../../../third_party/dart/runtime/vm/code_patcher_x64_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler.h -FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_test.cc -FILE: ../../../third_party/dart/runtime/vm/compiler_stats.cc -FILE: ../../../third_party/dart/runtime/vm/compiler_stats.h -FILE: ../../../third_party/dart/runtime/vm/cpu_ia32.cc -FILE: ../../../third_party/dart/runtime/vm/custom_isolate_test.cc -FILE: ../../../third_party/dart/runtime/vm/dart.h -FILE: ../../../third_party/dart/runtime/vm/dart_api_impl.h -FILE: ../../../third_party/dart/runtime/vm/dart_entry.cc -FILE: ../../../third_party/dart/runtime/vm/dart_entry.h -FILE: ../../../third_party/dart/runtime/vm/debugger_arm.cc -FILE: ../../../third_party/dart/runtime/vm/debugger_ia32.cc -FILE: ../../../third_party/dart/runtime/vm/debugger_x64.cc -FILE: ../../../third_party/dart/runtime/vm/double_conversion.cc -FILE: ../../../third_party/dart/runtime/vm/double_conversion.h -FILE: ../../../third_party/dart/runtime/vm/exceptions.cc -FILE: ../../../third_party/dart/runtime/vm/exceptions.h -FILE: ../../../third_party/dart/runtime/vm/freelist.cc -FILE: ../../../third_party/dart/runtime/vm/gc_marker.cc -FILE: ../../../third_party/dart/runtime/vm/gc_marker.h -FILE: ../../../third_party/dart/runtime/vm/gc_sweeper.cc -FILE: ../../../third_party/dart/runtime/vm/gc_sweeper.h -FILE: ../../../third_party/dart/runtime/vm/handles.h -FILE: ../../../third_party/dart/runtime/vm/longjump.cc -FILE: ../../../third_party/dart/runtime/vm/longjump.h -FILE: ../../../third_party/dart/runtime/vm/longjump_test.cc -FILE: ../../../third_party/dart/runtime/vm/memory_region.cc -FILE: ../../../third_party/dart/runtime/vm/message.cc -FILE: ../../../third_party/dart/runtime/vm/message.h -FILE: ../../../third_party/dart/runtime/vm/message_handler.cc -FILE: ../../../third_party/dart/runtime/vm/message_handler.h -FILE: ../../../third_party/dart/runtime/vm/native_entry.cc -FILE: ../../../third_party/dart/runtime/vm/native_entry.h -FILE: ../../../third_party/dart/runtime/vm/native_entry_test.cc -FILE: ../../../third_party/dart/runtime/vm/native_entry_test.h -FILE: ../../../third_party/dart/runtime/vm/object_store_test.cc -FILE: ../../../third_party/dart/runtime/vm/os.h -FILE: ../../../third_party/dart/runtime/vm/pages.h -FILE: ../../../third_party/dart/runtime/vm/parser_test.cc -FILE: ../../../third_party/dart/runtime/vm/port.h -FILE: ../../../third_party/dart/runtime/vm/resolver.cc -FILE: ../../../third_party/dart/runtime/vm/resolver.h -FILE: ../../../third_party/dart/runtime/vm/runtime_entry.cc -FILE: ../../../third_party/dart/runtime/vm/runtime_entry.h -FILE: ../../../third_party/dart/runtime/vm/runtime_entry_arm.cc -FILE: ../../../third_party/dart/runtime/vm/runtime_entry_ia32.cc -FILE: ../../../third_party/dart/runtime/vm/runtime_entry_list.h -FILE: ../../../third_party/dart/runtime/vm/runtime_entry_x64.cc -FILE: ../../../third_party/dart/runtime/vm/scanner.h -FILE: ../../../third_party/dart/runtime/vm/scavenger.cc -FILE: ../../../third_party/dart/runtime/vm/stack_frame.h -FILE: ../../../third_party/dart/runtime/vm/stub_code.h -FILE: ../../../third_party/dart/runtime/vm/stub_code_ia32_test.cc -FILE: ../../../third_party/dart/runtime/vm/stub_code_x64_test.cc -FILE: ../../../third_party/dart/runtime/vm/timer.cc -FILE: ../../../third_party/dart/runtime/vm/timer.h -FILE: ../../../third_party/dart/runtime/vm/token.cc -FILE: ../../../third_party/dart/runtime/vm/unicode_data.cc -FILE: ../../../third_party/dart/runtime/vm/unicode_test.cc -FILE: ../../../third_party/dart/runtime/vm/unit_test.h -FILE: ../../../third_party/dart/runtime/vm/verifier.h -FILE: ../../../third_party/dart/runtime/vm/visitor.h -FILE: ../../../third_party/dart/sdk/lib/collection/queue.dart -FILE: ../../../third_party/dart/sdk/lib/core/comparable.dart -FILE: ../../../third_party/dart/sdk/lib/core/date_time.dart -FILE: ../../../third_party/dart/sdk/lib/core/duration.dart -FILE: ../../../third_party/dart/sdk/lib/core/function.dart -FILE: ../../../third_party/dart/sdk/lib/core/iterable.dart -FILE: ../../../third_party/dart/sdk/lib/core/map.dart -FILE: ../../../third_party/dart/sdk/lib/core/pattern.dart -FILE: ../../../third_party/dart/sdk/lib/core/set.dart -FILE: ../../../third_party/dart/sdk/lib/core/stopwatch.dart -FILE: ../../../third_party/dart/sdk/lib/core/string_buffer.dart -FILE: ../../../third_party/dart/sdk/lib/html/html_common/device.dart -FILE: ../../../third_party/dart/sdk/lib/html/html_common/filtered_element_list.dart -FILE: ../../../third_party/dart/sdk/lib/html/html_common/lists.dart -FILE: ../../../third_party/dart/sdk/lib/internal/iterable.dart -FILE: ../../../third_party/dart/sdk/lib/internal/sort.dart -FILE: ../../../third_party/dart/utils/peg/pegparser.dart ----------------------------------------------------------------------------------------------------- -Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: dart -ORIGIN: ../../../third_party/dart/runtime/lib/bigint.dart -TYPE: LicenseType.mit -FILE: ../../../third_party/dart/runtime/lib/bigint.dart -FILE: ../../../third_party/dart/runtime/lib/bigint_patch.dart ----------------------------------------------------------------------------------------------------- -Copyright (c) 2003-2005 Tom Wu -Copyright (c) 2012 Adam Singer (adam@solvr.io) -All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, -EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY -WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. - -IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, -INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF -THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT -OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -In addition, the following condition applies: - -All redistributions must retain an intact copy of this copyright notice -and disclaimer. -==================================================================================================== - -==================================================================================================== -LIBRARY: dart -ORIGIN: ../../../third_party/dart/runtime/lib/bigint.dart + ../../../third_party/dart/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/runtime/lib/bigint.dart -FILE: ../../../third_party/dart/runtime/lib/bigint_patch.dart ----------------------------------------------------------------------------------------------------- -Copyright 2009 The Go Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: dart -ORIGIN: ../../../third_party/dart/runtime/vm/compiler/compiler_pass.cc + ../../../third_party/dart/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/runtime/vm/compiler/compiler_pass.cc -FILE: ../../../third_party/dart/runtime/vm/compiler/compiler_pass.h -FILE: ../../../third_party/dart/runtime/vm/datastream.cc -FILE: ../../../third_party/dart/runtime/vm/finalizable_data.h -FILE: ../../../third_party/dart/sdk/lib/typed_data/unmodifiable_typed_data.dart ----------------------------------------------------------------------------------------------------- -Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: double-conversion -ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/bignum-dtoa.cc -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/bignum-dtoa.cc -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/bignum-dtoa.h -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/bignum.cc -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/bignum.h -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/cached-powers.h -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/diy-fp.cc -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/diy-fp.h -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/double-conversion.cc -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/fast-dtoa.h -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/fixed-dtoa.cc -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/fixed-dtoa.h -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/strtod.cc -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/strtod.h -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/utils.h ----------------------------------------------------------------------------------------------------- -Copyright 2010 the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: double-conversion -ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/cached-powers.cc -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/cached-powers.cc ----------------------------------------------------------------------------------------------------- -Copyright 2006-2008 the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: double-conversion -ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/double-conversion.h -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/double-conversion.h -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/fast-dtoa.cc -FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/ieee.h ----------------------------------------------------------------------------------------------------- -Copyright 2012 the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: files -ORIGIN: ../../../third_party/expat/files/COPYING -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/files/Changes -FILE: ../../../third_party/expat/files/MANIFEST -FILE: ../../../third_party/expat/files/lib/amigaconfig.h -FILE: ../../../third_party/expat/files/lib/expat_config.h -FILE: ../../../third_party/expat/files/lib/internal.h -FILE: ../../../third_party/expat/files/lib/libexpat.def -FILE: ../../../third_party/expat/files/lib/libexpatw.def -FILE: ../../../third_party/expat/files/lib/nametab.h ----------------------------------------------------------------------------------------------------- -Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd - and Clark Cooper -Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: files -ORIGIN: ../../../third_party/expat/files/lib/ascii.h + ../../../third_party/expat/files/COPYING -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/files/lib/ascii.h -FILE: ../../../third_party/expat/files/lib/asciitab.h -FILE: ../../../third_party/expat/files/lib/iasciitab.h -FILE: ../../../third_party/expat/files/lib/latin1tab.h -FILE: ../../../third_party/expat/files/lib/utf8tab.h -FILE: ../../../third_party/expat/files/lib/xmlrole.c -FILE: ../../../third_party/expat/files/lib/xmlrole.h -FILE: ../../../third_party/expat/files/lib/xmltok.c -FILE: ../../../third_party/expat/files/lib/xmltok.h -FILE: ../../../third_party/expat/files/lib/xmltok_impl.c -FILE: ../../../third_party/expat/files/lib/xmltok_impl.c.original -FILE: ../../../third_party/expat/files/lib/xmltok_impl.h -FILE: ../../../third_party/expat/files/lib/xmltok_ns.c ----------------------------------------------------------------------------------------------------- -Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: files -ORIGIN: ../../../third_party/expat/files/lib/expat.h + ../../../third_party/expat/files/COPYING -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/files/lib/expat.h -FILE: ../../../third_party/expat/files/lib/expat_external.h -FILE: ../../../third_party/expat/files/lib/xmlparse.c -FILE: ../../../third_party/expat/files/lib/xmlparse.c.original ----------------------------------------------------------------------------------------------------- -Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: files -ORIGIN: ../../../third_party/expat/files/lib/macconfig.h + ../../../third_party/expat/files/COPYING -TYPE: LicenseType.mit -FILE: ../../../third_party/expat/files/lib/macconfig.h -FILE: ../../../third_party/expat/files/lib/winconfig.h -FILE: ../../../third_party/expat/files/lib/winconfig.h.original ----------------------------------------------------------------------------------------------------- -Copyright 2000, Clark Cooper -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/docs/FTL.TXT -TYPE: LicenseType.freetype -FILE: ../../../third_party/freetype2/.mailmap -FILE: ../../../third_party/freetype2/Jamfile -FILE: ../../../third_party/freetype2/Jamrules -FILE: ../../../third_party/freetype2/devel/ft2build.h -FILE: ../../../third_party/freetype2/devel/ftoption.h -FILE: ../../../third_party/freetype2/include/config/ftconfig.h -FILE: ../../../third_party/freetype2/include/config/ftheader.h -FILE: ../../../third_party/freetype2/include/config/ftmodule.h -FILE: ../../../third_party/freetype2/include/config/ftoption.h -FILE: ../../../third_party/freetype2/include/config/ftstdlib.h -FILE: ../../../third_party/freetype2/include/freetype-fuchsia-config/ftmodule.h -FILE: ../../../third_party/freetype2/include/freetype-fuchsia-config/ftoption.h -FILE: ../../../third_party/freetype2/include/freetype.h -FILE: ../../../third_party/freetype2/include/ft2build.h -FILE: ../../../third_party/freetype2/include/ftadvanc.h -FILE: ../../../third_party/freetype2/include/ftautoh.h -FILE: ../../../third_party/freetype2/include/ftbbox.h -FILE: ../../../third_party/freetype2/include/ftbdf.h -FILE: ../../../third_party/freetype2/include/ftbitmap.h -FILE: ../../../third_party/freetype2/include/ftbzip2.h -FILE: ../../../third_party/freetype2/include/ftcache.h -FILE: ../../../third_party/freetype2/include/ftcffdrv.h -FILE: ../../../third_party/freetype2/include/ftchapters.h -FILE: ../../../third_party/freetype2/include/ftcid.h -FILE: ../../../third_party/freetype2/include/fterrdef.h -FILE: ../../../third_party/freetype2/include/fterrors.h -FILE: ../../../third_party/freetype2/include/ftfntfmt.h -FILE: ../../../third_party/freetype2/include/ftgasp.h -FILE: ../../../third_party/freetype2/include/ftglyph.h -FILE: ../../../third_party/freetype2/include/ftgxval.h -FILE: ../../../third_party/freetype2/include/ftgzip.h -FILE: ../../../third_party/freetype2/include/ftimage.h -FILE: ../../../third_party/freetype2/include/ftincrem.h -FILE: ../../../third_party/freetype2/include/ftlcdfil.h -FILE: ../../../third_party/freetype2/include/ftlist.h -FILE: ../../../third_party/freetype2/include/ftlzw.h -FILE: ../../../third_party/freetype2/include/ftmac.h -FILE: ../../../third_party/freetype2/include/ftmm.h -FILE: ../../../third_party/freetype2/include/ftmodapi.h -FILE: ../../../third_party/freetype2/include/ftmoderr.h -FILE: ../../../third_party/freetype2/include/ftotval.h -FILE: ../../../third_party/freetype2/include/ftoutln.h -FILE: ../../../third_party/freetype2/include/ftpfr.h -FILE: ../../../third_party/freetype2/include/ftrender.h -FILE: ../../../third_party/freetype2/include/ftsizes.h -FILE: ../../../third_party/freetype2/include/ftsnames.h -FILE: ../../../third_party/freetype2/include/ftstroke.h -FILE: ../../../third_party/freetype2/include/ftsynth.h -FILE: ../../../third_party/freetype2/include/ftsystem.h -FILE: ../../../third_party/freetype2/include/fttrigon.h -FILE: ../../../third_party/freetype2/include/ftttdrv.h -FILE: ../../../third_party/freetype2/include/fttypes.h -FILE: ../../../third_party/freetype2/include/ftwinfnt.h -FILE: ../../../third_party/freetype2/include/internal/autohint.h -FILE: ../../../third_party/freetype2/include/internal/ftcalc.h -FILE: ../../../third_party/freetype2/include/internal/ftdebug.h -FILE: ../../../third_party/freetype2/include/internal/ftdriver.h -FILE: ../../../third_party/freetype2/include/internal/ftgloadr.h -FILE: ../../../third_party/freetype2/include/internal/ftmemory.h -FILE: ../../../third_party/freetype2/include/internal/ftobjs.h -FILE: ../../../third_party/freetype2/include/internal/ftpic.h -FILE: ../../../third_party/freetype2/include/internal/ftrfork.h -FILE: ../../../third_party/freetype2/include/internal/ftserv.h -FILE: ../../../third_party/freetype2/include/internal/ftstream.h -FILE: ../../../third_party/freetype2/include/internal/fttrace.h -FILE: ../../../third_party/freetype2/include/internal/ftvalid.h -FILE: ../../../third_party/freetype2/include/internal/internal.h -FILE: ../../../third_party/freetype2/include/internal/psaux.h -FILE: ../../../third_party/freetype2/include/internal/pshints.h -FILE: ../../../third_party/freetype2/include/internal/services/svbdf.h -FILE: ../../../third_party/freetype2/include/internal/services/svcid.h -FILE: ../../../third_party/freetype2/include/internal/services/svfntfmt.h -FILE: ../../../third_party/freetype2/include/internal/services/svgldict.h -FILE: ../../../third_party/freetype2/include/internal/services/svgxval.h -FILE: ../../../third_party/freetype2/include/internal/services/svkern.h -FILE: ../../../third_party/freetype2/include/internal/services/svmm.h -FILE: ../../../third_party/freetype2/include/internal/services/svotval.h -FILE: ../../../third_party/freetype2/include/internal/services/svpfr.h -FILE: ../../../third_party/freetype2/include/internal/services/svpostnm.h -FILE: ../../../third_party/freetype2/include/internal/services/svprop.h -FILE: ../../../third_party/freetype2/include/internal/services/svpscmap.h -FILE: ../../../third_party/freetype2/include/internal/services/svpsinfo.h -FILE: ../../../third_party/freetype2/include/internal/services/svsfnt.h -FILE: ../../../third_party/freetype2/include/internal/services/svttcmap.h -FILE: ../../../third_party/freetype2/include/internal/services/svtteng.h -FILE: ../../../third_party/freetype2/include/internal/services/svttglyf.h -FILE: ../../../third_party/freetype2/include/internal/services/svwinfnt.h -FILE: ../../../third_party/freetype2/include/internal/sfnt.h -FILE: ../../../third_party/freetype2/include/internal/t1types.h -FILE: ../../../third_party/freetype2/include/internal/tttypes.h -FILE: ../../../third_party/freetype2/include/t1tables.h -FILE: ../../../third_party/freetype2/include/ttnameid.h -FILE: ../../../third_party/freetype2/include/tttables.h -FILE: ../../../third_party/freetype2/include/tttags.h -FILE: ../../../third_party/freetype2/include/ttunpat.h -FILE: ../../../third_party/freetype2/modules.cfg -FILE: ../../../third_party/freetype2/src/Jamfile -FILE: ../../../third_party/freetype2/src/autofit/Jamfile -FILE: ../../../third_party/freetype2/src/autofit/afangles.c -FILE: ../../../third_party/freetype2/src/autofit/afangles.h -FILE: ../../../third_party/freetype2/src/autofit/afblue.c -FILE: ../../../third_party/freetype2/src/autofit/afblue.cin -FILE: ../../../third_party/freetype2/src/autofit/afblue.dat -FILE: ../../../third_party/freetype2/src/autofit/afblue.h -FILE: ../../../third_party/freetype2/src/autofit/afblue.hin -FILE: ../../../third_party/freetype2/src/autofit/afcjk.c -FILE: ../../../third_party/freetype2/src/autofit/afcjk.h -FILE: ../../../third_party/freetype2/src/autofit/afcover.h -FILE: ../../../third_party/freetype2/src/autofit/afdummy.c -FILE: ../../../third_party/freetype2/src/autofit/afdummy.h -FILE: ../../../third_party/freetype2/src/autofit/aferrors.h -FILE: ../../../third_party/freetype2/src/autofit/afglobal.c -FILE: ../../../third_party/freetype2/src/autofit/afglobal.h -FILE: ../../../third_party/freetype2/src/autofit/afhints.c -FILE: ../../../third_party/freetype2/src/autofit/afhints.h -FILE: ../../../third_party/freetype2/src/autofit/afindic.c -FILE: ../../../third_party/freetype2/src/autofit/afindic.h -FILE: ../../../third_party/freetype2/src/autofit/aflatin.c -FILE: ../../../third_party/freetype2/src/autofit/aflatin.h -FILE: ../../../third_party/freetype2/src/autofit/aflatin2.c -FILE: ../../../third_party/freetype2/src/autofit/aflatin2.h -FILE: ../../../third_party/freetype2/src/autofit/afloader.c -FILE: ../../../third_party/freetype2/src/autofit/afloader.h -FILE: ../../../third_party/freetype2/src/autofit/afmodule.c -FILE: ../../../third_party/freetype2/src/autofit/afmodule.h -FILE: ../../../third_party/freetype2/src/autofit/afpic.c -FILE: ../../../third_party/freetype2/src/autofit/afpic.h -FILE: ../../../third_party/freetype2/src/autofit/afranges.c -FILE: ../../../third_party/freetype2/src/autofit/afranges.h -FILE: ../../../third_party/freetype2/src/autofit/afscript.h -FILE: ../../../third_party/freetype2/src/autofit/afstyles.h -FILE: ../../../third_party/freetype2/src/autofit/aftypes.h -FILE: ../../../third_party/freetype2/src/autofit/afwarp.c -FILE: ../../../third_party/freetype2/src/autofit/afwarp.h -FILE: ../../../third_party/freetype2/src/autofit/afwrtsys.h -FILE: ../../../third_party/freetype2/src/autofit/autofit.c -FILE: ../../../third_party/freetype2/src/autofit/hbshim.c -FILE: ../../../third_party/freetype2/src/autofit/hbshim.h -FILE: ../../../third_party/freetype2/src/base/Jamfile -FILE: ../../../third_party/freetype2/src/base/basepic.c -FILE: ../../../third_party/freetype2/src/base/basepic.h -FILE: ../../../third_party/freetype2/src/base/ftadvanc.c -FILE: ../../../third_party/freetype2/src/base/ftapi.c -FILE: ../../../third_party/freetype2/src/base/ftbase.c -FILE: ../../../third_party/freetype2/src/base/ftbase.h -FILE: ../../../third_party/freetype2/src/base/ftbbox.c -FILE: ../../../third_party/freetype2/src/base/ftbdf.c -FILE: ../../../third_party/freetype2/src/base/ftbitmap.c -FILE: ../../../third_party/freetype2/src/base/ftcalc.c -FILE: ../../../third_party/freetype2/src/base/ftcid.c -FILE: ../../../third_party/freetype2/src/base/ftdbgmem.c -FILE: ../../../third_party/freetype2/src/base/ftdebug.c -FILE: ../../../third_party/freetype2/src/base/ftfntfmt.c -FILE: ../../../third_party/freetype2/src/base/ftfstype.c -FILE: ../../../third_party/freetype2/src/base/ftgasp.c -FILE: ../../../third_party/freetype2/src/base/ftgloadr.c -FILE: ../../../third_party/freetype2/src/base/ftglyph.c -FILE: ../../../third_party/freetype2/src/base/ftgxval.c -FILE: ../../../third_party/freetype2/src/base/ftinit.c -FILE: ../../../third_party/freetype2/src/base/ftlcdfil.c -FILE: ../../../third_party/freetype2/src/base/ftmac.c -FILE: ../../../third_party/freetype2/src/base/ftmm.c -FILE: ../../../third_party/freetype2/src/base/ftobjs.c -FILE: ../../../third_party/freetype2/src/base/ftotval.c -FILE: ../../../third_party/freetype2/src/base/ftoutln.c -FILE: ../../../third_party/freetype2/src/base/ftpatent.c -FILE: ../../../third_party/freetype2/src/base/ftpfr.c -FILE: ../../../third_party/freetype2/src/base/ftpic.c -FILE: ../../../third_party/freetype2/src/base/ftrfork.c -FILE: ../../../third_party/freetype2/src/base/ftsnames.c -FILE: ../../../third_party/freetype2/src/base/ftstream.c -FILE: ../../../third_party/freetype2/src/base/ftstroke.c -FILE: ../../../third_party/freetype2/src/base/ftsynth.c -FILE: ../../../third_party/freetype2/src/base/ftsystem.c -FILE: ../../../third_party/freetype2/src/base/fttrigon.c -FILE: ../../../third_party/freetype2/src/base/fttype1.c -FILE: ../../../third_party/freetype2/src/base/ftutil.c -FILE: ../../../third_party/freetype2/src/base/ftwinfnt.c -FILE: ../../../third_party/freetype2/src/base/md5.c -FILE: ../../../third_party/freetype2/src/base/md5.h -FILE: ../../../third_party/freetype2/src/bdf/Jamfile -FILE: ../../../third_party/freetype2/src/bzip2/Jamfile -FILE: ../../../third_party/freetype2/src/bzip2/ftbzip2.c -FILE: ../../../third_party/freetype2/src/cache/Jamfile -FILE: ../../../third_party/freetype2/src/cache/ftcache.c -FILE: ../../../third_party/freetype2/src/cache/ftcbasic.c -FILE: ../../../third_party/freetype2/src/cache/ftccache.c -FILE: ../../../third_party/freetype2/src/cache/ftccache.h -FILE: ../../../third_party/freetype2/src/cache/ftccback.h -FILE: ../../../third_party/freetype2/src/cache/ftccmap.c -FILE: ../../../third_party/freetype2/src/cache/ftcerror.h -FILE: ../../../third_party/freetype2/src/cache/ftcglyph.c -FILE: ../../../third_party/freetype2/src/cache/ftcglyph.h -FILE: ../../../third_party/freetype2/src/cache/ftcimage.c -FILE: ../../../third_party/freetype2/src/cache/ftcimage.h -FILE: ../../../third_party/freetype2/src/cache/ftcmanag.c -FILE: ../../../third_party/freetype2/src/cache/ftcmanag.h -FILE: ../../../third_party/freetype2/src/cache/ftcmru.c -FILE: ../../../third_party/freetype2/src/cache/ftcmru.h -FILE: ../../../third_party/freetype2/src/cache/ftcsbits.c -FILE: ../../../third_party/freetype2/src/cache/ftcsbits.h -FILE: ../../../third_party/freetype2/src/cff/Jamfile -FILE: ../../../third_party/freetype2/src/cff/cf2arrst.c -FILE: ../../../third_party/freetype2/src/cff/cf2arrst.h -FILE: ../../../third_party/freetype2/src/cff/cf2blues.c -FILE: ../../../third_party/freetype2/src/cff/cf2blues.h -FILE: ../../../third_party/freetype2/src/cff/cf2error.c -FILE: ../../../third_party/freetype2/src/cff/cf2error.h -FILE: ../../../third_party/freetype2/src/cff/cf2fixed.h -FILE: ../../../third_party/freetype2/src/cff/cf2font.c -FILE: ../../../third_party/freetype2/src/cff/cf2font.h -FILE: ../../../third_party/freetype2/src/cff/cf2ft.c -FILE: ../../../third_party/freetype2/src/cff/cf2ft.h -FILE: ../../../third_party/freetype2/src/cff/cf2glue.h -FILE: ../../../third_party/freetype2/src/cff/cf2hints.c -FILE: ../../../third_party/freetype2/src/cff/cf2hints.h -FILE: ../../../third_party/freetype2/src/cff/cf2intrp.c -FILE: ../../../third_party/freetype2/src/cff/cf2intrp.h -FILE: ../../../third_party/freetype2/src/cff/cf2read.c -FILE: ../../../third_party/freetype2/src/cff/cf2read.h -FILE: ../../../third_party/freetype2/src/cff/cf2stack.c -FILE: ../../../third_party/freetype2/src/cff/cf2stack.h -FILE: ../../../third_party/freetype2/src/cff/cf2types.h -FILE: ../../../third_party/freetype2/src/cff/cff.c -FILE: ../../../third_party/freetype2/src/cff/cffcmap.c -FILE: ../../../third_party/freetype2/src/cff/cffcmap.h -FILE: ../../../third_party/freetype2/src/cff/cffdrivr.c -FILE: ../../../third_party/freetype2/src/cff/cffdrivr.h -FILE: ../../../third_party/freetype2/src/cff/cfferrs.h -FILE: ../../../third_party/freetype2/src/cff/cffgload.c -FILE: ../../../third_party/freetype2/src/cff/cffgload.h -FILE: ../../../third_party/freetype2/src/cff/cffload.c -FILE: ../../../third_party/freetype2/src/cff/cffload.h -FILE: ../../../third_party/freetype2/src/cff/cffobjs.c -FILE: ../../../third_party/freetype2/src/cff/cffobjs.h -FILE: ../../../third_party/freetype2/src/cff/cffparse.c -FILE: ../../../third_party/freetype2/src/cff/cffparse.h -FILE: ../../../third_party/freetype2/src/cff/cffpic.c -FILE: ../../../third_party/freetype2/src/cff/cffpic.h -FILE: ../../../third_party/freetype2/src/cff/cfftoken.h -FILE: ../../../third_party/freetype2/src/cff/cfftypes.h -FILE: ../../../third_party/freetype2/src/cid/Jamfile -FILE: ../../../third_party/freetype2/src/cid/ciderrs.h -FILE: ../../../third_party/freetype2/src/cid/cidgload.c -FILE: ../../../third_party/freetype2/src/cid/cidgload.h -FILE: ../../../third_party/freetype2/src/cid/cidload.c -FILE: ../../../third_party/freetype2/src/cid/cidload.h -FILE: ../../../third_party/freetype2/src/cid/cidobjs.c -FILE: ../../../third_party/freetype2/src/cid/cidobjs.h -FILE: ../../../third_party/freetype2/src/cid/cidparse.c -FILE: ../../../third_party/freetype2/src/cid/cidparse.h -FILE: ../../../third_party/freetype2/src/cid/cidriver.c -FILE: ../../../third_party/freetype2/src/cid/cidriver.h -FILE: ../../../third_party/freetype2/src/cid/cidtoken.h -FILE: ../../../third_party/freetype2/src/cid/type1cid.c -FILE: ../../../third_party/freetype2/src/gxvalid/Jamfile -FILE: ../../../third_party/freetype2/src/gxvalid/gxvalid.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvalid.h -FILE: ../../../third_party/freetype2/src/gxvalid/gxvbsln.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvcommn.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvcommn.h -FILE: ../../../third_party/freetype2/src/gxvalid/gxverror.h -FILE: ../../../third_party/freetype2/src/gxvalid/gxvfeat.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvfeat.h -FILE: ../../../third_party/freetype2/src/gxvalid/gxvfgen.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvfgen.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvjust.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvkern.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvlcar.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmod.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmod.h -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort.h -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort0.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort1.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort2.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort4.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort5.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx.h -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx0.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx1.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx2.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx4.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx5.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvopbd.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvprop.c -FILE: ../../../third_party/freetype2/src/gxvalid/gxvtrak.c -FILE: ../../../third_party/freetype2/src/gzip/Jamfile -FILE: ../../../third_party/freetype2/src/gzip/ftgzip.c -FILE: ../../../third_party/freetype2/src/lzw/Jamfile -FILE: ../../../third_party/freetype2/src/lzw/ftlzw.c -FILE: ../../../third_party/freetype2/src/lzw/ftzopen.c -FILE: ../../../third_party/freetype2/src/lzw/ftzopen.h -FILE: ../../../third_party/freetype2/src/otvalid/Jamfile -FILE: ../../../third_party/freetype2/src/otvalid/otvalid.c -FILE: ../../../third_party/freetype2/src/otvalid/otvalid.h -FILE: ../../../third_party/freetype2/src/otvalid/otvbase.c -FILE: ../../../third_party/freetype2/src/otvalid/otvcommn.c -FILE: ../../../third_party/freetype2/src/otvalid/otvcommn.h -FILE: ../../../third_party/freetype2/src/otvalid/otverror.h -FILE: ../../../third_party/freetype2/src/otvalid/otvgdef.c -FILE: ../../../third_party/freetype2/src/otvalid/otvgpos.c -FILE: ../../../third_party/freetype2/src/otvalid/otvgpos.h -FILE: ../../../third_party/freetype2/src/otvalid/otvgsub.c -FILE: ../../../third_party/freetype2/src/otvalid/otvjstf.c -FILE: ../../../third_party/freetype2/src/otvalid/otvmath.c -FILE: ../../../third_party/freetype2/src/otvalid/otvmod.c -FILE: ../../../third_party/freetype2/src/otvalid/otvmod.h -FILE: ../../../third_party/freetype2/src/pcf/Jamfile -FILE: ../../../third_party/freetype2/src/pcf/pcferror.h -FILE: ../../../third_party/freetype2/src/pfr/Jamfile -FILE: ../../../third_party/freetype2/src/pfr/pfr.c -FILE: ../../../third_party/freetype2/src/pfr/pfrcmap.c -FILE: ../../../third_party/freetype2/src/pfr/pfrcmap.h -FILE: ../../../third_party/freetype2/src/pfr/pfrdrivr.c -FILE: ../../../third_party/freetype2/src/pfr/pfrdrivr.h -FILE: ../../../third_party/freetype2/src/pfr/pfrerror.h -FILE: ../../../third_party/freetype2/src/pfr/pfrgload.c -FILE: ../../../third_party/freetype2/src/pfr/pfrgload.h -FILE: ../../../third_party/freetype2/src/pfr/pfrload.c -FILE: ../../../third_party/freetype2/src/pfr/pfrload.h -FILE: ../../../third_party/freetype2/src/pfr/pfrobjs.c -FILE: ../../../third_party/freetype2/src/pfr/pfrobjs.h -FILE: ../../../third_party/freetype2/src/pfr/pfrsbit.c -FILE: ../../../third_party/freetype2/src/pfr/pfrsbit.h -FILE: ../../../third_party/freetype2/src/pfr/pfrtypes.h -FILE: ../../../third_party/freetype2/src/psaux/Jamfile -FILE: ../../../third_party/freetype2/src/psaux/afmparse.c -FILE: ../../../third_party/freetype2/src/psaux/afmparse.h -FILE: ../../../third_party/freetype2/src/psaux/psaux.c -FILE: ../../../third_party/freetype2/src/psaux/psauxerr.h -FILE: ../../../third_party/freetype2/src/psaux/psauxmod.c -FILE: ../../../third_party/freetype2/src/psaux/psauxmod.h -FILE: ../../../third_party/freetype2/src/psaux/psconv.c -FILE: ../../../third_party/freetype2/src/psaux/psconv.h -FILE: ../../../third_party/freetype2/src/psaux/psobjs.c -FILE: ../../../third_party/freetype2/src/psaux/psobjs.h -FILE: ../../../third_party/freetype2/src/psaux/t1cmap.c -FILE: ../../../third_party/freetype2/src/psaux/t1cmap.h -FILE: ../../../third_party/freetype2/src/psaux/t1decode.c -FILE: ../../../third_party/freetype2/src/psaux/t1decode.h -FILE: ../../../third_party/freetype2/src/pshinter/Jamfile -FILE: ../../../third_party/freetype2/src/pshinter/pshalgo.c -FILE: ../../../third_party/freetype2/src/pshinter/pshalgo.h -FILE: ../../../third_party/freetype2/src/pshinter/pshglob.c -FILE: ../../../third_party/freetype2/src/pshinter/pshglob.h -FILE: ../../../third_party/freetype2/src/pshinter/pshinter.c -FILE: ../../../third_party/freetype2/src/pshinter/pshmod.c -FILE: ../../../third_party/freetype2/src/pshinter/pshmod.h -FILE: ../../../third_party/freetype2/src/pshinter/pshnterr.h -FILE: ../../../third_party/freetype2/src/pshinter/pshpic.c -FILE: ../../../third_party/freetype2/src/pshinter/pshpic.h -FILE: ../../../third_party/freetype2/src/pshinter/pshrec.c -FILE: ../../../third_party/freetype2/src/pshinter/pshrec.h -FILE: ../../../third_party/freetype2/src/psnames/Jamfile -FILE: ../../../third_party/freetype2/src/psnames/psmodule.c -FILE: ../../../third_party/freetype2/src/psnames/psmodule.h -FILE: ../../../third_party/freetype2/src/psnames/psnamerr.h -FILE: ../../../third_party/freetype2/src/psnames/psnames.c -FILE: ../../../third_party/freetype2/src/psnames/pspic.c -FILE: ../../../third_party/freetype2/src/psnames/pspic.h -FILE: ../../../third_party/freetype2/src/psnames/pstables.h -FILE: ../../../third_party/freetype2/src/raster/Jamfile -FILE: ../../../third_party/freetype2/src/raster/ftmisc.h -FILE: ../../../third_party/freetype2/src/raster/ftraster.c -FILE: ../../../third_party/freetype2/src/raster/ftraster.h -FILE: ../../../third_party/freetype2/src/raster/ftrend1.c -FILE: ../../../third_party/freetype2/src/raster/ftrend1.h -FILE: ../../../third_party/freetype2/src/raster/raster.c -FILE: ../../../third_party/freetype2/src/raster/rasterrs.h -FILE: ../../../third_party/freetype2/src/raster/rastpic.c -FILE: ../../../third_party/freetype2/src/raster/rastpic.h -FILE: ../../../third_party/freetype2/src/sfnt/Jamfile -FILE: ../../../third_party/freetype2/src/sfnt/pngshim.c -FILE: ../../../third_party/freetype2/src/sfnt/pngshim.h -FILE: ../../../third_party/freetype2/src/sfnt/sfdriver.c -FILE: ../../../third_party/freetype2/src/sfnt/sfdriver.h -FILE: ../../../third_party/freetype2/src/sfnt/sferrors.h -FILE: ../../../third_party/freetype2/src/sfnt/sfnt.c -FILE: ../../../third_party/freetype2/src/sfnt/sfntpic.c -FILE: ../../../third_party/freetype2/src/sfnt/sfntpic.h -FILE: ../../../third_party/freetype2/src/sfnt/sfobjs.c -FILE: ../../../third_party/freetype2/src/sfnt/sfobjs.h -FILE: ../../../third_party/freetype2/src/sfnt/ttbdf.c -FILE: ../../../third_party/freetype2/src/sfnt/ttbdf.h -FILE: ../../../third_party/freetype2/src/sfnt/ttcmap.c -FILE: ../../../third_party/freetype2/src/sfnt/ttcmap.h -FILE: ../../../third_party/freetype2/src/sfnt/ttcmapc.h -FILE: ../../../third_party/freetype2/src/sfnt/ttkern.c -FILE: ../../../third_party/freetype2/src/sfnt/ttkern.h -FILE: ../../../third_party/freetype2/src/sfnt/ttload.c -FILE: ../../../third_party/freetype2/src/sfnt/ttload.h -FILE: ../../../third_party/freetype2/src/sfnt/ttmtx.c -FILE: ../../../third_party/freetype2/src/sfnt/ttmtx.h -FILE: ../../../third_party/freetype2/src/sfnt/ttpost.c -FILE: ../../../third_party/freetype2/src/sfnt/ttpost.h -FILE: ../../../third_party/freetype2/src/sfnt/ttsbit.c -FILE: ../../../third_party/freetype2/src/sfnt/ttsbit.h -FILE: ../../../third_party/freetype2/src/smooth/Jamfile -FILE: ../../../third_party/freetype2/src/smooth/ftgrays.c -FILE: ../../../third_party/freetype2/src/smooth/ftgrays.h -FILE: ../../../third_party/freetype2/src/smooth/ftsmerrs.h -FILE: ../../../third_party/freetype2/src/smooth/ftsmooth.c -FILE: ../../../third_party/freetype2/src/smooth/ftsmooth.h -FILE: ../../../third_party/freetype2/src/smooth/ftspic.c -FILE: ../../../third_party/freetype2/src/smooth/ftspic.h -FILE: ../../../third_party/freetype2/src/smooth/smooth.c -FILE: ../../../third_party/freetype2/src/truetype/Jamfile -FILE: ../../../third_party/freetype2/src/truetype/truetype.c -FILE: ../../../third_party/freetype2/src/truetype/ttdriver.c -FILE: ../../../third_party/freetype2/src/truetype/ttdriver.h -FILE: ../../../third_party/freetype2/src/truetype/tterrors.h -FILE: ../../../third_party/freetype2/src/truetype/ttgload.c -FILE: ../../../third_party/freetype2/src/truetype/ttgload.h -FILE: ../../../third_party/freetype2/src/truetype/ttgxvar.c -FILE: ../../../third_party/freetype2/src/truetype/ttgxvar.h -FILE: ../../../third_party/freetype2/src/truetype/ttinterp.c -FILE: ../../../third_party/freetype2/src/truetype/ttinterp.h -FILE: ../../../third_party/freetype2/src/truetype/ttobjs.c -FILE: ../../../third_party/freetype2/src/truetype/ttobjs.h -FILE: ../../../third_party/freetype2/src/truetype/ttpic.c -FILE: ../../../third_party/freetype2/src/truetype/ttpic.h -FILE: ../../../third_party/freetype2/src/truetype/ttpload.c -FILE: ../../../third_party/freetype2/src/truetype/ttpload.h -FILE: ../../../third_party/freetype2/src/truetype/ttsubpix.c -FILE: ../../../third_party/freetype2/src/truetype/ttsubpix.h -FILE: ../../../third_party/freetype2/src/type1/Jamfile -FILE: ../../../third_party/freetype2/src/type1/t1afm.c -FILE: ../../../third_party/freetype2/src/type1/t1afm.h -FILE: ../../../third_party/freetype2/src/type1/t1driver.c -FILE: ../../../third_party/freetype2/src/type1/t1driver.h -FILE: ../../../third_party/freetype2/src/type1/t1errors.h -FILE: ../../../third_party/freetype2/src/type1/t1gload.c -FILE: ../../../third_party/freetype2/src/type1/t1gload.h -FILE: ../../../third_party/freetype2/src/type1/t1load.c -FILE: ../../../third_party/freetype2/src/type1/t1load.h -FILE: ../../../third_party/freetype2/src/type1/t1objs.c -FILE: ../../../third_party/freetype2/src/type1/t1objs.h -FILE: ../../../third_party/freetype2/src/type1/t1parse.c -FILE: ../../../third_party/freetype2/src/type1/t1parse.h -FILE: ../../../third_party/freetype2/src/type1/t1tokens.h -FILE: ../../../third_party/freetype2/src/type1/type1.c -FILE: ../../../third_party/freetype2/src/type42/Jamfile -FILE: ../../../third_party/freetype2/src/type42/t42drivr.c -FILE: ../../../third_party/freetype2/src/type42/t42drivr.h -FILE: ../../../third_party/freetype2/src/type42/t42error.h -FILE: ../../../third_party/freetype2/src/type42/t42objs.c -FILE: ../../../third_party/freetype2/src/type42/t42objs.h -FILE: ../../../third_party/freetype2/src/type42/t42parse.c -FILE: ../../../third_party/freetype2/src/type42/t42parse.h -FILE: ../../../third_party/freetype2/src/type42/t42types.h -FILE: ../../../third_party/freetype2/src/type42/type42.c -FILE: ../../../third_party/freetype2/src/winfonts/Jamfile -FILE: ../../../third_party/freetype2/src/winfonts/fnterrs.h -FILE: ../../../third_party/freetype2/src/winfonts/winfnt.c -FILE: ../../../third_party/freetype2/src/winfonts/winfnt.h -FILE: ../../../third_party/freetype2/version.sed ----------------------------------------------------------------------------------------------------- -The FreeType Project LICENSE - - 2006-Jan-27 - -Copyright 1996-2002, 2006 by -David Turner, Robert Wilhelm, and Werner Lemberg - -Introduction -============ - - The FreeType Project is distributed in several archive packages; - some of them may contain, in addition to the FreeType font engine, - various tools and contributions which rely on, or relate to, the - FreeType Project. - - This license applies to all files found in such packages, and - which do not fall under their own explicit license. The license - affects thus the FreeType font engine, the test programs, - documentation and makefiles, at the very least. - - This license was inspired by the BSD, Artistic, and IJG - (Independent JPEG Group) licenses, which all encourage inclusion - and use of free software in commercial and freeware products - alike. As a consequence, its main points are that: - - o We don't promise that this software works. However, we will be - interested in any kind of bug reports. (`as is' distribution) - - o You can use this software for whatever you want, in parts or - full form, without having to pay us. (`royalty-free' usage) - - o You may not pretend that you wrote this software. If you use - it, or only parts of it, in a program, you must acknowledge - somewhere in your documentation that you have used the - FreeType code. (`credits') - - We specifically permit and encourage the inclusion of this - software, with or without modifications, in commercial products. - We disclaim all warranties covering The FreeType Project and - assume no liability related to The FreeType Project. - - Finally, many people asked us for a preferred form for a - credit/disclaimer to use in compliance with this license. We thus - encourage you to use the following text: - - Portions of this software are copyright © The FreeType - Project (www.freetype.org). All rights reserved. - - Please replace with the value from the FreeType version you - actually use. - -Legal Terms -=========== - -0. Definitions - - Throughout this license, the terms `package', `FreeType Project', - and `FreeType archive' refer to the set of files originally - distributed by the authors (David Turner, Robert Wilhelm, and - Werner Lemberg) as the `FreeType Project', be they named as alpha, - beta or final release. - - `You' refers to the licensee, or person using the project, where - `using' is a generic term including compiling the project's source - code as well as linking it to form a `program' or `executable'. - This program is referred to as `a program using the FreeType - engine'. - - This license applies to all files distributed in the original - FreeType Project, including all source code, binaries and - documentation, unless otherwise stated in the file in its - original, unmodified form as distributed in the original archive. - If you are unsure whether or not a particular file is covered by - this license, you must contact us to verify this. - - The FreeType Project is copyright (C) 1996-2000 by David Turner, - Robert Wilhelm, and Werner Lemberg. All rights reserved except as - specified below. - -1. No Warranty - - THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY - KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO - USE, OF THE FREETYPE PROJECT. - -2. Redistribution - - This license grants a worldwide, royalty-free, perpetual and - irrevocable right and license to use, execute, perform, compile, - display, copy, create derivative works of, distribute and - sublicense the FreeType Project (in both source and object code - forms) and derivative works thereof for any purpose; and to - authorize others to exercise some or all of the rights granted - herein, subject to the following conditions: - - o Redistribution of source code must retain this license file - (`FTL.TXT') unaltered; any additions, deletions or changes to - the original files must be clearly indicated in accompanying - documentation. The copyright notices of the unaltered, - original files must be preserved in all copies of source - files. - - o Redistribution in binary form must provide a disclaimer that - states that the software is based in part of the work of the - FreeType Team, in the distribution documentation. We also - encourage you to put an URL to the FreeType web page in your - documentation, though this isn't mandatory. - - These conditions apply to any software derived from or based on - the FreeType Project, not just the unmodified files. If you use - our work, you must acknowledge us. However, no fee need be paid - to us. - -3. Advertising - - Neither the FreeType authors and contributors nor you shall use - the name of the other for commercial, advertising, or promotional - purposes without specific prior written permission. - - We suggest, but do not require, that you use one or more of the - following phrases to refer to this software in your documentation - or advertising materials: `FreeType Project', `FreeType Engine', - `FreeType library', or `FreeType Distribution'. - - As you have not signed this license, you are not required to - accept it. However, as the FreeType Project is copyrighted - material, only this license, or another one contracted with the - authors, grants you the right to use, distribute, and modify it. - Therefore, by using, distributing, or modifying the FreeType - Project, you indicate that you understand and accept all the terms - of this license. - -4. Contacts - - There are two mailing lists related to FreeType: - - o freetype@nongnu.org - - Discusses general use and applications of FreeType, as well as - future and wanted additions to the library and distribution. - If you are looking for support, start in this list if you - haven't found anything to help you in the documentation. - - o freetype-devel@nongnu.org - - Discusses bugs, as well as engine internals, design issues, - specific licenses, porting, etc. - - Our home page can be found at - - http://www.freetype.org - ---- end of FTL.TXT --- -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/bdf/bdf.c -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/bdf/bdf.c ----------------------------------------------------------------------------------------------------- -Copyright (C) 2001, 2002 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/bdf/bdf.h -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/bdf/bdf.h ----------------------------------------------------------------------------------------------------- -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2004, 2011 Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/bdf/bdfdrivr.c -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/bdf/bdfdrivr.c ----------------------------------------------------------------------------------------------------- -Copyright (C) 2001-2008, 2011, 2013, 2014 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/bdf/bdfdrivr.h -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/bdf/bdfdrivr.h ----------------------------------------------------------------------------------------------------- -Copyright (C) 2001, 2002, 2003, 2004 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/bdf/bdferror.h -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/bdf/bdferror.h ----------------------------------------------------------------------------------------------------- -Copyright 2001, 2002, 2012 Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/bdf/bdflib.c -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/bdf/bdflib.c ----------------------------------------------------------------------------------------------------- -Copyright 2000 Computing Research Labs, New Mexico State University -Copyright 2001-2014 - Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT -OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -THE USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/gzip/adler32.c + ../../../third_party/freetype2/src/gzip/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/freetype2/src/gzip/adler32.c -FILE: ../../../third_party/freetype2/src/gzip/infblock.c -FILE: ../../../third_party/freetype2/src/gzip/infblock.h -FILE: ../../../third_party/freetype2/src/gzip/infcodes.c -FILE: ../../../third_party/freetype2/src/gzip/infcodes.h -FILE: ../../../third_party/freetype2/src/gzip/inflate.c -FILE: ../../../third_party/freetype2/src/gzip/inftrees.c -FILE: ../../../third_party/freetype2/src/gzip/inftrees.h -FILE: ../../../third_party/freetype2/src/gzip/infutil.c -FILE: ../../../third_party/freetype2/src/gzip/infutil.h ----------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2002 Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/gzip/zconf.h + ../../../third_party/freetype2/src/gzip/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/freetype2/src/gzip/zconf.h -FILE: ../../../third_party/freetype2/src/gzip/zutil.c -FILE: ../../../third_party/freetype2/src/gzip/zutil.h ----------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2002 Jean-loup Gailly. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/gzip/zlib.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/freetype2/src/gzip/inffixed.h -FILE: ../../../third_party/freetype2/src/gzip/zlib.h ----------------------------------------------------------------------------------------------------- -Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcf.c -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/pcf/pcf.c ----------------------------------------------------------------------------------------------------- -Copyright 2000-2001, 2003 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcf.h -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/pcf/pcf.h ----------------------------------------------------------------------------------------------------- -Copyright (C) 2000, 2001, 2002, 2003, 2006, 2010 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcfdrivr.c -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/pcf/pcfdrivr.c ----------------------------------------------------------------------------------------------------- -Copyright (C) 2000-2004, 2006-2011, 2013, 2014 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcfdrivr.h -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/pcf/pcfdrivr.h ----------------------------------------------------------------------------------------------------- -Copyright 2000-2001, 2002 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcfread.c -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/pcf/pcfread.c ----------------------------------------------------------------------------------------------------- -Copyright 2000-2010, 2012-2014 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcfread.h -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/pcf/pcfread.h ----------------------------------------------------------------------------------------------------- -Copyright 2003 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcfutil.c -TYPE: LicenseType.unknown -FILE: ../../../third_party/freetype2/src/pcf/pcfutil.c ----------------------------------------------------------------------------------------------------- -Copyright 1990, 1994, 1998 The Open Group - -Permission to use, copy, modify, distribute, and sell this software and its -documentation for any purpose is hereby granted without fee, provided that -the above copyright notice appear in all copies and that both that -copyright notice and this permission notice appear in supporting -documentation. - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of The Open Group shall not be -used in advertising or otherwise to promote the sale, use or other dealings -in this Software without prior written authorization from The Open Group. -==================================================================================================== - -==================================================================================================== -LIBRARY: freetype2 -ORIGIN: ../../../third_party/freetype2/src/pcf/pcfutil.h -TYPE: LicenseType.mit -FILE: ../../../third_party/freetype2/src/pcf/pcfutil.h ----------------------------------------------------------------------------------------------------- -Copyright 2000, 2001, 2004 by -Francesco Zappa Nardelli - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: gif -ORIGIN: ../../../third_party/skia/third_party/gif/SkGifImageReader.cpp -TYPE: LicenseType.lgpl -FILE: ../../../third_party/skia/third_party/gif/SkGifImageReader.cpp -FILE: ../../../third_party/skia/third_party/gif/SkGifImageReader.h ----------------------------------------------------------------------------------------------------- -GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - -Copyright (C) 1991, 1999 Free Software Foundation, Inc. -51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -Everyone is permitted to copy and distribute verbatim copies -of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! -==================================================================================================== - -==================================================================================================== -LIBRARY: gif -ORIGIN: ../../../third_party/skia/third_party/gif/SkGifImageReader.cpp -TYPE: LicenseType.unknown -FILE: ../../../third_party/skia/third_party/gif/SkGifImageReader.cpp ----------------------------------------------------------------------------------------------------- -The Graphics Interchange Format(c) is the copyright property of CompuServe -Incorporated. Only CompuServe Incorporated is authorized to define, redefine, -enhance, alter, modify or change in any way the definition of the format. - -CompuServe Incorporated hereby grants a limited, non-exclusive, royalty-free -license for the use of the Graphics Interchange Format(sm) in computer -software; computer software utilizing GIF(sm) must acknowledge ownership of the -Graphics Interchange Format and its Service Mark by CompuServe Incorporated, in -User and Technical Documentation. Computer software utilizing GIF, which is -distributed or may be distributed without User or Technical Documentation must -display to the screen or printer a message acknowledging ownership of the -Graphics Interchange Format and the Service Mark by CompuServe Incorporated; in -this case, the acknowledgement may be displayed in an opening screen or leading -banner, or a closing screen or trailing banner. A message such as the following -may be used: - - "The Graphics Interchange Format(c) is the Copyright property of - CompuServe Incorporated. GIF(sm) is a Service Mark property of - CompuServe Incorporated." -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/COPYING -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic-table.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-use-table.cc ----------------------------------------------------------------------------------------------------- -HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. -For parts of HarfBuzz that are licensed under different licenses see individual -files names COPYING in subdirectories where applicable. - -Copyright © 2010,2011,2012 Google, Inc. -Copyright © 2012 Mozilla Foundation -Copyright © 2011 Codethink Limited -Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) -Copyright © 2009 Keith Stribley -Copyright © 2009 Martin Hosken and SIL International -Copyright © 2007 Chris Wilson -Copyright © 2006 Behdad Esfahbod -Copyright © 2005 David Turner -Copyright © 2004,2007,2008,2009,2010 Red Hat, Inc. -Copyright © 1998-2004 David Turner and Werner Lemberg - -For full copyright notices consult the individual files in the package. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-atomic-private.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-atomic-private.hh -FILE: ../../../third_party/harfbuzz/src/hb-mutex-private.hh -FILE: ../../../third_party/harfbuzz/src/hb-object-private.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007 Chris Wilson -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-blob.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-blob.cc -FILE: ../../../third_party/harfbuzz/src/hb-blob.h -FILE: ../../../third_party/harfbuzz/src/hb-face.h -FILE: ../../../third_party/harfbuzz/src/hb-font.h -FILE: ../../../third_party/harfbuzz/src/hb-ot-tag.h -FILE: ../../../third_party/harfbuzz/src/hb-ot.h -FILE: ../../../third_party/harfbuzz/src/hb.h ----------------------------------------------------------------------------------------------------- -Copyright © 2009 Red Hat, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-json.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-json.hh -FILE: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-text.hh -FILE: ../../../third_party/harfbuzz/src/hb-deprecated.h -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-jstf-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-hangul.cc -FILE: ../../../third_party/skia/third_party/harfbuzz/hb-buffer-deserialize-json.hh -FILE: ../../../third_party/skia/third_party/harfbuzz/hb-buffer-deserialize-text.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-private.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-buffer-private.hh -FILE: ../../../third_party/harfbuzz/src/hb-buffer.cc ----------------------------------------------------------------------------------------------------- -Copyright © 1998-2004 David Turner and Werner Lemberg -Copyright © 2004,2007,2009,2010 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-serialize.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-buffer-serialize.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-buffer.h ----------------------------------------------------------------------------------------------------- -Copyright © 1998-2004 David Turner and Werner Lemberg -Copyright © 2004,2007,2009 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-cache-private.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-cache-private.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-fallback.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic-private.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-fallback-private.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-normalize-private.hh -FILE: ../../../third_party/harfbuzz/src/hb-set-private.hh -FILE: ../../../third_party/harfbuzz/src/hb-set.cc -FILE: ../../../third_party/harfbuzz/src/hb-set.h -FILE: ../../../third_party/harfbuzz/src/hb-shape-plan-private.hh -FILE: ../../../third_party/harfbuzz/src/hb-shape-plan.cc -FILE: ../../../third_party/harfbuzz/src/hb-shape-plan.h -FILE: ../../../third_party/harfbuzz/src/hb-shaper-impl-private.hh -FILE: ../../../third_party/harfbuzz/src/hb-shaper-list.hh -FILE: ../../../third_party/harfbuzz/src/hb-shaper-private.hh -FILE: ../../../third_party/harfbuzz/src/hb-shaper.cc -FILE: ../../../third_party/harfbuzz/src/hb-warning.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-common.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-common.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-common.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-common.h -FILE: ../../../third_party/harfbuzz/src/hb-private.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-coretext.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-coretext.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2012,2013 Mozilla Foundation. -Copyright © 2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-coretext.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-coretext.h ----------------------------------------------------------------------------------------------------- -Copyright © 2012 Mozilla Foundation. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-face-private.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-face-private.hh -FILE: ../../../third_party/harfbuzz/src/hb-font-private.hh -FILE: ../../../third_party/harfbuzz/src/hb-icu.h -FILE: ../../../third_party/harfbuzz/src/hb-ot-tag.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2009 Red Hat, Inc. -Copyright © 2011 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-face.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-face.cc -FILE: ../../../third_party/harfbuzz/src/hb-font.cc -FILE: ../../../third_party/harfbuzz/src/hb-shape.cc -FILE: ../../../third_party/harfbuzz/src/hb-shape.h ----------------------------------------------------------------------------------------------------- -Copyright © 2009 Red Hat, Inc. -Copyright © 2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-fallback-shape.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-fallback-shape.cc -FILE: ../../../third_party/harfbuzz/src/hb-uniscribe.h -FILE: ../../../third_party/harfbuzz/src/hb-version.h -FILE: ../../../third_party/skia/third_party/harfbuzz/hb-version.h ----------------------------------------------------------------------------------------------------- -Copyright © 2011 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-icu.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-icu.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2009 Red Hat, Inc. -Copyright © 2009 Keith Stribley -Copyright © 2011 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-open-file-private.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-open-file-private.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-open-type-private.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-open-type-private.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cbdt-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-cbdt-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-post-table.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2016 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cmap-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-cmap-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-font.h -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-win1256.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2014 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-font.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-font.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2011,2014 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-glyf-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-glyf-table.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2015 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-head-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-head-table.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2010 Red Hat, Inc. -Copyright © 2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-hhea-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-hhea-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-hmtx-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-maxp-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-name-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-os2-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic-machine.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-myanmar-machine.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-fallback.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-normalize.cc -FILE: ../../../third_party/skia/third_party/harfbuzz/hb-ot-shape-complex-indic-machine.hh -FILE: ../../../third_party/skia/third_party/harfbuzz/hb-ot-shape-complex-myanmar-machine.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-common-private.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-common-private.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2010,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-gdef-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gdef-table.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2010,2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-gpos-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gpos-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gsub-table.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2010,2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-gsubgpos-private.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gsubgpos-private.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009,2010 Red Hat, Inc. -Copyright © 2010,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-private.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-private.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout.cc ----------------------------------------------------------------------------------------------------- -Copyright © 1998-2004 David Turner and Werner Lemberg -Copyright © 2006 Behdad Esfahbod -Copyright © 2007,2008,2009 Red Hat, Inc. -Copyright © 2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-layout.h -FILE: ../../../third_party/harfbuzz/src/main.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2007,2008,2009 Red Hat, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-map-private.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-map-private.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2010,2011,2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-map.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-map.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2010,2011,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-math-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-math-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-math.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-math.h ----------------------------------------------------------------------------------------------------- -Copyright © 2016 Igalia S.L. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-private.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-private.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-use-machine.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-use-private.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-use.cc -FILE: ../../../third_party/skia/third_party/harfbuzz/hb-ot-shape-complex-use-machine.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2015 Mozilla Foundation. -Copyright © 2015 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-default.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-hebrew.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-thai.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-tibetan.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2010,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-myanmar.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-myanmar.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2011,2012,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-private.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-private.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2010,2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-private.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-private.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2010 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2009,2010 Red Hat, Inc. -Copyright © 2010,2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-shape.h ----------------------------------------------------------------------------------------------------- -Copyright © 2013 Red Hat, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-var-avar-table.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-ot-var-avar-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-var-fvar-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-var-hvar-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-var-mvar-table.hh -FILE: ../../../third_party/harfbuzz/src/hb-ot-var.cc -FILE: ../../../third_party/harfbuzz/src/hb-ot-var.h ----------------------------------------------------------------------------------------------------- -Copyright © 2017 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-unicode-private.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-unicode-private.hh -FILE: ../../../third_party/harfbuzz/src/hb-unicode.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2009 Red Hat, Inc. -Copyright © 2011 Codethink Limited -Copyright © 2010,2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-unicode.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-unicode.h ----------------------------------------------------------------------------------------------------- -Copyright © 2009 Red Hat, Inc. -Copyright © 2011 Codethink Limited -Copyright © 2011,2012 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/hb-utf-private.hh -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/hb-utf-private.hh ----------------------------------------------------------------------------------------------------- -Copyright © 2011,2012,2014 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/test-buffer-serialize.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/test-buffer-serialize.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2010,2011,2013 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: harfbuzz -ORIGIN: ../../../third_party/harfbuzz/src/test-size-params.cc -TYPE: LicenseType.unknown -FILE: ../../../third_party/harfbuzz/src/test-size-params.cc -FILE: ../../../third_party/harfbuzz/src/test-would-substitute.cc -FILE: ../../../third_party/harfbuzz/src/test.cc ----------------------------------------------------------------------------------------------------- -Copyright © 2010,2011 Google, Inc. - - This is part of HarfBuzz, a text shaping library. - -Permission is hereby granted, without written agreement and without -license or royalty fees, to use, copy, modify, and distribute this -software and its documentation for any purpose, provided that the -above copyright notice and the following two paragraphs appear in -all copies of this software. - -IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR -DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES -ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN -IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. - -THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, -BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS -ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO -PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -LIBRARY: skia -ORIGIN: ../../../third_party/icu/fuzzers/icu_converter_fuzzer.cc + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/fuzzers/icu_converter_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_regex.dict -FILE: ../../../third_party/icu/fuzzers/icu_uregex_open_fuzzer.cc -FILE: ../../../third_party/skia/infra/bots/gen_tasks.go ----------------------------------------------------------------------------------------------------- -Copyright 2016 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -LIBRARY: skia -ORIGIN: ../../../third_party/icu/scripts/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/fuzzers/icu_unicode_string_codepage_create_fuzzer.cc -FILE: ../../../third_party/icu/scripts/accept_lang.list -FILE: ../../../third_party/icu/scripts/chrome_ui_languages.list -FILE: ../../../third_party/icu/scripts/currencies.list -FILE: ../../../third_party/skia/src/core/SkTraceEventCommon.h ----------------------------------------------------------------------------------------------------- -Copyright 2015 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/icu.isolate ----------------------------------------------------------------------------------------------------- -Copyright 2014 The Chromium Authors. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/android/brkitr.patch -FILE: ../../../third_party/icu/android/currencies.list -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/collator_range.patch -FILE: ../../../third_party/icu/patches/data.build.patch -FILE: ../../../third_party/icu/patches/data.build.win.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/han_script.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/linebrk.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/msvc4229.patch -FILE: ../../../third_party/icu/patches/string_literal_charptr.patch -FILE: ../../../third_party/icu/patches/tzdbname.patch -FILE: ../../../third_party/icu/patches/ucase_utf8.patch -FILE: ../../../third_party/icu/patches/ucurr_locale.patch -FILE: ../../../third_party/icu/patches/uloc_buffer_overrun.patch -FILE: ../../../third_party/icu/patches/vscomp.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/curr/pool.res -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/lang/pool.res -FILE: ../../../third_party/icu/source/data/locales/pool.res -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/data/region/pool.res -FILE: ../../../third_party/icu/source/data/unit/pool.res -FILE: ../../../third_party/icu/source/data/zone/pool.res -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/windows/icudt.dll ----------------------------------------------------------------------------------------------------- -Copyright (c) 1999 Computer Systems and Communication Lab, - Institute of Information Science, Academia - * Sinica. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. -. Neither the name of the Computer Systems and Communication Lab - nor the names of its contributors may be used to endorse or - promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/android/brkitr.patch -FILE: ../../../third_party/icu/android/currencies.list -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/collator_range.patch -FILE: ../../../third_party/icu/patches/data.build.patch -FILE: ../../../third_party/icu/patches/data.build.win.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/han_script.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/linebrk.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/msvc4229.patch -FILE: ../../../third_party/icu/patches/string_literal_charptr.patch -FILE: ../../../third_party/icu/patches/tzdbname.patch -FILE: ../../../third_party/icu/patches/ucase_utf8.patch -FILE: ../../../third_party/icu/patches/ucurr_locale.patch -FILE: ../../../third_party/icu/patches/uloc_buffer_overrun.patch -FILE: ../../../third_party/icu/patches/vscomp.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/curr/pool.res -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/lang/pool.res -FILE: ../../../third_party/icu/source/data/locales/pool.res -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/data/region/pool.res -FILE: ../../../third_party/icu/source/data/unit/pool.res -FILE: ../../../third_party/icu/source/data/zone/pool.res -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/windows/icudt.dll ----------------------------------------------------------------------------------------------------- -Copyright (c) 2013 International Business Machines Corporation -and others. All Rights Reserved. - -Project: http://code.google.com/p/lao-dictionary -Dictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt -License: http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt - (copied below) - - This file is derived from the above dictionary, with slight - modifications. - - Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, - are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. Redistributions in - binary form must reproduce the above copyright notice, this list of - conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/android/brkitr.patch -FILE: ../../../third_party/icu/android/currencies.list -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/collator_range.patch -FILE: ../../../third_party/icu/patches/data.build.patch -FILE: ../../../third_party/icu/patches/data.build.win.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/han_script.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/linebrk.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/msvc4229.patch -FILE: ../../../third_party/icu/patches/string_literal_charptr.patch -FILE: ../../../third_party/icu/patches/tzdbname.patch -FILE: ../../../third_party/icu/patches/ucase_utf8.patch -FILE: ../../../third_party/icu/patches/ucurr_locale.patch -FILE: ../../../third_party/icu/patches/uloc_buffer_overrun.patch -FILE: ../../../third_party/icu/patches/vscomp.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/curr/pool.res -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/lang/pool.res -FILE: ../../../third_party/icu/source/data/locales/pool.res -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/data/region/pool.res -FILE: ../../../third_party/icu/source/data/unit/pool.res -FILE: ../../../third_party/icu/source/data/zone/pool.res -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/windows/icudt.dll ----------------------------------------------------------------------------------------------------- -Copyright (c) 2014 International Business Machines Corporation -and others. All Rights Reserved. - -This list is part of a project hosted at: - github.com/kanyawtech/myanmar-karen-word-lists - -Copyright (c) 2013, LeRoy Benjamin Sharon -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: Redistributions of source code must retain the above -copyright notice, this list of conditions and the following -disclaimer. Redistributions in binary form must reproduce the -above copyright notice, this list of conditions and the following -disclaimer in the documentation and/or other materials provided -with the distribution. - - Neither the name Myanmar Karen Word Lists, nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS -BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR -TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF -THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF -SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/android/brkitr.patch -FILE: ../../../third_party/icu/android/currencies.list -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/collator_range.patch -FILE: ../../../third_party/icu/patches/data.build.patch -FILE: ../../../third_party/icu/patches/data.build.win.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/han_script.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/linebrk.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/msvc4229.patch -FILE: ../../../third_party/icu/patches/string_literal_charptr.patch -FILE: ../../../third_party/icu/patches/tzdbname.patch -FILE: ../../../third_party/icu/patches/ucase_utf8.patch -FILE: ../../../third_party/icu/patches/ucurr_locale.patch -FILE: ../../../third_party/icu/patches/uloc_buffer_overrun.patch -FILE: ../../../third_party/icu/patches/vscomp.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/curr/pool.res -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/lang/pool.res -FILE: ../../../third_party/icu/source/data/locales/pool.res -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/data/region/pool.res -FILE: ../../../third_party/icu/source/data/unit/pool.res -FILE: ../../../third_party/icu/source/data/zone/pool.res -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/windows/icudt.dll ----------------------------------------------------------------------------------------------------- -Copyrighy (c) 1999 TaBE Project. -Copyright (c) 1999 Pai-Hsiang Hsiao. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. -. Neither the name of the TaBE Project nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/android/brkitr.patch -FILE: ../../../third_party/icu/android/currencies.list -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/collator_range.patch -FILE: ../../../third_party/icu/patches/data.build.patch -FILE: ../../../third_party/icu/patches/data.build.win.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/han_script.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/linebrk.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/msvc4229.patch -FILE: ../../../third_party/icu/patches/string_literal_charptr.patch -FILE: ../../../third_party/icu/patches/tzdbname.patch -FILE: ../../../third_party/icu/patches/ucase_utf8.patch -FILE: ../../../third_party/icu/patches/ucurr_locale.patch -FILE: ../../../third_party/icu/patches/uloc_buffer_overrun.patch -FILE: ../../../third_party/icu/patches/vscomp.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/curr/pool.res -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/lang/pool.res -FILE: ../../../third_party/icu/source/data/locales/pool.res -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/data/region/pool.res -FILE: ../../../third_party/icu/source/data/unit/pool.res -FILE: ../../../third_party/icu/source/data/zone/pool.res -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/windows/icudt.dll ----------------------------------------------------------------------------------------------------- -The BSD License -http://opensource.org/licenses/bsd-license.php -Copyright (C) 2006-2008, Google Inc. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - Redistributions of source code must retain the above copyright notice, -this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following -disclaimer in the documentation and/or other materials provided with -the distribution. - Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, -INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR -BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE -TYPE: LicenseType.icu -FILE: ../../../third_party/icu/android/brkitr.patch -FILE: ../../../third_party/icu/android/currencies.list -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/collator_range.patch -FILE: ../../../third_party/icu/patches/data.build.patch -FILE: ../../../third_party/icu/patches/data.build.win.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/han_script.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/linebrk.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/msvc4229.patch -FILE: ../../../third_party/icu/patches/string_literal_charptr.patch -FILE: ../../../third_party/icu/patches/tzdbname.patch -FILE: ../../../third_party/icu/patches/ucase_utf8.patch -FILE: ../../../third_party/icu/patches/ucurr_locale.patch -FILE: ../../../third_party/icu/patches/uloc_buffer_overrun.patch -FILE: ../../../third_party/icu/patches/vscomp.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/curr/pool.res -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/lang/pool.res -FILE: ../../../third_party/icu/source/data/locales/pool.res -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/data/region/pool.res -FILE: ../../../third_party/icu/source/data/unit/pool.res -FILE: ../../../third_party/icu/source/data/zone/pool.res -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/windows/icudt.dll ----------------------------------------------------------------------------------------------------- -Copyright (c) 1995-2016 International Business Machines Corporation and others -All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, and/or sell copies of the Software, and to permit persons -to whom the Software is furnished to do so, provided that the above -copyright notice(s) and this permission notice appear in all copies of -the Software and that both the above copyright notice(s) and this -permission notice appear in supporting documentation. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR -HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY -SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER -RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF -CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN -CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, use -or other dealings in this Software without prior written authorization -of the copyright holder. - -All trademarks and registered trademarks mentioned herein are the -property of their respective owners. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE -TYPE: LicenseType.unknown -FILE: ../../../third_party/icu/android/brkitr.patch -FILE: ../../../third_party/icu/android/currencies.list -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/collator_range.patch -FILE: ../../../third_party/icu/patches/data.build.patch -FILE: ../../../third_party/icu/patches/data.build.win.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/han_script.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/linebrk.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/msvc4229.patch -FILE: ../../../third_party/icu/patches/string_literal_charptr.patch -FILE: ../../../third_party/icu/patches/tzdbname.patch -FILE: ../../../third_party/icu/patches/ucase_utf8.patch -FILE: ../../../third_party/icu/patches/ucurr_locale.patch -FILE: ../../../third_party/icu/patches/uloc_buffer_overrun.patch -FILE: ../../../third_party/icu/patches/vscomp.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/curr/pool.res -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/lang/pool.res -FILE: ../../../third_party/icu/source/data/locales/pool.res -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/data/region/pool.res -FILE: ../../../third_party/icu/source/data/unit/pool.res -FILE: ../../../third_party/icu/source/data/zone/pool.res -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/windows/icudt.dll ----------------------------------------------------------------------------------------------------- -Copyright 1996 Chih-Hao Tsai @ Beckman Institute, - University of Illinois -c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE -TYPE: LicenseType.unknown -FILE: ../../../third_party/icu/android/brkitr.patch -FILE: ../../../third_party/icu/android/currencies.list -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/collator_range.patch -FILE: ../../../third_party/icu/patches/data.build.patch -FILE: ../../../third_party/icu/patches/data.build.win.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/han_script.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/linebrk.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/msvc4229.patch -FILE: ../../../third_party/icu/patches/string_literal_charptr.patch -FILE: ../../../third_party/icu/patches/tzdbname.patch -FILE: ../../../third_party/icu/patches/ucase_utf8.patch -FILE: ../../../third_party/icu/patches/ucurr_locale.patch -FILE: ../../../third_party/icu/patches/uloc_buffer_overrun.patch -FILE: ../../../third_party/icu/patches/vscomp.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/curr/pool.res -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/lang/pool.res -FILE: ../../../third_party/icu/source/data/locales/pool.res -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/data/region/pool.res -FILE: ../../../third_party/icu/source/data/unit/pool.res -FILE: ../../../third_party/icu/source/data/zone/pool.res -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/windows/icudt.dll ----------------------------------------------------------------------------------------------------- -Copyright 2000, 2001, 2002, 2003 Nara Institute of Science -and Technology. All Rights Reserved. - -Use, reproduction, and distribution of this software is permitted. -Any copy of this software, whether in its original form or modified, -must include both the above copyright notice and the following -paragraphs. - -Nara Institute of Science and Technology (NAIST), -the copyright holders, disclaims all warranties with regard to this -software, including all implied warranties of merchantability and -fitness, in no event shall NAIST be liable for -any special, indirect or consequential damages or any damages -whatsoever resulting from loss of use, data or profits, whether in an -action of contract, negligence or other tortuous action, arising out -of or in connection with the use or performance of this software. - -A large portion of the dictionary entries -originate from ICOT Free Software. The following conditions for ICOT -Free Software applies to the current dictionary as well. - -Each User may also freely distribute the Program, whether in its -original form or modified, to any third party or parties, PROVIDED -that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear -on, or be attached to, the Program, which is distributed substantially -in the same form as set out herein and that such intended -distribution, if actually made, will neither violate or otherwise -contravene any of the laws and regulations of the countries having -jurisdiction over the User or the intended distribution itself. - -NO WARRANTY - -The program was produced on an experimental basis in the course of the -research and development conducted during the project and is provided -to users as so produced on an experimental basis. Accordingly, the -program is provided without any warranty whatsoever, whether express, -implied, statutory or otherwise. The term "warranty" used herein -includes, but is not limited to, any warranty of the quality, -performance, merchantability and fitness for a particular purpose of -the program and the nonexistence of any infringement or violation of -any right of any third party. - -Each user of the program will agree and understand, and be deemed to -have agreed and understood, that there is no warranty whatsoever for -the program and, accordingly, the entire risk arising from or -otherwise connected with the program is assumed by the user. - -Therefore, neither ICOT, the copyright holder, or any other -organization that participated in or was otherwise related to the -development of the program and their respective officials, directors, -officers and other employees shall be held liable for any and all -damages, including, without limitation, general, special, incidental -and consequential damages, arising out of or otherwise in connection -with the use or inability to use the program or any product, material -or result produced or otherwise obtained by using the program, -regardless of whether they have been advised of, or otherwise had -knowledge of, the possibility of such damages at any time during the -project or thereafter. Each user will be deemed to have agreed to the -foregoing by his or her commencement of use of the program. The term -"use" as used herein includes, but is not limited to, the use, -modification, copying and distribution of the program and the -production of secondary products from the program. - -In the case where the program, whether in its original form or -modified, was distributed or delivered to or received by a user from -any person, organization or entity other than ICOT, unless it makes or -grants independently of ICOT any specific warranty to the user in -writing, such person, organization or entity, will also be exempted -from and not be held liable to the user for any such damages as noted -above as far as the program is concerned. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/LICENSE -TYPE: LicenseType.unknown -FILE: ../../../third_party/icu/android/brkitr.patch -FILE: ../../../third_party/icu/android/currencies.list -FILE: ../../../third_party/icu/android/icudtl.dat -FILE: ../../../third_party/icu/common/icudtb.dat -FILE: ../../../third_party/icu/common/icudtl.dat -FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc -FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc -FILE: ../../../third_party/icu/ios/icudtl.dat -FILE: ../../../third_party/icu/patches/cjdict.patch -FILE: ../../../third_party/icu/patches/collator_range.patch -FILE: ../../../third_party/icu/patches/data.build.patch -FILE: ../../../third_party/icu/patches/data.build.win.patch -FILE: ../../../third_party/icu/patches/data_symb.patch -FILE: ../../../third_party/icu/patches/fuchsia.patch -FILE: ../../../third_party/icu/patches/gb_table.patch -FILE: ../../../third_party/icu/patches/han_script.patch -FILE: ../../../third_party/icu/patches/khmer-dictbe.patch -FILE: ../../../third_party/icu/patches/linebrk.patch -FILE: ../../../third_party/icu/patches/locale1.patch -FILE: ../../../third_party/icu/patches/locale_google.patch -FILE: ../../../third_party/icu/patches/msvc4229.patch -FILE: ../../../third_party/icu/patches/string_literal_charptr.patch -FILE: ../../../third_party/icu/patches/tzdbname.patch -FILE: ../../../third_party/icu/patches/ucase_utf8.patch -FILE: ../../../third_party/icu/patches/ucurr_locale.patch -FILE: ../../../third_party/icu/patches/uloc_buffer_overrun.patch -FILE: ../../../third_party/icu/patches/vscomp.patch -FILE: ../../../third_party/icu/patches/wordbrk.patch -FILE: ../../../third_party/icu/patches/wpo.patch -FILE: ../../../third_party/icu/source/data/curr/pool.res -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu -FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu -FILE: ../../../third_party/icu/source/data/in/nfc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc.nrm -FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm -FILE: ../../../third_party/icu/source/data/in/pnames.icu -FILE: ../../../third_party/icu/source/data/in/ubidi.icu -FILE: ../../../third_party/icu/source/data/in/ucase.icu -FILE: ../../../third_party/icu/source/data/in/unames.icu -FILE: ../../../third_party/icu/source/data/in/uprops.icu -FILE: ../../../third_party/icu/source/data/in/uts46.nrm -FILE: ../../../third_party/icu/source/data/lang/pool.res -FILE: ../../../third_party/icu/source/data/locales/pool.res -FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm -FILE: ../../../third_party/icu/source/data/region/pool.res -FILE: ../../../third_party/icu/source/data/unit/pool.res -FILE: ../../../third_party/icu/source/data/zone/pool.res -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw -FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin -FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c -FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c -FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c -FILE: ../../../third_party/icu/source/tools/tzcode/private.h -FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c -FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h -FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh -FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c -FILE: ../../../third_party/icu/source/tools/tzcode/zic.c -FILE: ../../../third_party/icu/windows/icudt.dll ----------------------------------------------------------------------------------------------------- -Copyright © 1991-2017 Unicode, Inc. All rights reserved. -Distributed under the Terms of Use in http://www.unicode.org/copyright.html - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. -==================================================================================================== - -==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/source/common/unicode/appendable.h -TYPE: LicenseType.icu -FILE: ../../../third_party/icu/APIChangeReport.html -FILE: ../../../third_party/icu/source/Doxyfile.in -FILE: ../../../third_party/icu/source/common/appendable.cpp -FILE: ../../../third_party/icu/source/common/bmpset.cpp -FILE: ../../../third_party/icu/source/common/bmpset.h -FILE: ../../../third_party/icu/source/common/brkeng.cpp -FILE: ../../../third_party/icu/source/common/brkeng.h -FILE: ../../../third_party/icu/source/common/brkiter.cpp -FILE: ../../../third_party/icu/source/common/bytestream.cpp -FILE: ../../../third_party/icu/source/common/bytestrie.cpp -FILE: ../../../third_party/icu/source/common/bytestriebuilder.cpp -FILE: ../../../third_party/icu/source/common/bytestrieiterator.cpp -FILE: ../../../third_party/icu/source/common/caniter.cpp -FILE: ../../../third_party/icu/source/common/chariter.cpp -FILE: ../../../third_party/icu/source/common/charstr.cpp -FILE: ../../../third_party/icu/source/common/charstr.h -FILE: ../../../third_party/icu/source/common/cmemory.cpp -FILE: ../../../third_party/icu/source/common/cmemory.h -FILE: ../../../third_party/icu/source/common/common.rc -FILE: ../../../third_party/icu/source/common/cpputils.h -FILE: ../../../third_party/icu/source/common/cstr.cpp -FILE: ../../../third_party/icu/source/common/cstr.h -FILE: ../../../third_party/icu/source/common/cstring.cpp -FILE: ../../../third_party/icu/source/common/cstring.h -FILE: ../../../third_party/icu/source/common/cwchar.cpp -FILE: ../../../third_party/icu/source/common/cwchar.h -FILE: ../../../third_party/icu/source/common/dictbe.cpp -FILE: ../../../third_party/icu/source/common/dictbe.h -FILE: ../../../third_party/icu/source/common/dictionarydata.cpp -FILE: ../../../third_party/icu/source/common/dictionarydata.h -FILE: ../../../third_party/icu/source/common/dtintrv.cpp -FILE: ../../../third_party/icu/source/common/edits.cpp -FILE: ../../../third_party/icu/source/common/errorcode.cpp -FILE: ../../../third_party/icu/source/common/filteredbrk.cpp -FILE: ../../../third_party/icu/source/common/filterednormalizer2.cpp -FILE: ../../../third_party/icu/source/common/hash.h -FILE: ../../../third_party/icu/source/common/icudataver.cpp -FILE: ../../../third_party/icu/source/common/icuplug.cpp -FILE: ../../../third_party/icu/source/common/icuplugimp.h -FILE: ../../../third_party/icu/source/common/listformatter.cpp -FILE: ../../../third_party/icu/source/common/loadednormalizer2impl.cpp -FILE: ../../../third_party/icu/source/common/localsvc.h -FILE: ../../../third_party/icu/source/common/locavailable.cpp -FILE: ../../../third_party/icu/source/common/locbased.cpp -FILE: ../../../third_party/icu/source/common/locbased.h -FILE: ../../../third_party/icu/source/common/locdispnames.cpp -FILE: ../../../third_party/icu/source/common/locdspnm.cpp -FILE: ../../../third_party/icu/source/common/locid.cpp -FILE: ../../../third_party/icu/source/common/loclikely.cpp -FILE: ../../../third_party/icu/source/common/locmap.cpp -FILE: ../../../third_party/icu/source/common/locmap.h -FILE: ../../../third_party/icu/source/common/locresdata.cpp -FILE: ../../../third_party/icu/source/common/locutil.cpp -FILE: ../../../third_party/icu/source/common/locutil.h -FILE: ../../../third_party/icu/source/common/messageimpl.h -FILE: ../../../third_party/icu/source/common/messagepattern.cpp -FILE: ../../../third_party/icu/source/common/msvcres.h -FILE: ../../../third_party/icu/source/common/mutex.h -FILE: ../../../third_party/icu/source/common/norm2_nfc_data.h -FILE: ../../../third_party/icu/source/common/norm2allmodes.h -FILE: ../../../third_party/icu/source/common/normalizer2.cpp -FILE: ../../../third_party/icu/source/common/normalizer2impl.cpp -FILE: ../../../third_party/icu/source/common/normalizer2impl.h -FILE: ../../../third_party/icu/source/common/normlzr.cpp -FILE: ../../../third_party/icu/source/common/parsepos.cpp -FILE: ../../../third_party/icu/source/common/patternprops.cpp -FILE: ../../../third_party/icu/source/common/patternprops.h -FILE: ../../../third_party/icu/source/common/pluralmap.cpp -FILE: ../../../third_party/icu/source/common/pluralmap.h -FILE: ../../../third_party/icu/source/common/propname.cpp -FILE: ../../../third_party/icu/source/common/propname.h -FILE: ../../../third_party/icu/source/common/propname_data.h -FILE: ../../../third_party/icu/source/common/propsvec.cpp -FILE: ../../../third_party/icu/source/common/propsvec.h -FILE: ../../../third_party/icu/source/common/punycode.cpp -FILE: ../../../third_party/icu/source/common/punycode.h -FILE: ../../../third_party/icu/source/common/putil.cpp -FILE: ../../../third_party/icu/source/common/putilimp.h -FILE: ../../../third_party/icu/source/common/rbbi.cpp -FILE: ../../../third_party/icu/source/common/rbbidata.cpp -FILE: ../../../third_party/icu/source/common/rbbidata.h -FILE: ../../../third_party/icu/source/common/rbbinode.cpp -FILE: ../../../third_party/icu/source/common/rbbinode.h -FILE: ../../../third_party/icu/source/common/rbbirb.cpp -FILE: ../../../third_party/icu/source/common/rbbirb.h -FILE: ../../../third_party/icu/source/common/rbbirpt.h -FILE: ../../../third_party/icu/source/common/rbbiscan.cpp -FILE: ../../../third_party/icu/source/common/rbbiscan.h -FILE: ../../../third_party/icu/source/common/rbbisetb.cpp -FILE: ../../../third_party/icu/source/common/rbbisetb.h -FILE: ../../../third_party/icu/source/common/rbbistbl.cpp -FILE: ../../../third_party/icu/source/common/rbbitblb.cpp -FILE: ../../../third_party/icu/source/common/rbbitblb.h -FILE: ../../../third_party/icu/source/common/resbund.cpp -FILE: ../../../third_party/icu/source/common/resbund_cnv.cpp -FILE: ../../../third_party/icu/source/common/resource.cpp -FILE: ../../../third_party/icu/source/common/resource.h -FILE: ../../../third_party/icu/source/common/ruleiter.cpp -FILE: ../../../third_party/icu/source/common/ruleiter.h -FILE: ../../../third_party/icu/source/common/schriter.cpp -FILE: ../../../third_party/icu/source/common/serv.cpp -FILE: ../../../third_party/icu/source/common/serv.h -FILE: ../../../third_party/icu/source/common/servlk.cpp -FILE: ../../../third_party/icu/source/common/servlkf.cpp -FILE: ../../../third_party/icu/source/common/servloc.h -FILE: ../../../third_party/icu/source/common/servls.cpp -FILE: ../../../third_party/icu/source/common/servnotf.cpp -FILE: ../../../third_party/icu/source/common/servnotf.h -FILE: ../../../third_party/icu/source/common/servrbf.cpp -FILE: ../../../third_party/icu/source/common/servslkf.cpp -FILE: ../../../third_party/icu/source/common/sharedobject.cpp -FILE: ../../../third_party/icu/source/common/sharedobject.h -FILE: ../../../third_party/icu/source/common/simpleformatter.cpp -FILE: ../../../third_party/icu/source/common/sprpimpl.h -FILE: ../../../third_party/icu/source/common/stringpiece.cpp -FILE: ../../../third_party/icu/source/common/stringtriebuilder.cpp -FILE: ../../../third_party/icu/source/common/uarrsort.cpp -FILE: ../../../third_party/icu/source/common/uarrsort.h -FILE: ../../../third_party/icu/source/common/uassert.h -FILE: ../../../third_party/icu/source/common/ubidi.cpp -FILE: ../../../third_party/icu/source/common/ubidi_props.cpp -FILE: ../../../third_party/icu/source/common/ubidi_props.h -FILE: ../../../third_party/icu/source/common/ubidi_props_data.h -FILE: ../../../third_party/icu/source/common/ubidiimp.h -FILE: ../../../third_party/icu/source/common/ubidiln.cpp -FILE: ../../../third_party/icu/source/common/ubiditransform.cpp -FILE: ../../../third_party/icu/source/common/ubidiwrt.cpp -FILE: ../../../third_party/icu/source/common/ubrk.cpp -FILE: ../../../third_party/icu/source/common/ubrkimpl.h -FILE: ../../../third_party/icu/source/common/ucase.cpp -FILE: ../../../third_party/icu/source/common/ucase.h -FILE: ../../../third_party/icu/source/common/ucase_props_data.h -FILE: ../../../third_party/icu/source/common/ucasemap.cpp -FILE: ../../../third_party/icu/source/common/ucasemap_imp.h -FILE: ../../../third_party/icu/source/common/ucasemap_titlecase_brkiter.cpp -FILE: ../../../third_party/icu/source/common/ucat.cpp -FILE: ../../../third_party/icu/source/common/uchar.cpp -FILE: ../../../third_party/icu/source/common/uchar_props_data.h -FILE: ../../../third_party/icu/source/common/ucharstrie.cpp -FILE: ../../../third_party/icu/source/common/ucharstriebuilder.cpp -FILE: ../../../third_party/icu/source/common/ucharstrieiterator.cpp -FILE: ../../../third_party/icu/source/common/uchriter.cpp -FILE: ../../../third_party/icu/source/common/ucln.h -FILE: ../../../third_party/icu/source/common/ucln_cmn.cpp -FILE: ../../../third_party/icu/source/common/ucln_cmn.h -FILE: ../../../third_party/icu/source/common/ucln_imp.h -FILE: ../../../third_party/icu/source/common/ucmndata.cpp -FILE: ../../../third_party/icu/source/common/ucmndata.h -FILE: ../../../third_party/icu/source/common/ucnv.cpp -FILE: ../../../third_party/icu/source/common/ucnv2022.cpp -FILE: ../../../third_party/icu/source/common/ucnv_bld.cpp -FILE: ../../../third_party/icu/source/common/ucnv_bld.h -FILE: ../../../third_party/icu/source/common/ucnv_cb.cpp -FILE: ../../../third_party/icu/source/common/ucnv_cnv.cpp -FILE: ../../../third_party/icu/source/common/ucnv_cnv.h -FILE: ../../../third_party/icu/source/common/ucnv_ct.cpp -FILE: ../../../third_party/icu/source/common/ucnv_err.cpp -FILE: ../../../third_party/icu/source/common/ucnv_ext.cpp -FILE: ../../../third_party/icu/source/common/ucnv_ext.h -FILE: ../../../third_party/icu/source/common/ucnv_imp.h -FILE: ../../../third_party/icu/source/common/ucnv_io.cpp -FILE: ../../../third_party/icu/source/common/ucnv_io.h -FILE: ../../../third_party/icu/source/common/ucnv_lmb.cpp -FILE: ../../../third_party/icu/source/common/ucnv_set.cpp -FILE: ../../../third_party/icu/source/common/ucnv_u16.cpp -FILE: ../../../third_party/icu/source/common/ucnv_u32.cpp -FILE: ../../../third_party/icu/source/common/ucnv_u7.cpp -FILE: ../../../third_party/icu/source/common/ucnv_u8.cpp -FILE: ../../../third_party/icu/source/common/ucnvbocu.cpp -FILE: ../../../third_party/icu/source/common/ucnvdisp.cpp -FILE: ../../../third_party/icu/source/common/ucnvhz.cpp -FILE: ../../../third_party/icu/source/common/ucnvisci.cpp -FILE: ../../../third_party/icu/source/common/ucnvlat1.cpp -FILE: ../../../third_party/icu/source/common/ucnvmbcs.cpp -FILE: ../../../third_party/icu/source/common/ucnvmbcs.h -FILE: ../../../third_party/icu/source/common/ucnvscsu.cpp -FILE: ../../../third_party/icu/source/common/ucnvsel.cpp -FILE: ../../../third_party/icu/source/common/ucol_data.h -FILE: ../../../third_party/icu/source/common/ucol_swp.cpp -FILE: ../../../third_party/icu/source/common/ucol_swp.h -FILE: ../../../third_party/icu/source/common/ucurr.cpp -FILE: ../../../third_party/icu/source/common/ucurrimp.h -FILE: ../../../third_party/icu/source/common/udata.cpp -FILE: ../../../third_party/icu/source/common/udatamem.cpp -FILE: ../../../third_party/icu/source/common/udatamem.h -FILE: ../../../third_party/icu/source/common/udataswp.cpp -FILE: ../../../third_party/icu/source/common/udataswp.h -FILE: ../../../third_party/icu/source/common/uelement.h -FILE: ../../../third_party/icu/source/common/uenum.cpp -FILE: ../../../third_party/icu/source/common/uenumimp.h -FILE: ../../../third_party/icu/source/common/uhash.cpp -FILE: ../../../third_party/icu/source/common/uhash.h -FILE: ../../../third_party/icu/source/common/uhash_us.cpp -FILE: ../../../third_party/icu/source/common/uidna.cpp -FILE: ../../../third_party/icu/source/common/uinit.cpp -FILE: ../../../third_party/icu/source/common/uinvchar.cpp -FILE: ../../../third_party/icu/source/common/uinvchar.h -FILE: ../../../third_party/icu/source/common/uiter.cpp -FILE: ../../../third_party/icu/source/common/ulist.cpp -FILE: ../../../third_party/icu/source/common/ulist.h -FILE: ../../../third_party/icu/source/common/ulistformatter.cpp -FILE: ../../../third_party/icu/source/common/uloc.cpp -FILE: ../../../third_party/icu/source/common/uloc_keytype.cpp -FILE: ../../../third_party/icu/source/common/uloc_tag.cpp -FILE: ../../../third_party/icu/source/common/ulocimp.h -FILE: ../../../third_party/icu/source/common/umapfile.cpp -FILE: ../../../third_party/icu/source/common/umapfile.h -FILE: ../../../third_party/icu/source/common/umath.cpp -FILE: ../../../third_party/icu/source/common/umutex.cpp -FILE: ../../../third_party/icu/source/common/umutex.h -FILE: ../../../third_party/icu/source/common/unames.cpp -FILE: ../../../third_party/icu/source/common/unicode/appendable.h -FILE: ../../../third_party/icu/source/common/unicode/brkiter.h -FILE: ../../../third_party/icu/source/common/unicode/bytestream.h -FILE: ../../../third_party/icu/source/common/unicode/bytestrie.h -FILE: ../../../third_party/icu/source/common/unicode/bytestriebuilder.h -FILE: ../../../third_party/icu/source/common/unicode/caniter.h -FILE: ../../../third_party/icu/source/common/unicode/casemap.h -FILE: ../../../third_party/icu/source/common/unicode/char16ptr.h -FILE: ../../../third_party/icu/source/common/unicode/chariter.h -FILE: ../../../third_party/icu/source/common/unicode/dbbi.h -FILE: ../../../third_party/icu/source/common/unicode/docmain.h -FILE: ../../../third_party/icu/source/common/unicode/dtintrv.h -FILE: ../../../third_party/icu/source/common/unicode/edits.h -FILE: ../../../third_party/icu/source/common/unicode/enumset.h -FILE: ../../../third_party/icu/source/common/unicode/errorcode.h -FILE: ../../../third_party/icu/source/common/unicode/filteredbrk.h -FILE: ../../../third_party/icu/source/common/unicode/icudataver.h -FILE: ../../../third_party/icu/source/common/unicode/icuplug.h -FILE: ../../../third_party/icu/source/common/unicode/idna.h -FILE: ../../../third_party/icu/source/common/unicode/listformatter.h -FILE: ../../../third_party/icu/source/common/unicode/localpointer.h -FILE: ../../../third_party/icu/source/common/unicode/locdspnm.h -FILE: ../../../third_party/icu/source/common/unicode/locid.h -FILE: ../../../third_party/icu/source/common/unicode/messagepattern.h -FILE: ../../../third_party/icu/source/common/unicode/normalizer2.h -FILE: ../../../third_party/icu/source/common/unicode/normlzr.h -FILE: ../../../third_party/icu/source/common/unicode/parseerr.h -FILE: ../../../third_party/icu/source/common/unicode/parsepos.h -FILE: ../../../third_party/icu/source/common/unicode/platform.h -FILE: ../../../third_party/icu/source/common/unicode/ptypes.h -FILE: ../../../third_party/icu/source/common/unicode/putil.h -FILE: ../../../third_party/icu/source/common/unicode/rbbi.h -FILE: ../../../third_party/icu/source/common/unicode/rep.h -FILE: ../../../third_party/icu/source/common/unicode/resbund.h -FILE: ../../../third_party/icu/source/common/unicode/schriter.h -FILE: ../../../third_party/icu/source/common/unicode/simpleformatter.h -FILE: ../../../third_party/icu/source/common/unicode/std_string.h -FILE: ../../../third_party/icu/source/common/unicode/strenum.h -FILE: ../../../third_party/icu/source/common/unicode/stringpiece.h -FILE: ../../../third_party/icu/source/common/unicode/stringtriebuilder.h -FILE: ../../../third_party/icu/source/common/unicode/symtable.h -FILE: ../../../third_party/icu/source/common/unicode/ubidi.h -FILE: ../../../third_party/icu/source/common/unicode/ubiditransform.h -FILE: ../../../third_party/icu/source/common/unicode/ubrk.h -FILE: ../../../third_party/icu/source/common/unicode/ucasemap.h -FILE: ../../../third_party/icu/source/common/unicode/ucat.h -FILE: ../../../third_party/icu/source/common/unicode/uchar.h -FILE: ../../../third_party/icu/source/common/unicode/ucharstrie.h -FILE: ../../../third_party/icu/source/common/unicode/ucharstriebuilder.h -FILE: ../../../third_party/icu/source/common/unicode/uchriter.h -FILE: ../../../third_party/icu/source/common/unicode/uclean.h -FILE: ../../../third_party/icu/source/common/unicode/ucnv.h -FILE: ../../../third_party/icu/source/common/unicode/ucnv_cb.h -FILE: ../../../third_party/icu/source/common/unicode/ucnv_err.h -FILE: ../../../third_party/icu/source/common/unicode/ucnvsel.h -FILE: ../../../third_party/icu/source/common/unicode/uconfig.h -FILE: ../../../third_party/icu/source/common/unicode/ucurr.h -FILE: ../../../third_party/icu/source/common/unicode/udata.h -FILE: ../../../third_party/icu/source/common/unicode/udisplaycontext.h -FILE: ../../../third_party/icu/source/common/unicode/uenum.h -FILE: ../../../third_party/icu/source/common/unicode/uidna.h -FILE: ../../../third_party/icu/source/common/unicode/uiter.h -FILE: ../../../third_party/icu/source/common/unicode/uldnames.h -FILE: ../../../third_party/icu/source/common/unicode/ulistformatter.h -FILE: ../../../third_party/icu/source/common/unicode/uloc.h -FILE: ../../../third_party/icu/source/common/unicode/umachine.h -FILE: ../../../third_party/icu/source/common/unicode/umisc.h -FILE: ../../../third_party/icu/source/common/unicode/unifilt.h -FILE: ../../../third_party/icu/source/common/unicode/unifunct.h -FILE: ../../../third_party/icu/source/common/unicode/unimatch.h -FILE: ../../../third_party/icu/source/common/unicode/uniset.h -FILE: ../../../third_party/icu/source/common/unicode/unistr.h -FILE: ../../../third_party/icu/source/common/unicode/unorm.h -FILE: ../../../third_party/icu/source/common/unicode/unorm2.h -FILE: ../../../third_party/icu/source/common/unicode/uobject.h -FILE: ../../../third_party/icu/source/common/unicode/urename.h -FILE: ../../../third_party/icu/source/common/unicode/urep.h -FILE: ../../../third_party/icu/source/common/unicode/ures.h -FILE: ../../../third_party/icu/source/common/unicode/uscript.h -FILE: ../../../third_party/icu/source/common/unicode/uset.h -FILE: ../../../third_party/icu/source/common/unicode/usetiter.h -FILE: ../../../third_party/icu/source/common/unicode/ushape.h -FILE: ../../../third_party/icu/source/common/unicode/usprep.h -FILE: ../../../third_party/icu/source/common/unicode/ustring.h -FILE: ../../../third_party/icu/source/common/unicode/ustringtrie.h -FILE: ../../../third_party/icu/source/common/unicode/utext.h -FILE: ../../../third_party/icu/source/common/unicode/utf.h -FILE: ../../../third_party/icu/source/common/unicode/utf16.h -FILE: ../../../third_party/icu/source/common/unicode/utf32.h -FILE: ../../../third_party/icu/source/common/unicode/utf8.h -FILE: ../../../third_party/icu/source/common/unicode/utf_old.h -FILE: ../../../third_party/icu/source/common/unicode/utrace.h -FILE: ../../../third_party/icu/source/common/unicode/utypes.h -FILE: ../../../third_party/icu/source/common/unicode/uvernum.h -FILE: ../../../third_party/icu/source/common/unicode/uversion.h -FILE: ../../../third_party/icu/source/common/unifiedcache.cpp -FILE: ../../../third_party/icu/source/common/unifiedcache.h -FILE: ../../../third_party/icu/source/common/unifilt.cpp -FILE: ../../../third_party/icu/source/common/unifunct.cpp -FILE: ../../../third_party/icu/source/common/uniset.cpp -FILE: ../../../third_party/icu/source/common/uniset_closure.cpp -FILE: ../../../third_party/icu/source/common/uniset_props.cpp -FILE: ../../../third_party/icu/source/common/unisetspan.cpp -FILE: ../../../third_party/icu/source/common/unisetspan.h -FILE: ../../../third_party/icu/source/common/unistr.cpp -FILE: ../../../third_party/icu/source/common/unistr_case.cpp -FILE: ../../../third_party/icu/source/common/unistr_case_locale.cpp -FILE: ../../../third_party/icu/source/common/unistr_cnv.cpp -FILE: ../../../third_party/icu/source/common/unistr_props.cpp -FILE: ../../../third_party/icu/source/common/unistr_titlecase_brkiter.cpp -FILE: ../../../third_party/icu/source/common/unistrappender.h -FILE: ../../../third_party/icu/source/common/unorm.cpp -FILE: ../../../third_party/icu/source/common/unormcmp.cpp -FILE: ../../../third_party/icu/source/common/unormimp.h -FILE: ../../../third_party/icu/source/common/uobject.cpp -FILE: ../../../third_party/icu/source/common/uposixdefs.h -FILE: ../../../third_party/icu/source/common/uprops.cpp -FILE: ../../../third_party/icu/source/common/uprops.h -FILE: ../../../third_party/icu/source/common/ures_cnv.cpp -FILE: ../../../third_party/icu/source/common/uresbund.cpp -FILE: ../../../third_party/icu/source/common/uresdata.cpp -FILE: ../../../third_party/icu/source/common/uresdata.h -FILE: ../../../third_party/icu/source/common/uresimp.h -FILE: ../../../third_party/icu/source/common/ureslocs.h -FILE: ../../../third_party/icu/source/common/usc_impl.cpp -FILE: ../../../third_party/icu/source/common/usc_impl.h -FILE: ../../../third_party/icu/source/common/uscript.cpp -FILE: ../../../third_party/icu/source/common/uscript_props.cpp -FILE: ../../../third_party/icu/source/common/uset.cpp -FILE: ../../../third_party/icu/source/common/uset_imp.h -FILE: ../../../third_party/icu/source/common/uset_props.cpp -FILE: ../../../third_party/icu/source/common/usetiter.cpp -FILE: ../../../third_party/icu/source/common/ushape.cpp -FILE: ../../../third_party/icu/source/common/usprep.cpp -FILE: ../../../third_party/icu/source/common/ustack.cpp -FILE: ../../../third_party/icu/source/common/ustr_cnv.cpp -FILE: ../../../third_party/icu/source/common/ustr_cnv.h -FILE: ../../../third_party/icu/source/common/ustr_imp.h -FILE: ../../../third_party/icu/source/common/ustr_titlecase_brkiter.cpp -FILE: ../../../third_party/icu/source/common/ustr_wcs.cpp -FILE: ../../../third_party/icu/source/common/ustrcase.cpp -FILE: ../../../third_party/icu/source/common/ustrcase_locale.cpp -FILE: ../../../third_party/icu/source/common/ustrenum.cpp -FILE: ../../../third_party/icu/source/common/ustrenum.h -FILE: ../../../third_party/icu/source/common/ustrfmt.cpp -FILE: ../../../third_party/icu/source/common/ustrfmt.h -FILE: ../../../third_party/icu/source/common/ustring.cpp -FILE: ../../../third_party/icu/source/common/ustrtrns.cpp -FILE: ../../../third_party/icu/source/common/utext.cpp -FILE: ../../../third_party/icu/source/common/utf_impl.cpp -FILE: ../../../third_party/icu/source/common/util.cpp -FILE: ../../../third_party/icu/source/common/util.h -FILE: ../../../third_party/icu/source/common/util_props.cpp -FILE: ../../../third_party/icu/source/common/utrace.cpp -FILE: ../../../third_party/icu/source/common/utracimp.h -FILE: ../../../third_party/icu/source/common/utrie.cpp -FILE: ../../../third_party/icu/source/common/utrie.h -FILE: ../../../third_party/icu/source/common/utrie2.cpp -FILE: ../../../third_party/icu/source/common/utrie2.h -FILE: ../../../third_party/icu/source/common/utrie2_builder.cpp -FILE: ../../../third_party/icu/source/common/utrie2_impl.h -FILE: ../../../third_party/icu/source/common/uts46.cpp -FILE: ../../../third_party/icu/source/common/utypeinfo.h -FILE: ../../../third_party/icu/source/common/utypes.cpp -FILE: ../../../third_party/icu/source/common/uvector.cpp -FILE: ../../../third_party/icu/source/common/uvector.h -FILE: ../../../third_party/icu/source/common/uvectr32.cpp -FILE: ../../../third_party/icu/source/common/uvectr32.h -FILE: ../../../third_party/icu/source/common/uvectr64.cpp -FILE: ../../../third_party/icu/source/common/uvectr64.h -FILE: ../../../third_party/icu/source/common/wintz.cpp -FILE: ../../../third_party/icu/source/common/wintz.h -FILE: ../../../third_party/icu/source/config/icu-config-bottom -FILE: ../../../third_party/icu/source/config/icu-config.1.in -FILE: ../../../third_party/icu/source/config/icu.pc.in -FILE: ../../../third_party/icu/source/config/make2sh.sed -FILE: ../../../third_party/icu/source/config/mh-aix-gcc -FILE: ../../../third_party/icu/source/config/mh-aix-va -FILE: ../../../third_party/icu/source/config/mh-alpha-linux-cc -FILE: ../../../third_party/icu/source/config/mh-alpha-linux-gcc -FILE: ../../../third_party/icu/source/config/mh-alpha-osf -FILE: ../../../third_party/icu/source/config/mh-beos -FILE: ../../../third_party/icu/source/config/mh-bsd-gcc -FILE: ../../../third_party/icu/source/config/mh-cygwin -FILE: ../../../third_party/icu/source/config/mh-cygwin-msvc -FILE: ../../../third_party/icu/source/config/mh-cygwin64 -FILE: ../../../third_party/icu/source/config/mh-darwin -FILE: ../../../third_party/icu/source/config/mh-haiku -FILE: ../../../third_party/icu/source/config/mh-hpux-acc -FILE: ../../../third_party/icu/source/config/mh-hpux-gcc -FILE: ../../../third_party/icu/source/config/mh-irix -FILE: ../../../third_party/icu/source/config/mh-linux -FILE: ../../../third_party/icu/source/config/mh-linux-va -FILE: ../../../third_party/icu/source/config/mh-mingw -FILE: ../../../third_party/icu/source/config/mh-mingw64 -FILE: ../../../third_party/icu/source/config/mh-mpras -FILE: ../../../third_party/icu/source/config/mh-msys-msvc -FILE: ../../../third_party/icu/source/config/mh-os390 -FILE: ../../../third_party/icu/source/config/mh-os400 -FILE: ../../../third_party/icu/source/config/mh-qnx -FILE: ../../../third_party/icu/source/config/mh-solaris -FILE: ../../../third_party/icu/source/config/mh-solaris-gcc -FILE: ../../../third_party/icu/source/config/mh-unknown -FILE: ../../../third_party/icu/source/config/windows-update.sed.in -FILE: ../../../third_party/icu/source/data/build.xml -FILE: ../../../third_party/icu/source/data/icu-coll-deprecates.xml -FILE: ../../../third_party/icu/source/data/icu-config.xml -FILE: ../../../third_party/icu/source/data/icu-locale-deprecates.xml -FILE: ../../../third_party/icu/source/data/icu-rbnf-deprecates.xml -FILE: ../../../third_party/icu/source/data/icupkg.inc.in -FILE: ../../../third_party/icu/source/data/makedata.mak -FILE: ../../../third_party/icu/source/data/mappings/cns-11643-1992.ucm -FILE: ../../../third_party/icu/source/data/mappings/ebcdic-xml-us.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-jp-2007.ucm -FILE: ../../../third_party/icu/source/data/mappings/euc-tw-2014.ucm -FILE: ../../../third_party/icu/source/data/mappings/gsm-03.38-2009.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1006_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1025_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1026_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1047_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1051_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1089_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1097_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1098_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1112_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1122_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1123_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1124_P100-1996.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1125_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1129_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1130_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1131_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1132_P100-1998.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1133_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1137_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1140_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1141_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1142_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1143_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1144_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1145_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1146_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1147_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1148_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1149_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1153_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1154_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1155_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1156_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1157_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1158_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1160_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1162_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1164_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1168_P100-2002.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1250_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1251_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1252_P100-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1253_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1254_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1255_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1256_P110-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1257_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1258_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-12712_P100-1998.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1276_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1363_P110-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1363_P11B-1998.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1364_P110-2007.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1371_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1373_P100-2002.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1375_P100-2008.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1383_P110-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1386_P100-2001.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1388_P103-2001.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1390_P110-2003.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-1399_P110-2003.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-16684_P110-2003.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-16804_X110-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-273_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-277_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-278_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-280_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-284_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-285_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-290_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-297_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-33722_P120-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-33722_P12A_P12A-2004_U2.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-33722_P12A_P12A-2009_U2.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-37_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-420_X120-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-424_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-437_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-4517_P100-2005.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-4899_P100-1998.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-4909_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-4971_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-500_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-5012_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-5123_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-5346_P100-1998.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-5347_P100-1998.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-5348_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-5349_P100-1998.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-5350_P100-1998.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-5351_P100-1998.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-5352_P100-1998.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-5353_P100-1998.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-5354_P100-1998.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-5471_P100-2006.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-5478_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-720_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-737_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-775_P100-1996.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-803_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-813_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-838_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-8482_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-850_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-851_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-852_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-855_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-856_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-857_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-858_P100-1997.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-860_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-861_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-862_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-863_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-864_X110-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-865_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-866_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-867_P100-1998.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-868_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-869_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-870_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-871_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-874_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-875_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-878_P100-1996.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-9005_X110-2007.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-901_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-902_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-9067_X100-2005.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-912_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-913_P100-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-914_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-915_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-916_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-918_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-920_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-921_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-922_P100-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-923_P100-1998.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-930_P120-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-933_P110-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-935_P110-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-937_P110-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-939_P120-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-942_P12A-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-943_P130-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-943_P15A-2003.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-9447_P100-2002.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-9448_X100-2005.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-9449_P100-2002.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-949_P110-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-949_P11A-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-950_P110-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-954_P101-2007.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-964_P110-1999.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-970_P110_P110-2006_U2.ucm -FILE: ../../../third_party/icu/source/data/mappings/ibm-971_P100-1995.ucm -FILE: ../../../third_party/icu/source/data/mappings/icu-internal-25546.ucm -FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d1.ucm -FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d2.ucm -FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d3.ucm -FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d4.ucm -FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d5.ucm -FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d6.ucm -FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d7.ucm -FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-s1.ucm -FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-s2.ucm -FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-s3.ucm -FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-t.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859_10-1998.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859_11-2001.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-8859_14-1998.ucm -FILE: ../../../third_party/icu/source/data/mappings/iso-ir-165.ucm -FILE: ../../../third_party/icu/source/data/mappings/jisx-212.ucm -FILE: ../../../third_party/icu/source/data/mappings/lmb-excp.ucm -FILE: ../../../third_party/icu/source/data/mappings/macos-0_2-10.2.ucm -FILE: ../../../third_party/icu/source/data/mappings/macos-29-10.2.ucm -FILE: ../../../third_party/icu/source/data/mappings/macos-35-10.2.ucm -FILE: ../../../third_party/icu/source/data/mappings/macos-6_2-10.4.ucm -FILE: ../../../third_party/icu/source/data/mappings/macos-7_3-10.2.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-874-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-949-2000.ucm -FILE: ../../../third_party/icu/source/data/mappings/windows-950-2000.ucm -FILE: ../../../third_party/icu/source/data/misc/icudata.rc -FILE: ../../../third_party/icu/source/extra/scrptrun/scrptrun.cpp -FILE: ../../../third_party/icu/source/extra/scrptrun/scrptrun.h -FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.cpp -FILE: ../../../third_party/icu/source/extra/uconv/makedata.mak -FILE: ../../../third_party/icu/source/extra/uconv/pkgdata.inc.in -FILE: ../../../third_party/icu/source/extra/uconv/uconv.1.in -FILE: ../../../third_party/icu/source/extra/uconv/uconv.cpp -FILE: ../../../third_party/icu/source/extra/uconv/unicode/uwmsg.h -FILE: ../../../third_party/icu/source/extra/uconv/uwmsg.c -FILE: ../../../third_party/icu/source/i18n/affixpatternparser.cpp -FILE: ../../../third_party/icu/source/i18n/affixpatternparser.h -FILE: ../../../third_party/icu/source/i18n/alphaindex.cpp -FILE: ../../../third_party/icu/source/i18n/anytrans.cpp -FILE: ../../../third_party/icu/source/i18n/anytrans.h -FILE: ../../../third_party/icu/source/i18n/astro.cpp -FILE: ../../../third_party/icu/source/i18n/astro.h -FILE: ../../../third_party/icu/source/i18n/basictz.cpp -FILE: ../../../third_party/icu/source/i18n/bocsu.cpp -FILE: ../../../third_party/icu/source/i18n/bocsu.h -FILE: ../../../third_party/icu/source/i18n/brktrans.cpp -FILE: ../../../third_party/icu/source/i18n/brktrans.h -FILE: ../../../third_party/icu/source/i18n/buddhcal.cpp -FILE: ../../../third_party/icu/source/i18n/buddhcal.h -FILE: ../../../third_party/icu/source/i18n/calendar.cpp -FILE: ../../../third_party/icu/source/i18n/casetrn.cpp -FILE: ../../../third_party/icu/source/i18n/casetrn.h -FILE: ../../../third_party/icu/source/i18n/cecal.cpp -FILE: ../../../third_party/icu/source/i18n/cecal.h -FILE: ../../../third_party/icu/source/i18n/chnsecal.cpp -FILE: ../../../third_party/icu/source/i18n/chnsecal.h -FILE: ../../../third_party/icu/source/i18n/choicfmt.cpp -FILE: ../../../third_party/icu/source/i18n/coleitr.cpp -FILE: ../../../third_party/icu/source/i18n/coll.cpp -FILE: ../../../third_party/icu/source/i18n/collation.cpp -FILE: ../../../third_party/icu/source/i18n/collation.h -FILE: ../../../third_party/icu/source/i18n/collationbuilder.cpp -FILE: ../../../third_party/icu/source/i18n/collationbuilder.h -FILE: ../../../third_party/icu/source/i18n/collationcompare.cpp -FILE: ../../../third_party/icu/source/i18n/collationcompare.h -FILE: ../../../third_party/icu/source/i18n/collationdata.cpp -FILE: ../../../third_party/icu/source/i18n/collationdata.h -FILE: ../../../third_party/icu/source/i18n/collationdatabuilder.cpp -FILE: ../../../third_party/icu/source/i18n/collationdatabuilder.h -FILE: ../../../third_party/icu/source/i18n/collationdatareader.cpp -FILE: ../../../third_party/icu/source/i18n/collationdatareader.h -FILE: ../../../third_party/icu/source/i18n/collationdatawriter.cpp -FILE: ../../../third_party/icu/source/i18n/collationdatawriter.h -FILE: ../../../third_party/icu/source/i18n/collationfastlatin.cpp -FILE: ../../../third_party/icu/source/i18n/collationfastlatin.h -FILE: ../../../third_party/icu/source/i18n/collationfastlatinbuilder.cpp -FILE: ../../../third_party/icu/source/i18n/collationfastlatinbuilder.h -FILE: ../../../third_party/icu/source/i18n/collationfcd.cpp -FILE: ../../../third_party/icu/source/i18n/collationfcd.h -FILE: ../../../third_party/icu/source/i18n/collationiterator.cpp -FILE: ../../../third_party/icu/source/i18n/collationiterator.h -FILE: ../../../third_party/icu/source/i18n/collationkeys.cpp -FILE: ../../../third_party/icu/source/i18n/collationkeys.h -FILE: ../../../third_party/icu/source/i18n/collationroot.cpp -FILE: ../../../third_party/icu/source/i18n/collationroot.h -FILE: ../../../third_party/icu/source/i18n/collationrootelements.cpp -FILE: ../../../third_party/icu/source/i18n/collationrootelements.h -FILE: ../../../third_party/icu/source/i18n/collationruleparser.cpp -FILE: ../../../third_party/icu/source/i18n/collationruleparser.h -FILE: ../../../third_party/icu/source/i18n/collationsets.cpp -FILE: ../../../third_party/icu/source/i18n/collationsets.h -FILE: ../../../third_party/icu/source/i18n/collationsettings.cpp -FILE: ../../../third_party/icu/source/i18n/collationsettings.h -FILE: ../../../third_party/icu/source/i18n/collationtailoring.cpp -FILE: ../../../third_party/icu/source/i18n/collationtailoring.h -FILE: ../../../third_party/icu/source/i18n/collationweights.cpp -FILE: ../../../third_party/icu/source/i18n/collationweights.h -FILE: ../../../third_party/icu/source/i18n/collunsafe.h -FILE: ../../../third_party/icu/source/i18n/compactdecimalformat.cpp -FILE: ../../../third_party/icu/source/i18n/coptccal.cpp -FILE: ../../../third_party/icu/source/i18n/coptccal.h -FILE: ../../../third_party/icu/source/i18n/cpdtrans.cpp -FILE: ../../../third_party/icu/source/i18n/cpdtrans.h -FILE: ../../../third_party/icu/source/i18n/csdetect.cpp -FILE: ../../../third_party/icu/source/i18n/csdetect.h -FILE: ../../../third_party/icu/source/i18n/csmatch.cpp -FILE: ../../../third_party/icu/source/i18n/csmatch.h -FILE: ../../../third_party/icu/source/i18n/csr2022.cpp -FILE: ../../../third_party/icu/source/i18n/csr2022.h -FILE: ../../../third_party/icu/source/i18n/csrecog.cpp -FILE: ../../../third_party/icu/source/i18n/csrecog.h -FILE: ../../../third_party/icu/source/i18n/csrmbcs.cpp -FILE: ../../../third_party/icu/source/i18n/csrmbcs.h -FILE: ../../../third_party/icu/source/i18n/csrsbcs.cpp -FILE: ../../../third_party/icu/source/i18n/csrsbcs.h -FILE: ../../../third_party/icu/source/i18n/csrucode.cpp -FILE: ../../../third_party/icu/source/i18n/csrucode.h -FILE: ../../../third_party/icu/source/i18n/csrutf8.cpp -FILE: ../../../third_party/icu/source/i18n/csrutf8.h -FILE: ../../../third_party/icu/source/i18n/curramt.cpp -FILE: ../../../third_party/icu/source/i18n/currfmt.cpp -FILE: ../../../third_party/icu/source/i18n/currfmt.h -FILE: ../../../third_party/icu/source/i18n/currpinf.cpp -FILE: ../../../third_party/icu/source/i18n/currunit.cpp -FILE: ../../../third_party/icu/source/i18n/dangical.cpp -FILE: ../../../third_party/icu/source/i18n/dangical.h -FILE: ../../../third_party/icu/source/i18n/datefmt.cpp -FILE: ../../../third_party/icu/source/i18n/dayperiodrules.cpp -FILE: ../../../third_party/icu/source/i18n/dayperiodrules.h -FILE: ../../../third_party/icu/source/i18n/dcfmtimp.h -FILE: ../../../third_party/icu/source/i18n/dcfmtsym.cpp -FILE: ../../../third_party/icu/source/i18n/decContext.cpp -FILE: ../../../third_party/icu/source/i18n/decContext.h -FILE: ../../../third_party/icu/source/i18n/decNumber.cpp -FILE: ../../../third_party/icu/source/i18n/decNumber.h -FILE: ../../../third_party/icu/source/i18n/decNumberLocal.h -FILE: ../../../third_party/icu/source/i18n/decfmtst.cpp -FILE: ../../../third_party/icu/source/i18n/decfmtst.h -FILE: ../../../third_party/icu/source/i18n/decimalformatpattern.cpp -FILE: ../../../third_party/icu/source/i18n/decimalformatpattern.h -FILE: ../../../third_party/icu/source/i18n/decimalformatpatternimpl.h -FILE: ../../../third_party/icu/source/i18n/decimfmt.cpp -FILE: ../../../third_party/icu/source/i18n/decimfmtimpl.cpp -FILE: ../../../third_party/icu/source/i18n/decimfmtimpl.h -FILE: ../../../third_party/icu/source/i18n/digitaffix.cpp -FILE: ../../../third_party/icu/source/i18n/digitaffix.h -FILE: ../../../third_party/icu/source/i18n/digitaffixesandpadding.cpp -FILE: ../../../third_party/icu/source/i18n/digitaffixesandpadding.h -FILE: ../../../third_party/icu/source/i18n/digitformatter.cpp -FILE: ../../../third_party/icu/source/i18n/digitformatter.h -FILE: ../../../third_party/icu/source/i18n/digitgrouping.cpp -FILE: ../../../third_party/icu/source/i18n/digitgrouping.h -FILE: ../../../third_party/icu/source/i18n/digitinterval.cpp -FILE: ../../../third_party/icu/source/i18n/digitinterval.h -FILE: ../../../third_party/icu/source/i18n/digitlst.cpp -FILE: ../../../third_party/icu/source/i18n/digitlst.h -FILE: ../../../third_party/icu/source/i18n/dt_impl.h -FILE: ../../../third_party/icu/source/i18n/dtfmtsym.cpp -FILE: ../../../third_party/icu/source/i18n/dtitv_impl.h -FILE: ../../../third_party/icu/source/i18n/dtitvfmt.cpp -FILE: ../../../third_party/icu/source/i18n/dtitvinf.cpp -FILE: ../../../third_party/icu/source/i18n/dtptngen.cpp -FILE: ../../../third_party/icu/source/i18n/dtptngen_impl.h -FILE: ../../../third_party/icu/source/i18n/dtrule.cpp -FILE: ../../../third_party/icu/source/i18n/esctrn.cpp -FILE: ../../../third_party/icu/source/i18n/esctrn.h -FILE: ../../../third_party/icu/source/i18n/ethpccal.cpp -FILE: ../../../third_party/icu/source/i18n/ethpccal.h -FILE: ../../../third_party/icu/source/i18n/fmtable.cpp -FILE: ../../../third_party/icu/source/i18n/fmtable_cnv.cpp -FILE: ../../../third_party/icu/source/i18n/fmtableimp.h -FILE: ../../../third_party/icu/source/i18n/format.cpp -FILE: ../../../third_party/icu/source/i18n/fphdlimp.cpp -FILE: ../../../third_party/icu/source/i18n/fphdlimp.h -FILE: ../../../third_party/icu/source/i18n/fpositer.cpp -FILE: ../../../third_party/icu/source/i18n/funcrepl.cpp -FILE: ../../../third_party/icu/source/i18n/funcrepl.h -FILE: ../../../third_party/icu/source/i18n/gender.cpp -FILE: ../../../third_party/icu/source/i18n/gregocal.cpp -FILE: ../../../third_party/icu/source/i18n/gregoimp.cpp -FILE: ../../../third_party/icu/source/i18n/gregoimp.h -FILE: ../../../third_party/icu/source/i18n/hebrwcal.cpp -FILE: ../../../third_party/icu/source/i18n/hebrwcal.h -FILE: ../../../third_party/icu/source/i18n/i18n.rc -FILE: ../../../third_party/icu/source/i18n/indiancal.cpp -FILE: ../../../third_party/icu/source/i18n/indiancal.h -FILE: ../../../third_party/icu/source/i18n/inputext.cpp -FILE: ../../../third_party/icu/source/i18n/inputext.h -FILE: ../../../third_party/icu/source/i18n/islamcal.cpp -FILE: ../../../third_party/icu/source/i18n/islamcal.h -FILE: ../../../third_party/icu/source/i18n/japancal.cpp -FILE: ../../../third_party/icu/source/i18n/japancal.h -FILE: ../../../third_party/icu/source/i18n/measfmt.cpp -FILE: ../../../third_party/icu/source/i18n/measunit.cpp -FILE: ../../../third_party/icu/source/i18n/measure.cpp -FILE: ../../../third_party/icu/source/i18n/msgfmt.cpp -FILE: ../../../third_party/icu/source/i18n/msgfmt_impl.h -FILE: ../../../third_party/icu/source/i18n/name2uni.cpp -FILE: ../../../third_party/icu/source/i18n/name2uni.h -FILE: ../../../third_party/icu/source/i18n/nfrlist.h -FILE: ../../../third_party/icu/source/i18n/nfrs.cpp -FILE: ../../../third_party/icu/source/i18n/nfrs.h -FILE: ../../../third_party/icu/source/i18n/nfrule.cpp -FILE: ../../../third_party/icu/source/i18n/nfrule.h -FILE: ../../../third_party/icu/source/i18n/nfsubs.cpp -FILE: ../../../third_party/icu/source/i18n/nfsubs.h -FILE: ../../../third_party/icu/source/i18n/nortrans.cpp -FILE: ../../../third_party/icu/source/i18n/nortrans.h -FILE: ../../../third_party/icu/source/i18n/nultrans.cpp -FILE: ../../../third_party/icu/source/i18n/nultrans.h -FILE: ../../../third_party/icu/source/i18n/numfmt.cpp -FILE: ../../../third_party/icu/source/i18n/numsys.cpp -FILE: ../../../third_party/icu/source/i18n/numsys_impl.h -FILE: ../../../third_party/icu/source/i18n/olsontz.cpp -FILE: ../../../third_party/icu/source/i18n/olsontz.h -FILE: ../../../third_party/icu/source/i18n/persncal.cpp -FILE: ../../../third_party/icu/source/i18n/persncal.h -FILE: ../../../third_party/icu/source/i18n/pluralaffix.cpp -FILE: ../../../third_party/icu/source/i18n/pluralaffix.h -FILE: ../../../third_party/icu/source/i18n/plurfmt.cpp -FILE: ../../../third_party/icu/source/i18n/plurrule.cpp -FILE: ../../../third_party/icu/source/i18n/plurrule_impl.h -FILE: ../../../third_party/icu/source/i18n/precision.cpp -FILE: ../../../third_party/icu/source/i18n/precision.h -FILE: ../../../third_party/icu/source/i18n/quant.cpp -FILE: ../../../third_party/icu/source/i18n/quant.h -FILE: ../../../third_party/icu/source/i18n/quantityformatter.cpp -FILE: ../../../third_party/icu/source/i18n/quantityformatter.h -FILE: ../../../third_party/icu/source/i18n/rbnf.cpp -FILE: ../../../third_party/icu/source/i18n/rbt.cpp -FILE: ../../../third_party/icu/source/i18n/rbt.h -FILE: ../../../third_party/icu/source/i18n/rbt_data.cpp -FILE: ../../../third_party/icu/source/i18n/rbt_data.h -FILE: ../../../third_party/icu/source/i18n/rbt_pars.cpp -FILE: ../../../third_party/icu/source/i18n/rbt_pars.h -FILE: ../../../third_party/icu/source/i18n/rbt_rule.cpp -FILE: ../../../third_party/icu/source/i18n/rbt_rule.h -FILE: ../../../third_party/icu/source/i18n/rbt_set.cpp -FILE: ../../../third_party/icu/source/i18n/rbt_set.h -FILE: ../../../third_party/icu/source/i18n/rbtz.cpp -FILE: ../../../third_party/icu/source/i18n/regexcmp.cpp -FILE: ../../../third_party/icu/source/i18n/regexcmp.h -FILE: ../../../third_party/icu/source/i18n/regexcst.h -FILE: ../../../third_party/icu/source/i18n/regeximp.cpp -FILE: ../../../third_party/icu/source/i18n/regeximp.h -FILE: ../../../third_party/icu/source/i18n/regexst.cpp -FILE: ../../../third_party/icu/source/i18n/regexst.h -FILE: ../../../third_party/icu/source/i18n/regextxt.cpp -FILE: ../../../third_party/icu/source/i18n/regextxt.h -FILE: ../../../third_party/icu/source/i18n/region.cpp -FILE: ../../../third_party/icu/source/i18n/region_impl.h -FILE: ../../../third_party/icu/source/i18n/reldatefmt.cpp -FILE: ../../../third_party/icu/source/i18n/reldtfmt.cpp -FILE: ../../../third_party/icu/source/i18n/reldtfmt.h -FILE: ../../../third_party/icu/source/i18n/rematch.cpp -FILE: ../../../third_party/icu/source/i18n/remtrans.cpp -FILE: ../../../third_party/icu/source/i18n/remtrans.h -FILE: ../../../third_party/icu/source/i18n/repattrn.cpp -FILE: ../../../third_party/icu/source/i18n/rulebasedcollator.cpp -FILE: ../../../third_party/icu/source/i18n/scientificnumberformatter.cpp -FILE: ../../../third_party/icu/source/i18n/scriptset.cpp -FILE: ../../../third_party/icu/source/i18n/scriptset.h -FILE: ../../../third_party/icu/source/i18n/search.cpp -FILE: ../../../third_party/icu/source/i18n/selfmt.cpp -FILE: ../../../third_party/icu/source/i18n/selfmtimpl.h -FILE: ../../../third_party/icu/source/i18n/sharedbreakiterator.cpp -FILE: ../../../third_party/icu/source/i18n/sharedbreakiterator.h -FILE: ../../../third_party/icu/source/i18n/sharedcalendar.h -FILE: ../../../third_party/icu/source/i18n/shareddateformatsymbols.h -FILE: ../../../third_party/icu/source/i18n/sharednumberformat.h -FILE: ../../../third_party/icu/source/i18n/sharedpluralrules.h -FILE: ../../../third_party/icu/source/i18n/significantdigitinterval.h -FILE: ../../../third_party/icu/source/i18n/simpletz.cpp -FILE: ../../../third_party/icu/source/i18n/smallintformatter.cpp -FILE: ../../../third_party/icu/source/i18n/smallintformatter.h -FILE: ../../../third_party/icu/source/i18n/smpdtfmt.cpp -FILE: ../../../third_party/icu/source/i18n/smpdtfst.cpp -FILE: ../../../third_party/icu/source/i18n/smpdtfst.h -FILE: ../../../third_party/icu/source/i18n/sortkey.cpp -FILE: ../../../third_party/icu/source/i18n/standardplural.cpp -FILE: ../../../third_party/icu/source/i18n/standardplural.h -FILE: ../../../third_party/icu/source/i18n/strmatch.cpp -FILE: ../../../third_party/icu/source/i18n/strmatch.h -FILE: ../../../third_party/icu/source/i18n/strrepl.cpp -FILE: ../../../third_party/icu/source/i18n/strrepl.h -FILE: ../../../third_party/icu/source/i18n/stsearch.cpp -FILE: ../../../third_party/icu/source/i18n/taiwncal.cpp -FILE: ../../../third_party/icu/source/i18n/taiwncal.h -FILE: ../../../third_party/icu/source/i18n/timezone.cpp -FILE: ../../../third_party/icu/source/i18n/titletrn.cpp -FILE: ../../../third_party/icu/source/i18n/titletrn.h -FILE: ../../../third_party/icu/source/i18n/tmunit.cpp -FILE: ../../../third_party/icu/source/i18n/tmutamt.cpp -FILE: ../../../third_party/icu/source/i18n/tmutfmt.cpp -FILE: ../../../third_party/icu/source/i18n/tolowtrn.cpp -FILE: ../../../third_party/icu/source/i18n/tolowtrn.h -FILE: ../../../third_party/icu/source/i18n/toupptrn.cpp -FILE: ../../../third_party/icu/source/i18n/toupptrn.h -FILE: ../../../third_party/icu/source/i18n/translit.cpp -FILE: ../../../third_party/icu/source/i18n/transreg.cpp -FILE: ../../../third_party/icu/source/i18n/transreg.h -FILE: ../../../third_party/icu/source/i18n/tridpars.cpp -FILE: ../../../third_party/icu/source/i18n/tridpars.h -FILE: ../../../third_party/icu/source/i18n/tzfmt.cpp -FILE: ../../../third_party/icu/source/i18n/tzgnames.cpp -FILE: ../../../third_party/icu/source/i18n/tzgnames.h -FILE: ../../../third_party/icu/source/i18n/tznames.cpp -FILE: ../../../third_party/icu/source/i18n/tznames_impl.cpp -FILE: ../../../third_party/icu/source/i18n/tznames_impl.h -FILE: ../../../third_party/icu/source/i18n/tzrule.cpp -FILE: ../../../third_party/icu/source/i18n/tztrans.cpp -FILE: ../../../third_party/icu/source/i18n/ucal.cpp -FILE: ../../../third_party/icu/source/i18n/ucln_in.cpp -FILE: ../../../third_party/icu/source/i18n/ucln_in.h -FILE: ../../../third_party/icu/source/i18n/ucol.cpp -FILE: ../../../third_party/icu/source/i18n/ucol_imp.h -FILE: ../../../third_party/icu/source/i18n/ucol_res.cpp -FILE: ../../../third_party/icu/source/i18n/ucol_sit.cpp -FILE: ../../../third_party/icu/source/i18n/ucoleitr.cpp -FILE: ../../../third_party/icu/source/i18n/ucsdet.cpp -FILE: ../../../third_party/icu/source/i18n/udat.cpp -FILE: ../../../third_party/icu/source/i18n/udateintervalformat.cpp -FILE: ../../../third_party/icu/source/i18n/udatpg.cpp -FILE: ../../../third_party/icu/source/i18n/ufieldpositer.cpp -FILE: ../../../third_party/icu/source/i18n/uitercollationiterator.cpp -FILE: ../../../third_party/icu/source/i18n/uitercollationiterator.h -FILE: ../../../third_party/icu/source/i18n/ulocdata.cpp -FILE: ../../../third_party/icu/source/i18n/umsg.cpp -FILE: ../../../third_party/icu/source/i18n/umsg_imp.h -FILE: ../../../third_party/icu/source/i18n/unesctrn.cpp -FILE: ../../../third_party/icu/source/i18n/unesctrn.h -FILE: ../../../third_party/icu/source/i18n/uni2name.cpp -FILE: ../../../third_party/icu/source/i18n/uni2name.h -FILE: ../../../third_party/icu/source/i18n/unicode/alphaindex.h -FILE: ../../../third_party/icu/source/i18n/unicode/basictz.h -FILE: ../../../third_party/icu/source/i18n/unicode/calendar.h -FILE: ../../../third_party/icu/source/i18n/unicode/choicfmt.h -FILE: ../../../third_party/icu/source/i18n/unicode/coleitr.h -FILE: ../../../third_party/icu/source/i18n/unicode/coll.h -FILE: ../../../third_party/icu/source/i18n/unicode/compactdecimalformat.h -FILE: ../../../third_party/icu/source/i18n/unicode/curramt.h -FILE: ../../../third_party/icu/source/i18n/unicode/currpinf.h -FILE: ../../../third_party/icu/source/i18n/unicode/currunit.h -FILE: ../../../third_party/icu/source/i18n/unicode/datefmt.h -FILE: ../../../third_party/icu/source/i18n/unicode/dcfmtsym.h -FILE: ../../../third_party/icu/source/i18n/unicode/decimfmt.h -FILE: ../../../third_party/icu/source/i18n/unicode/dtfmtsym.h -FILE: ../../../third_party/icu/source/i18n/unicode/dtitvfmt.h -FILE: ../../../third_party/icu/source/i18n/unicode/dtitvinf.h -FILE: ../../../third_party/icu/source/i18n/unicode/dtptngen.h -FILE: ../../../third_party/icu/source/i18n/unicode/dtrule.h -FILE: ../../../third_party/icu/source/i18n/unicode/fieldpos.h -FILE: ../../../third_party/icu/source/i18n/unicode/fmtable.h -FILE: ../../../third_party/icu/source/i18n/unicode/format.h -FILE: ../../../third_party/icu/source/i18n/unicode/fpositer.h -FILE: ../../../third_party/icu/source/i18n/unicode/gender.h -FILE: ../../../third_party/icu/source/i18n/unicode/gregocal.h -FILE: ../../../third_party/icu/source/i18n/unicode/measfmt.h -FILE: ../../../third_party/icu/source/i18n/unicode/measunit.h -FILE: ../../../third_party/icu/source/i18n/unicode/measure.h -FILE: ../../../third_party/icu/source/i18n/unicode/msgfmt.h -FILE: ../../../third_party/icu/source/i18n/unicode/numfmt.h -FILE: ../../../third_party/icu/source/i18n/unicode/numsys.h -FILE: ../../../third_party/icu/source/i18n/unicode/plurfmt.h -FILE: ../../../third_party/icu/source/i18n/unicode/plurrule.h -FILE: ../../../third_party/icu/source/i18n/unicode/rbnf.h -FILE: ../../../third_party/icu/source/i18n/unicode/rbtz.h -FILE: ../../../third_party/icu/source/i18n/unicode/regex.h -FILE: ../../../third_party/icu/source/i18n/unicode/region.h -FILE: ../../../third_party/icu/source/i18n/unicode/reldatefmt.h -FILE: ../../../third_party/icu/source/i18n/unicode/scientificnumberformatter.h -FILE: ../../../third_party/icu/source/i18n/unicode/search.h -FILE: ../../../third_party/icu/source/i18n/unicode/selfmt.h -FILE: ../../../third_party/icu/source/i18n/unicode/simpletz.h -FILE: ../../../third_party/icu/source/i18n/unicode/smpdtfmt.h -FILE: ../../../third_party/icu/source/i18n/unicode/sortkey.h -FILE: ../../../third_party/icu/source/i18n/unicode/stsearch.h -FILE: ../../../third_party/icu/source/i18n/unicode/tblcoll.h -FILE: ../../../third_party/icu/source/i18n/unicode/timezone.h -FILE: ../../../third_party/icu/source/i18n/unicode/tmunit.h -FILE: ../../../third_party/icu/source/i18n/unicode/tmutamt.h -FILE: ../../../third_party/icu/source/i18n/unicode/tmutfmt.h -FILE: ../../../third_party/icu/source/i18n/unicode/translit.h -FILE: ../../../third_party/icu/source/i18n/unicode/tzfmt.h -FILE: ../../../third_party/icu/source/i18n/unicode/tznames.h -FILE: ../../../third_party/icu/source/i18n/unicode/tzrule.h -FILE: ../../../third_party/icu/source/i18n/unicode/tztrans.h -FILE: ../../../third_party/icu/source/i18n/unicode/ucal.h -FILE: ../../../third_party/icu/source/i18n/unicode/ucol.h -FILE: ../../../third_party/icu/source/i18n/unicode/ucoleitr.h -FILE: ../../../third_party/icu/source/i18n/unicode/ucsdet.h -FILE: ../../../third_party/icu/source/i18n/unicode/udat.h -FILE: ../../../third_party/icu/source/i18n/unicode/udateintervalformat.h -FILE: ../../../third_party/icu/source/i18n/unicode/udatpg.h -FILE: ../../../third_party/icu/source/i18n/unicode/ufieldpositer.h -FILE: ../../../third_party/icu/source/i18n/unicode/uformattable.h -FILE: ../../../third_party/icu/source/i18n/unicode/ugender.h -FILE: ../../../third_party/icu/source/i18n/unicode/ulocdata.h -FILE: ../../../third_party/icu/source/i18n/unicode/umsg.h -FILE: ../../../third_party/icu/source/i18n/unicode/unirepl.h -FILE: ../../../third_party/icu/source/i18n/unicode/unum.h -FILE: ../../../third_party/icu/source/i18n/unicode/unumsys.h -FILE: ../../../third_party/icu/source/i18n/unicode/upluralrules.h -FILE: ../../../third_party/icu/source/i18n/unicode/uregex.h -FILE: ../../../third_party/icu/source/i18n/unicode/uregion.h -FILE: ../../../third_party/icu/source/i18n/unicode/ureldatefmt.h -FILE: ../../../third_party/icu/source/i18n/unicode/usearch.h -FILE: ../../../third_party/icu/source/i18n/unicode/uspoof.h -FILE: ../../../third_party/icu/source/i18n/unicode/utmscale.h -FILE: ../../../third_party/icu/source/i18n/unicode/utrans.h -FILE: ../../../third_party/icu/source/i18n/unicode/vtzone.h -FILE: ../../../third_party/icu/source/i18n/unum.cpp -FILE: ../../../third_party/icu/source/i18n/unumsys.cpp -FILE: ../../../third_party/icu/source/i18n/upluralrules.cpp -FILE: ../../../third_party/icu/source/i18n/uregex.cpp -FILE: ../../../third_party/icu/source/i18n/uregexc.cpp -FILE: ../../../third_party/icu/source/i18n/uregion.cpp -FILE: ../../../third_party/icu/source/i18n/usearch.cpp -FILE: ../../../third_party/icu/source/i18n/uspoof.cpp -FILE: ../../../third_party/icu/source/i18n/uspoof_build.cpp -FILE: ../../../third_party/icu/source/i18n/uspoof_conf.cpp -FILE: ../../../third_party/icu/source/i18n/uspoof_conf.h -FILE: ../../../third_party/icu/source/i18n/uspoof_impl.cpp -FILE: ../../../third_party/icu/source/i18n/uspoof_impl.h -FILE: ../../../third_party/icu/source/i18n/usrchimp.h -FILE: ../../../third_party/icu/source/i18n/utf16collationiterator.cpp -FILE: ../../../third_party/icu/source/i18n/utf16collationiterator.h -FILE: ../../../third_party/icu/source/i18n/utf8collationiterator.cpp -FILE: ../../../third_party/icu/source/i18n/utf8collationiterator.h -FILE: ../../../third_party/icu/source/i18n/utmscale.cpp -FILE: ../../../third_party/icu/source/i18n/utrans.cpp -FILE: ../../../third_party/icu/source/i18n/valueformatter.cpp -FILE: ../../../third_party/icu/source/i18n/valueformatter.h -FILE: ../../../third_party/icu/source/i18n/visibledigits.cpp -FILE: ../../../third_party/icu/source/i18n/visibledigits.h -FILE: ../../../third_party/icu/source/i18n/vtzone.cpp -FILE: ../../../third_party/icu/source/i18n/vzone.cpp -FILE: ../../../third_party/icu/source/i18n/vzone.h -FILE: ../../../third_party/icu/source/i18n/windtfmt.cpp -FILE: ../../../third_party/icu/source/i18n/windtfmt.h -FILE: ../../../third_party/icu/source/i18n/winnmfmt.cpp -FILE: ../../../third_party/icu/source/i18n/winnmfmt.h -FILE: ../../../third_party/icu/source/i18n/wintzimpl.cpp -FILE: ../../../third_party/icu/source/i18n/wintzimpl.h -FILE: ../../../third_party/icu/source/i18n/zonemeta.cpp -FILE: ../../../third_party/icu/source/i18n/zonemeta.h -FILE: ../../../third_party/icu/source/i18n/zrule.cpp -FILE: ../../../third_party/icu/source/i18n/zrule.h -FILE: ../../../third_party/icu/source/i18n/ztrans.cpp -FILE: ../../../third_party/icu/source/i18n/ztrans.h -FILE: ../../../third_party/icu/source/icudefs.mk.in -FILE: ../../../third_party/icu/source/io/io.rc -FILE: ../../../third_party/icu/source/io/locbund.cpp -FILE: ../../../third_party/icu/source/io/locbund.h -FILE: ../../../third_party/icu/source/io/sprintf.cpp -FILE: ../../../third_party/icu/source/io/sscanf.cpp -FILE: ../../../third_party/icu/source/io/ucln_io.cpp -FILE: ../../../third_party/icu/source/io/ucln_io.h -FILE: ../../../third_party/icu/source/io/ufile.cpp -FILE: ../../../third_party/icu/source/io/ufile.h -FILE: ../../../third_party/icu/source/io/ufmt_cmn.cpp -FILE: ../../../third_party/icu/source/io/ufmt_cmn.h -FILE: ../../../third_party/icu/source/io/unicode/ustdio.h -FILE: ../../../third_party/icu/source/io/unicode/ustream.h -FILE: ../../../third_party/icu/source/io/uprintf.cpp -FILE: ../../../third_party/icu/source/io/uprintf.h -FILE: ../../../third_party/icu/source/io/uprntf_p.cpp -FILE: ../../../third_party/icu/source/io/uscanf.cpp -FILE: ../../../third_party/icu/source/io/uscanf.h -FILE: ../../../third_party/icu/source/io/uscanf_p.cpp -FILE: ../../../third_party/icu/source/io/ustdio.cpp -FILE: ../../../third_party/icu/source/io/ustream.cpp -FILE: ../../../third_party/icu/source/samples/break/break.cpp -FILE: ../../../third_party/icu/source/samples/break/ubreak.c -FILE: ../../../third_party/icu/source/samples/cal/cal.c -FILE: ../../../third_party/icu/source/samples/cal/uprint.c -FILE: ../../../third_party/icu/source/samples/cal/uprint.h -FILE: ../../../third_party/icu/source/samples/case/case.cpp -FILE: ../../../third_party/icu/source/samples/case/ucase.c -FILE: ../../../third_party/icu/source/samples/citer/citer.cpp -FILE: ../../../third_party/icu/source/samples/coll/coll.cpp -FILE: ../../../third_party/icu/source/samples/csdet/csdet.c -FILE: ../../../third_party/icu/source/samples/date/date.c -FILE: ../../../third_party/icu/source/samples/date/uprint.c -FILE: ../../../third_party/icu/source/samples/date/uprint.h -FILE: ../../../third_party/icu/source/samples/datecal/cal.cpp -FILE: ../../../third_party/icu/source/samples/datecal/ccal.c -FILE: ../../../third_party/icu/source/samples/datefmt/answers/main_0.cpp -FILE: ../../../third_party/icu/source/samples/datefmt/answers/main_1.cpp -FILE: ../../../third_party/icu/source/samples/datefmt/answers/main_2.cpp -FILE: ../../../third_party/icu/source/samples/datefmt/answers/main_3.cpp -FILE: ../../../third_party/icu/source/samples/datefmt/main.cpp -FILE: ../../../third_party/icu/source/samples/datefmt/util.cpp -FILE: ../../../third_party/icu/source/samples/datefmt/util.h -FILE: ../../../third_party/icu/source/samples/dtitvfmtsample/dtitvfmtsample.cpp -FILE: ../../../third_party/icu/source/samples/dtptngsample/dtptngsample.cpp -FILE: ../../../third_party/icu/source/samples/layout/FontMap.GDI -FILE: ../../../third_party/icu/source/samples/layout/FontMap.Gnome -FILE: ../../../third_party/icu/source/samples/layout/FontMap.cpp -FILE: ../../../third_party/icu/source/samples/layout/FontMap.h -FILE: ../../../third_party/icu/source/samples/layout/FontTableCache.cpp -FILE: ../../../third_party/icu/source/samples/layout/FontTableCache.h -FILE: ../../../third_party/icu/source/samples/layout/GDIFontInstance.cpp -FILE: ../../../third_party/icu/source/samples/layout/GDIFontInstance.h -FILE: ../../../third_party/icu/source/samples/layout/GDIFontMap.cpp -FILE: ../../../third_party/icu/source/samples/layout/GDIFontMap.h -FILE: ../../../third_party/icu/source/samples/layout/GDIGUISupport.cpp -FILE: ../../../third_party/icu/source/samples/layout/GDIGUISupport.h -FILE: ../../../third_party/icu/source/samples/layout/GUISupport.h -FILE: ../../../third_party/icu/source/samples/layout/GnomeFontInstance.cpp -FILE: ../../../third_party/icu/source/samples/layout/GnomeFontInstance.h -FILE: ../../../third_party/icu/source/samples/layout/GnomeFontMap.cpp -FILE: ../../../third_party/icu/source/samples/layout/GnomeFontMap.h -FILE: ../../../third_party/icu/source/samples/layout/GnomeGUISupport.cpp -FILE: ../../../third_party/icu/source/samples/layout/GnomeGUISupport.h -FILE: ../../../third_party/icu/source/samples/layout/LayoutSample.rc -FILE: ../../../third_party/icu/source/samples/layout/LayoutSample.rc -FILE: ../../../third_party/icu/source/samples/layout/RenderingSurface.h -FILE: ../../../third_party/icu/source/samples/layout/ScriptCompositeFontInstance.cpp -FILE: ../../../third_party/icu/source/samples/layout/ScriptCompositeFontInstance.h -FILE: ../../../third_party/icu/source/samples/layout/Surface.cpp -FILE: ../../../third_party/icu/source/samples/layout/Surface.h -FILE: ../../../third_party/icu/source/samples/layout/UnicodeReader.cpp -FILE: ../../../third_party/icu/source/samples/layout/UnicodeReader.h -FILE: ../../../third_party/icu/source/samples/layout/arraymem.h -FILE: ../../../third_party/icu/source/samples/layout/cgnomelayout.c -FILE: ../../../third_party/icu/source/samples/layout/clayout.c -FILE: ../../../third_party/icu/source/samples/layout/cmaps.cpp -FILE: ../../../third_party/icu/source/samples/layout/cmaps.h -FILE: ../../../third_party/icu/source/samples/layout/gdiglue.cpp -FILE: ../../../third_party/icu/source/samples/layout/gdiglue.h -FILE: ../../../third_party/icu/source/samples/layout/gnomeglue.cpp -FILE: ../../../third_party/icu/source/samples/layout/gnomeglue.h -FILE: ../../../third_party/icu/source/samples/layout/gnomelayout.cpp -FILE: ../../../third_party/icu/source/samples/layout/gsupport.h -FILE: ../../../third_party/icu/source/samples/layout/layout.cpp -FILE: ../../../third_party/icu/source/samples/layout/paragraph.cpp -FILE: ../../../third_party/icu/source/samples/layout/paragraph.h -FILE: ../../../third_party/icu/source/samples/layout/pflow.c -FILE: ../../../third_party/icu/source/samples/layout/pflow.h -FILE: ../../../third_party/icu/source/samples/layout/resource.h -FILE: ../../../third_party/icu/source/samples/layout/rsurface.cpp -FILE: ../../../third_party/icu/source/samples/layout/rsurface.h -FILE: ../../../third_party/icu/source/samples/layout/sfnt.h -FILE: ../../../third_party/icu/source/samples/layout/ucreader.cpp -FILE: ../../../third_party/icu/source/samples/layout/ucreader.h -FILE: ../../../third_party/icu/source/samples/legacy/legacy.cpp -FILE: ../../../third_party/icu/source/samples/legacy/newcol.cpp -FILE: ../../../third_party/icu/source/samples/legacy/oldcol.cpp -FILE: ../../../third_party/icu/source/samples/msgfmt/answers/main_0.cpp -FILE: ../../../third_party/icu/source/samples/msgfmt/answers/main_1.cpp -FILE: ../../../third_party/icu/source/samples/msgfmt/answers/main_2.cpp -FILE: ../../../third_party/icu/source/samples/msgfmt/answers/main_3.cpp -FILE: ../../../third_party/icu/source/samples/msgfmt/main.cpp -FILE: ../../../third_party/icu/source/samples/msgfmt/util.cpp -FILE: ../../../third_party/icu/source/samples/msgfmt/util.h -FILE: ../../../third_party/icu/source/samples/numfmt/capi.c -FILE: ../../../third_party/icu/source/samples/numfmt/main.cpp -FILE: ../../../third_party/icu/source/samples/numfmt/util.cpp -FILE: ../../../third_party/icu/source/samples/numfmt/util.h -FILE: ../../../third_party/icu/source/samples/plurfmtsample/plurfmtsample.cpp -FILE: ../../../third_party/icu/source/samples/props/props.cpp -FILE: ../../../third_party/icu/source/samples/strsrch/strsrch.cpp -FILE: ../../../third_party/icu/source/samples/translit/answers/main_1.cpp -FILE: ../../../third_party/icu/source/samples/translit/answers/main_2.cpp -FILE: ../../../third_party/icu/source/samples/translit/answers/main_3.cpp -FILE: ../../../third_party/icu/source/samples/translit/answers/main_4.cpp -FILE: ../../../third_party/icu/source/samples/translit/answers/unaccent.cpp -FILE: ../../../third_party/icu/source/samples/translit/answers/unaccent.h -FILE: ../../../third_party/icu/source/samples/translit/main.cpp -FILE: ../../../third_party/icu/source/samples/translit/unaccent.cpp -FILE: ../../../third_party/icu/source/samples/translit/unaccent.h -FILE: ../../../third_party/icu/source/samples/translit/util.cpp -FILE: ../../../third_party/icu/source/samples/translit/util.h -FILE: ../../../third_party/icu/source/samples/uciter8/uciter8.c -FILE: ../../../third_party/icu/source/samples/uciter8/uit_len8.c -FILE: ../../../third_party/icu/source/samples/uciter8/uit_len8.h -FILE: ../../../third_party/icu/source/samples/ucnv/convsamp.cpp -FILE: ../../../third_party/icu/source/samples/ucnv/flagcb.c -FILE: ../../../third_party/icu/source/samples/ucnv/flagcb.h -FILE: ../../../third_party/icu/source/samples/udata/reader.c -FILE: ../../../third_party/icu/source/samples/udata/writer.c -FILE: ../../../third_party/icu/source/samples/ufortune/resources/fortune_resources.mak -FILE: ../../../third_party/icu/source/samples/ufortune/ufortune.c -FILE: ../../../third_party/icu/source/samples/ugrep/ugrep.cpp -FILE: ../../../third_party/icu/source/samples/uresb/resources.mak -FILE: ../../../third_party/icu/source/samples/uresb/uresb.c -FILE: ../../../third_party/icu/source/samples/ustring/ustring.cpp -FILE: ../../../third_party/icu/source/stubdata/stubdata.cpp -FILE: ../../../third_party/icu/source/tools/ctestfw/ctest.c -FILE: ../../../third_party/icu/source/tools/ctestfw/datamap.cpp -FILE: ../../../third_party/icu/source/tools/ctestfw/testdata.cpp -FILE: ../../../third_party/icu/source/tools/ctestfw/tstdtmod.cpp -FILE: ../../../third_party/icu/source/tools/ctestfw/ucln_ct.c -FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/ctest.h -FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/datamap.h -FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/testdata.h -FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/testlog.h -FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/testtype.h -FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/tstdtmod.h -FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/uperf.h -FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/utimer.h -FILE: ../../../third_party/icu/source/tools/ctestfw/uperf.cpp -FILE: ../../../third_party/icu/source/tools/escapesrc/cptbl.h -FILE: ../../../third_party/icu/source/tools/escapesrc/escapesrc.cpp -FILE: ../../../third_party/icu/source/tools/escapesrc/expect-simple.cpp -FILE: ../../../third_party/icu/source/tools/escapesrc/tblgen.cpp -FILE: ../../../third_party/icu/source/tools/escapesrc/test-nochange.cpp -FILE: ../../../third_party/icu/source/tools/escapesrc/test-simple.cpp -FILE: ../../../third_party/icu/source/tools/genbrk/genbrk.1.in -FILE: ../../../third_party/icu/source/tools/genbrk/genbrk.cpp -FILE: ../../../third_party/icu/source/tools/genccode/genccode.8.in -FILE: ../../../third_party/icu/source/tools/genccode/genccode.c -FILE: ../../../third_party/icu/source/tools/gencfu/gencfu.1.in -FILE: ../../../third_party/icu/source/tools/gencfu/gencfu.cpp -FILE: ../../../third_party/icu/source/tools/gencmn/gencmn.8.in -FILE: ../../../third_party/icu/source/tools/gencmn/gencmn.c -FILE: ../../../third_party/icu/source/tools/gencnval/gencnval.1.in -FILE: ../../../third_party/icu/source/tools/gencnval/gencnval.c -FILE: ../../../third_party/icu/source/tools/gencolusb/extract_unsafe_backwards.cpp -FILE: ../../../third_party/icu/source/tools/gencolusb/verify_uset.cpp -FILE: ../../../third_party/icu/source/tools/gendict/gendict.1.in -FILE: ../../../third_party/icu/source/tools/gendict/gendict.cpp -FILE: ../../../third_party/icu/source/tools/gennorm2/gennorm2.cpp -FILE: ../../../third_party/icu/source/tools/gennorm2/n2builder.cpp -FILE: ../../../third_party/icu/source/tools/gennorm2/n2builder.h -FILE: ../../../third_party/icu/source/tools/genrb/derb.1.in -FILE: ../../../third_party/icu/source/tools/genrb/derb.cpp -FILE: ../../../third_party/icu/source/tools/genrb/errmsg.c -FILE: ../../../third_party/icu/source/tools/genrb/errmsg.h -FILE: ../../../third_party/icu/source/tools/genrb/genrb.1.in -FILE: ../../../third_party/icu/source/tools/genrb/genrb.cpp -FILE: ../../../third_party/icu/source/tools/genrb/genrb.h -FILE: ../../../third_party/icu/source/tools/genrb/parse.cpp -FILE: ../../../third_party/icu/source/tools/genrb/parse.h -FILE: ../../../third_party/icu/source/tools/genrb/prscmnts.cpp -FILE: ../../../third_party/icu/source/tools/genrb/prscmnts.h -FILE: ../../../third_party/icu/source/tools/genrb/rbutil.c -FILE: ../../../third_party/icu/source/tools/genrb/rbutil.h -FILE: ../../../third_party/icu/source/tools/genrb/read.c -FILE: ../../../third_party/icu/source/tools/genrb/read.h -FILE: ../../../third_party/icu/source/tools/genrb/reslist.cpp -FILE: ../../../third_party/icu/source/tools/genrb/reslist.h -FILE: ../../../third_party/icu/source/tools/genrb/rle.c -FILE: ../../../third_party/icu/source/tools/genrb/rle.h -FILE: ../../../third_party/icu/source/tools/genrb/ustr.c -FILE: ../../../third_party/icu/source/tools/genrb/ustr.h -FILE: ../../../third_party/icu/source/tools/genrb/wrtjava.cpp -FILE: ../../../third_party/icu/source/tools/genrb/wrtxml.cpp -FILE: ../../../third_party/icu/source/tools/gensprep/gensprep.8.in -FILE: ../../../third_party/icu/source/tools/gensprep/gensprep.c -FILE: ../../../third_party/icu/source/tools/gensprep/gensprep.h -FILE: ../../../third_party/icu/source/tools/gensprep/store.c -FILE: ../../../third_party/icu/source/tools/gentest/genres32.c -FILE: ../../../third_party/icu/source/tools/gentest/gentest.c -FILE: ../../../third_party/icu/source/tools/gentest/gentest.h -FILE: ../../../third_party/icu/source/tools/icuinfo/icuinfo.cpp -FILE: ../../../third_party/icu/source/tools/icuinfo/testplug.c -FILE: ../../../third_party/icu/source/tools/icupkg/icupkg.8.in -FILE: ../../../third_party/icu/source/tools/icupkg/icupkg.cpp -FILE: ../../../third_party/icu/source/tools/icuswap/icuswap.cpp -FILE: ../../../third_party/icu/source/tools/makeconv/gencnvex.c -FILE: ../../../third_party/icu/source/tools/makeconv/genmbcs.cpp -FILE: ../../../third_party/icu/source/tools/makeconv/genmbcs.h -FILE: ../../../third_party/icu/source/tools/makeconv/makeconv.1.in -FILE: ../../../third_party/icu/source/tools/makeconv/makeconv.cpp -FILE: ../../../third_party/icu/source/tools/makeconv/makeconv.h -FILE: ../../../third_party/icu/source/tools/makeconv/ucnvstat.c -FILE: ../../../third_party/icu/source/tools/pkgdata/pkgdata.1.in -FILE: ../../../third_party/icu/source/tools/pkgdata/pkgdata.cpp -FILE: ../../../third_party/icu/source/tools/pkgdata/pkgtypes.c -FILE: ../../../third_party/icu/source/tools/pkgdata/pkgtypes.h -FILE: ../../../third_party/icu/source/tools/toolutil/collationinfo.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/collationinfo.h -FILE: ../../../third_party/icu/source/tools/toolutil/dbgutil.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/dbgutil.h -FILE: ../../../third_party/icu/source/tools/toolutil/denseranges.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/denseranges.h -FILE: ../../../third_party/icu/source/tools/toolutil/filestrm.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/filestrm.h -FILE: ../../../third_party/icu/source/tools/toolutil/filetools.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/filetools.h -FILE: ../../../third_party/icu/source/tools/toolutil/flagparser.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/flagparser.h -FILE: ../../../third_party/icu/source/tools/toolutil/package.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/package.h -FILE: ../../../third_party/icu/source/tools/toolutil/pkg_genc.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/pkg_genc.h -FILE: ../../../third_party/icu/source/tools/toolutil/pkg_gencmn.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/pkg_gencmn.h -FILE: ../../../third_party/icu/source/tools/toolutil/pkg_icu.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/pkg_icu.h -FILE: ../../../third_party/icu/source/tools/toolutil/pkg_imp.h -FILE: ../../../third_party/icu/source/tools/toolutil/pkgitems.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/ppucd.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/ppucd.h -FILE: ../../../third_party/icu/source/tools/toolutil/swapimpl.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/swapimpl.h -FILE: ../../../third_party/icu/source/tools/toolutil/toolutil.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/toolutil.h -FILE: ../../../third_party/icu/source/tools/toolutil/ucbuf.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/ucbuf.h -FILE: ../../../third_party/icu/source/tools/toolutil/ucln_tu.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/ucm.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/ucm.h -FILE: ../../../third_party/icu/source/tools/toolutil/ucmstate.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/udbgutil.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/udbgutil.h -FILE: ../../../third_party/icu/source/tools/toolutil/unewdata.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/unewdata.h -FILE: ../../../third_party/icu/source/tools/toolutil/uoptions.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/uoptions.h -FILE: ../../../third_party/icu/source/tools/toolutil/uparse.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/uparse.h -FILE: ../../../third_party/icu/source/tools/toolutil/writesrc.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/writesrc.h -FILE: ../../../third_party/icu/source/tools/toolutil/xmlparser.cpp -FILE: ../../../third_party/icu/source/tools/toolutil/xmlparser.h -FILE: ../../../third_party/icu/source/tools/tzcode/icuregions -FILE: ../../../third_party/icu/source/tools/tzcode/icuzdump.cpp -FILE: ../../../third_party/icu/source/tools/tzcode/icuzones -FILE: ../../../third_party/icu/source/tools/tzcode/tz2icu.cpp -FILE: ../../../third_party/icu/source/tools/tzcode/tz2icu.h +FILE: ../../../third_party/dart/DEPS +FILE: ../../../third_party/dart/client/dart.js +FILE: ../../../third_party/dart/runtime/bin/builtin.cc +FILE: ../../../third_party/dart/runtime/bin/builtin.dart +FILE: ../../../third_party/dart/runtime/bin/builtin.h +FILE: ../../../third_party/dart/runtime/bin/builtin_gen_snapshot.cc +FILE: ../../../third_party/dart/runtime/bin/builtin_in.cc +FILE: ../../../third_party/dart/runtime/bin/builtin_natives.cc +FILE: ../../../third_party/dart/runtime/bin/builtin_nolib.cc +FILE: ../../../third_party/dart/runtime/bin/common_patch.dart +FILE: ../../../third_party/dart/runtime/bin/crypto.cc +FILE: ../../../third_party/dart/runtime/bin/crypto.h +FILE: ../../../third_party/dart/runtime/bin/crypto_android.cc +FILE: ../../../third_party/dart/runtime/bin/crypto_linux.cc +FILE: ../../../third_party/dart/runtime/bin/crypto_macos.cc +FILE: ../../../third_party/dart/runtime/bin/crypto_win.cc +FILE: ../../../third_party/dart/runtime/bin/dartutils.cc +FILE: ../../../third_party/dart/runtime/bin/dartutils.h +FILE: ../../../third_party/dart/runtime/bin/directory.cc +FILE: ../../../third_party/dart/runtime/bin/directory.h +FILE: ../../../third_party/dart/runtime/bin/directory_android.cc +FILE: ../../../third_party/dart/runtime/bin/directory_linux.cc +FILE: ../../../third_party/dart/runtime/bin/directory_macos.cc +FILE: ../../../third_party/dart/runtime/bin/directory_patch.dart +FILE: ../../../third_party/dart/runtime/bin/directory_win.cc +FILE: ../../../third_party/dart/runtime/bin/eventhandler.cc +FILE: ../../../third_party/dart/runtime/bin/eventhandler.h +FILE: ../../../third_party/dart/runtime/bin/eventhandler_android.cc +FILE: ../../../third_party/dart/runtime/bin/eventhandler_android.h +FILE: ../../../third_party/dart/runtime/bin/eventhandler_linux.cc +FILE: ../../../third_party/dart/runtime/bin/eventhandler_linux.h +FILE: ../../../third_party/dart/runtime/bin/eventhandler_macos.cc +FILE: ../../../third_party/dart/runtime/bin/eventhandler_macos.h +FILE: ../../../third_party/dart/runtime/bin/eventhandler_patch.dart +FILE: ../../../third_party/dart/runtime/bin/eventhandler_test.cc +FILE: ../../../third_party/dart/runtime/bin/eventhandler_win.h +FILE: ../../../third_party/dart/runtime/bin/extensions.cc +FILE: ../../../third_party/dart/runtime/bin/extensions.h +FILE: ../../../third_party/dart/runtime/bin/extensions_android.cc +FILE: ../../../third_party/dart/runtime/bin/extensions_linux.cc +FILE: ../../../third_party/dart/runtime/bin/extensions_macos.cc +FILE: ../../../third_party/dart/runtime/bin/extensions_win.cc +FILE: ../../../third_party/dart/runtime/bin/fdutils.h +FILE: ../../../third_party/dart/runtime/bin/fdutils_android.cc +FILE: ../../../third_party/dart/runtime/bin/fdutils_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/fdutils_linux.cc +FILE: ../../../third_party/dart/runtime/bin/fdutils_macos.cc +FILE: ../../../third_party/dart/runtime/bin/file_android.cc +FILE: ../../../third_party/dart/runtime/bin/file_linux.cc +FILE: ../../../third_party/dart/runtime/bin/file_macos.cc +FILE: ../../../third_party/dart/runtime/bin/file_patch.dart +FILE: ../../../third_party/dart/runtime/bin/file_test.cc +FILE: ../../../third_party/dart/runtime/bin/file_win.cc +FILE: ../../../third_party/dart/runtime/bin/hashmap_test.cc +FILE: ../../../third_party/dart/runtime/bin/io_buffer.cc +FILE: ../../../third_party/dart/runtime/bin/io_buffer.h +FILE: ../../../third_party/dart/runtime/bin/io_natives.h +FILE: ../../../third_party/dart/runtime/bin/isolate_data.h +FILE: ../../../third_party/dart/runtime/bin/lockers.h +FILE: ../../../third_party/dart/runtime/bin/log.h +FILE: ../../../third_party/dart/runtime/bin/log_android.cc +FILE: ../../../third_party/dart/runtime/bin/log_linux.cc +FILE: ../../../third_party/dart/runtime/bin/log_macos.cc +FILE: ../../../third_party/dart/runtime/bin/log_win.cc +FILE: ../../../third_party/dart/runtime/bin/main.cc +FILE: ../../../third_party/dart/runtime/bin/platform.cc +FILE: ../../../third_party/dart/runtime/bin/platform.h +FILE: ../../../third_party/dart/runtime/bin/platform_android.cc +FILE: ../../../third_party/dart/runtime/bin/platform_linux.cc +FILE: ../../../third_party/dart/runtime/bin/platform_macos.cc +FILE: ../../../third_party/dart/runtime/bin/platform_patch.dart +FILE: ../../../third_party/dart/runtime/bin/platform_win.cc +FILE: ../../../third_party/dart/runtime/bin/process.h +FILE: ../../../third_party/dart/runtime/bin/process_android.cc +FILE: ../../../third_party/dart/runtime/bin/process_linux.cc +FILE: ../../../third_party/dart/runtime/bin/process_macos.cc +FILE: ../../../third_party/dart/runtime/bin/process_win.cc +FILE: ../../../third_party/dart/runtime/bin/run_vm_tests.cc +FILE: ../../../third_party/dart/runtime/bin/secure_socket_patch.dart +FILE: ../../../third_party/dart/runtime/bin/secure_socket_unsupported.cc +FILE: ../../../third_party/dart/runtime/bin/socket_android.cc +FILE: ../../../third_party/dart/runtime/bin/socket_base_android.cc +FILE: ../../../third_party/dart/runtime/bin/socket_base_android.h +FILE: ../../../third_party/dart/runtime/bin/socket_base_linux.h +FILE: ../../../third_party/dart/runtime/bin/socket_base_macos.h +FILE: ../../../third_party/dart/runtime/bin/socket_base_win.h +FILE: ../../../third_party/dart/runtime/bin/test_extension.c +FILE: ../../../third_party/dart/runtime/bin/test_extension_dllmain_win.cc +FILE: ../../../third_party/dart/runtime/bin/thread.h +FILE: ../../../third_party/dart/runtime/bin/thread_android.cc +FILE: ../../../third_party/dart/runtime/bin/thread_android.h +FILE: ../../../third_party/dart/runtime/bin/thread_linux.cc +FILE: ../../../third_party/dart/runtime/bin/thread_linux.h +FILE: ../../../third_party/dart/runtime/bin/thread_macos.cc +FILE: ../../../third_party/dart/runtime/bin/thread_macos.h +FILE: ../../../third_party/dart/runtime/bin/thread_win.cc +FILE: ../../../third_party/dart/runtime/bin/thread_win.h +FILE: ../../../third_party/dart/runtime/bin/utils.h +FILE: ../../../third_party/dart/runtime/bin/utils_android.cc +FILE: ../../../third_party/dart/runtime/bin/utils_linux.cc +FILE: ../../../third_party/dart/runtime/bin/utils_macos.cc +FILE: ../../../third_party/dart/runtime/bin/utils_win.cc +FILE: ../../../third_party/dart/runtime/bin/utils_win.h +FILE: ../../../third_party/dart/runtime/include/dart_api.h +FILE: ../../../third_party/dart/runtime/lib/array.cc +FILE: ../../../third_party/dart/runtime/lib/array.dart +FILE: ../../../third_party/dart/runtime/lib/array_patch.dart +FILE: ../../../third_party/dart/runtime/lib/bool.cc +FILE: ../../../third_party/dart/runtime/lib/bool_patch.dart +FILE: ../../../third_party/dart/runtime/lib/date.cc +FILE: ../../../third_party/dart/runtime/lib/date_patch.dart +FILE: ../../../third_party/dart/runtime/lib/double.dart +FILE: ../../../third_party/dart/runtime/lib/double_patch.dart +FILE: ../../../third_party/dart/runtime/lib/empty_source.dart +FILE: ../../../third_party/dart/runtime/lib/errors.cc +FILE: ../../../third_party/dart/runtime/lib/errors_patch.dart +FILE: ../../../third_party/dart/runtime/lib/expando_patch.dart +FILE: ../../../third_party/dart/runtime/lib/function.cc +FILE: ../../../third_party/dart/runtime/lib/function_patch.dart +FILE: ../../../third_party/dart/runtime/lib/growable_array.cc +FILE: ../../../third_party/dart/runtime/lib/growable_array.dart +FILE: ../../../third_party/dart/runtime/lib/identical.cc +FILE: ../../../third_party/dart/runtime/lib/identical_patch.dart +FILE: ../../../third_party/dart/runtime/lib/immutable_map.dart +FILE: ../../../third_party/dart/runtime/lib/integers.cc +FILE: ../../../third_party/dart/runtime/lib/integers.dart +FILE: ../../../third_party/dart/runtime/lib/integers_patch.dart +FILE: ../../../third_party/dart/runtime/lib/invocation_mirror_patch.dart +FILE: ../../../third_party/dart/runtime/lib/isolate.cc +FILE: ../../../third_party/dart/runtime/lib/isolate_patch.dart +FILE: ../../../third_party/dart/runtime/lib/map_patch.dart +FILE: ../../../third_party/dart/runtime/lib/math_patch.dart +FILE: ../../../third_party/dart/runtime/lib/mirrors.cc +FILE: ../../../third_party/dart/runtime/lib/mirrors_impl.dart +FILE: ../../../third_party/dart/runtime/lib/mirrors_patch.dart +FILE: ../../../third_party/dart/runtime/lib/object_patch.dart +FILE: ../../../third_party/dart/runtime/lib/print_patch.dart +FILE: ../../../third_party/dart/runtime/lib/regexp.cc +FILE: ../../../third_party/dart/runtime/lib/regexp_patch.dart +FILE: ../../../third_party/dart/runtime/lib/stopwatch.cc +FILE: ../../../third_party/dart/runtime/lib/stopwatch_patch.dart +FILE: ../../../third_party/dart/runtime/lib/string_buffer_patch.dart +FILE: ../../../third_party/dart/runtime/lib/string_patch.dart +FILE: ../../../third_party/dart/runtime/lib/timer_patch.dart +FILE: ../../../third_party/dart/runtime/lib/type_patch.dart +FILE: ../../../third_party/dart/runtime/lib/weak_property.cc +FILE: ../../../third_party/dart/runtime/lib/weak_property.dart +FILE: ../../../third_party/dart/runtime/platform/assert.cc +FILE: ../../../third_party/dart/runtime/platform/assert.h +FILE: ../../../third_party/dart/runtime/platform/floating_point.h +FILE: ../../../third_party/dart/runtime/platform/floating_point_win.cc +FILE: ../../../third_party/dart/runtime/platform/floating_point_win.h +FILE: ../../../third_party/dart/runtime/platform/globals.h +FILE: ../../../third_party/dart/runtime/platform/hashmap.cc +FILE: ../../../third_party/dart/runtime/platform/hashmap.h +FILE: ../../../third_party/dart/runtime/platform/text_buffer.cc +FILE: ../../../third_party/dart/runtime/platform/text_buffer.h +FILE: ../../../third_party/dart/runtime/platform/utils.cc +FILE: ../../../third_party/dart/runtime/platform/utils.h +FILE: ../../../third_party/dart/runtime/platform/utils_android.cc +FILE: ../../../third_party/dart/runtime/platform/utils_android.h +FILE: ../../../third_party/dart/runtime/platform/utils_linux.cc +FILE: ../../../third_party/dart/runtime/platform/utils_linux.h +FILE: ../../../third_party/dart/runtime/platform/utils_macos.cc +FILE: ../../../third_party/dart/runtime/platform/utils_macos.h +FILE: ../../../third_party/dart/runtime/platform/utils_win.cc +FILE: ../../../third_party/dart/runtime/platform/utils_win.h +FILE: ../../../third_party/dart/runtime/vm/allocation.cc +FILE: ../../../third_party/dart/runtime/vm/allocation_test.cc +FILE: ../../../third_party/dart/runtime/vm/assert_test.cc +FILE: ../../../third_party/dart/runtime/vm/ast.h +FILE: ../../../third_party/dart/runtime/vm/ast_printer_test.cc +FILE: ../../../third_party/dart/runtime/vm/ast_test.cc +FILE: ../../../third_party/dart/runtime/vm/base_isolate.h +FILE: ../../../third_party/dart/runtime/vm/benchmark_test.cc +FILE: ../../../third_party/dart/runtime/vm/benchmark_test.h +FILE: ../../../third_party/dart/runtime/vm/bit_set.h +FILE: ../../../third_party/dart/runtime/vm/bit_vector.cc +FILE: ../../../third_party/dart/runtime/vm/bit_vector.h +FILE: ../../../third_party/dart/runtime/vm/bit_vector_test.cc +FILE: ../../../third_party/dart/runtime/vm/bitfield_test.cc +FILE: ../../../third_party/dart/runtime/vm/bitmap.cc +FILE: ../../../third_party/dart/runtime/vm/bitmap.h +FILE: ../../../third_party/dart/runtime/vm/bitmap_test.cc +FILE: ../../../third_party/dart/runtime/vm/boolfield.h +FILE: ../../../third_party/dart/runtime/vm/boolfield_test.cc +FILE: ../../../third_party/dart/runtime/vm/bootstrap.cc +FILE: ../../../third_party/dart/runtime/vm/bootstrap.h +FILE: ../../../third_party/dart/runtime/vm/bootstrap_natives.cc +FILE: ../../../third_party/dart/runtime/vm/bootstrap_natives.h +FILE: ../../../third_party/dart/runtime/vm/bootstrap_nocore.cc +FILE: ../../../third_party/dart/runtime/vm/class_finalizer.h +FILE: ../../../third_party/dart/runtime/vm/class_finalizer_test.cc +FILE: ../../../third_party/dart/runtime/vm/class_table.cc +FILE: ../../../third_party/dart/runtime/vm/class_table.h +FILE: ../../../third_party/dart/runtime/vm/code_descriptors.cc +FILE: ../../../third_party/dart/runtime/vm/code_descriptors.h +FILE: ../../../third_party/dart/runtime/vm/code_descriptors_test.cc +FILE: ../../../third_party/dart/runtime/vm/code_observers.cc +FILE: ../../../third_party/dart/runtime/vm/code_observers.h +FILE: ../../../third_party/dart/runtime/vm/code_patcher.cc +FILE: ../../../third_party/dart/runtime/vm/code_patcher.h +FILE: ../../../third_party/dart/runtime/vm/code_patcher_ia32.cc +FILE: ../../../third_party/dart/runtime/vm/code_patcher_x64.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/aot/aot_call_specializer.h +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler.h +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_ia32_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_x64_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_x86.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/constant_propagator.h +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler.h +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_printer.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_printer.h +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/inliner.h +FILE: ../../../third_party/dart/runtime/vm/compiler/cha.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/cha.h +FILE: ../../../third_party/dart/runtime/vm/compiler/cha_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/code_generator_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/flow_graph_builder.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/flow_graph_builder.h +FILE: ../../../third_party/dart/runtime/vm/compiler/intrinsifier.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/intrinsifier.h +FILE: ../../../third_party/dart/runtime/vm/compiler/jit/compiler.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/jit/compiler.h +FILE: ../../../third_party/dart/runtime/vm/compiler_test.cc +FILE: ../../../third_party/dart/runtime/vm/cpu.h +FILE: ../../../third_party/dart/runtime/vm/cpu_arm.cc +FILE: ../../../third_party/dart/runtime/vm/cpu_test.cc +FILE: ../../../third_party/dart/runtime/vm/cpu_x64.cc +FILE: ../../../third_party/dart/runtime/vm/cpuinfo_linux.cc +FILE: ../../../third_party/dart/runtime/vm/cpuinfo_macos.cc +FILE: ../../../third_party/dart/runtime/vm/dart_api_impl_test.cc +FILE: ../../../third_party/dart/runtime/vm/dart_api_message.cc +FILE: ../../../third_party/dart/runtime/vm/dart_api_message.h +FILE: ../../../third_party/dart/runtime/vm/dart_api_state.h +FILE: ../../../third_party/dart/runtime/vm/dart_entry_test.cc +FILE: ../../../third_party/dart/runtime/vm/datastream.h +FILE: ../../../third_party/dart/runtime/vm/debugger.cc +FILE: ../../../third_party/dart/runtime/vm/debugger.h +FILE: ../../../third_party/dart/runtime/vm/debugger_api_impl_test.cc +FILE: ../../../third_party/dart/runtime/vm/double_internals.h +FILE: ../../../third_party/dart/runtime/vm/exceptions_test.cc +FILE: ../../../third_party/dart/runtime/vm/find_code_object_test.cc +FILE: ../../../third_party/dart/runtime/vm/flag_list.h +FILE: ../../../third_party/dart/runtime/vm/flags.cc +FILE: ../../../third_party/dart/runtime/vm/flags.h +FILE: ../../../third_party/dart/runtime/vm/flags_test.cc +FILE: ../../../third_party/dart/runtime/vm/globals.h +FILE: ../../../third_party/dart/runtime/vm/growable_array.h +FILE: ../../../third_party/dart/runtime/vm/growable_array_test.cc +FILE: ../../../third_party/dart/runtime/vm/handles.cc +FILE: ../../../third_party/dart/runtime/vm/handles_impl.h +FILE: ../../../third_party/dart/runtime/vm/handles_test.cc +FILE: ../../../third_party/dart/runtime/vm/hash_map.h +FILE: ../../../third_party/dart/runtime/vm/hash_map_test.cc +FILE: ../../../third_party/dart/runtime/vm/heap/freelist.h +FILE: ../../../third_party/dart/runtime/vm/heap/freelist_test.cc +FILE: ../../../third_party/dart/runtime/vm/heap/heap.cc +FILE: ../../../third_party/dart/runtime/vm/heap/heap.h +FILE: ../../../third_party/dart/runtime/vm/heap/heap_test.cc +FILE: ../../../third_party/dart/runtime/vm/heap/pages.cc +FILE: ../../../third_party/dart/runtime/vm/heap/pages_test.cc +FILE: ../../../third_party/dart/runtime/vm/heap/pointer_block.cc +FILE: ../../../third_party/dart/runtime/vm/heap/pointer_block.h +FILE: ../../../third_party/dart/runtime/vm/heap/scavenger.h +FILE: ../../../third_party/dart/runtime/vm/heap/verifier.cc +FILE: ../../../third_party/dart/runtime/vm/instructions_ia32.cc +FILE: ../../../third_party/dart/runtime/vm/instructions_ia32.h +FILE: ../../../third_party/dart/runtime/vm/instructions_ia32_test.cc +FILE: ../../../third_party/dart/runtime/vm/instructions_x64.cc +FILE: ../../../third_party/dart/runtime/vm/instructions_x64.h +FILE: ../../../third_party/dart/runtime/vm/instructions_x64_test.cc +FILE: ../../../third_party/dart/runtime/vm/isolate_test.cc +FILE: ../../../third_party/dart/runtime/vm/json_test.cc +FILE: ../../../third_party/dart/runtime/vm/lockers.h +FILE: ../../../third_party/dart/runtime/vm/megamorphic_cache_table.cc +FILE: ../../../third_party/dart/runtime/vm/megamorphic_cache_table.h +FILE: ../../../third_party/dart/runtime/vm/memory_region.h +FILE: ../../../third_party/dart/runtime/vm/memory_region_test.cc +FILE: ../../../third_party/dart/runtime/vm/message_handler_test.cc +FILE: ../../../third_party/dart/runtime/vm/message_test.cc +FILE: ../../../third_party/dart/runtime/vm/native_arguments.h +FILE: ../../../third_party/dart/runtime/vm/native_message_handler.cc +FILE: ../../../third_party/dart/runtime/vm/native_message_handler.h +FILE: ../../../third_party/dart/runtime/vm/object.cc +FILE: ../../../third_party/dart/runtime/vm/object.h +FILE: ../../../third_party/dart/runtime/vm/object_arm_test.cc +FILE: ../../../third_party/dart/runtime/vm/object_ia32_test.cc +FILE: ../../../third_party/dart/runtime/vm/object_set.h +FILE: ../../../third_party/dart/runtime/vm/object_store.h +FILE: ../../../third_party/dart/runtime/vm/object_test.cc +FILE: ../../../third_party/dart/runtime/vm/object_x64_test.cc +FILE: ../../../third_party/dart/runtime/vm/os_android.cc +FILE: ../../../third_party/dart/runtime/vm/os_linux.cc +FILE: ../../../third_party/dart/runtime/vm/os_macos.cc +FILE: ../../../third_party/dart/runtime/vm/os_thread.h +FILE: ../../../third_party/dart/runtime/vm/os_thread_android.cc +FILE: ../../../third_party/dart/runtime/vm/os_thread_android.h +FILE: ../../../third_party/dart/runtime/vm/os_thread_linux.cc +FILE: ../../../third_party/dart/runtime/vm/os_thread_linux.h +FILE: ../../../third_party/dart/runtime/vm/os_thread_macos.cc +FILE: ../../../third_party/dart/runtime/vm/os_thread_macos.h +FILE: ../../../third_party/dart/runtime/vm/os_thread_win.cc +FILE: ../../../third_party/dart/runtime/vm/os_thread_win.h +FILE: ../../../third_party/dart/runtime/vm/os_win.cc +FILE: ../../../third_party/dart/runtime/vm/parser.cc +FILE: ../../../third_party/dart/runtime/vm/parser.h +FILE: ../../../third_party/dart/runtime/vm/port.cc +FILE: ../../../third_party/dart/runtime/vm/port_test.cc +FILE: ../../../third_party/dart/runtime/vm/proccpuinfo.cc +FILE: ../../../third_party/dart/runtime/vm/proccpuinfo.h +FILE: ../../../third_party/dart/runtime/vm/raw_object.cc +FILE: ../../../third_party/dart/runtime/vm/raw_object.h +FILE: ../../../third_party/dart/runtime/vm/raw_object_snapshot.cc +FILE: ../../../third_party/dart/runtime/vm/resolver_test.cc +FILE: ../../../third_party/dart/runtime/vm/scanner.cc +FILE: ../../../third_party/dart/runtime/vm/scanner_test.cc +FILE: ../../../third_party/dart/runtime/vm/scopes.cc +FILE: ../../../third_party/dart/runtime/vm/scopes.h +FILE: ../../../third_party/dart/runtime/vm/scopes_test.cc +FILE: ../../../third_party/dart/runtime/vm/snapshot.cc +FILE: ../../../third_party/dart/runtime/vm/snapshot.h +FILE: ../../../third_party/dart/runtime/vm/snapshot_ids.h +FILE: ../../../third_party/dart/runtime/vm/snapshot_test.cc +FILE: ../../../third_party/dart/runtime/vm/snapshot_test.dart +FILE: ../../../third_party/dart/runtime/vm/stack_frame.cc +FILE: ../../../third_party/dart/runtime/vm/stack_frame_test.cc +FILE: ../../../third_party/dart/runtime/vm/stub_code.cc +FILE: ../../../third_party/dart/runtime/vm/symbols.cc +FILE: ../../../third_party/dart/runtime/vm/symbols.h +FILE: ../../../third_party/dart/runtime/vm/thread_pool.cc +FILE: ../../../third_party/dart/runtime/vm/thread_pool.h +FILE: ../../../third_party/dart/runtime/vm/thread_pool_test.cc +FILE: ../../../third_party/dart/runtime/vm/thread_test.cc +FILE: ../../../third_party/dart/runtime/vm/token.h +FILE: ../../../third_party/dart/runtime/vm/unicode.cc +FILE: ../../../third_party/dart/runtime/vm/unicode.h +FILE: ../../../third_party/dart/runtime/vm/unit_test.cc +FILE: ../../../third_party/dart/runtime/vm/utils_test.cc +FILE: ../../../third_party/dart/runtime/vm/version.h +FILE: ../../../third_party/dart/runtime/vm/version_in.cc +FILE: ../../../third_party/dart/runtime/vm/virtual_memory.cc +FILE: ../../../third_party/dart/runtime/vm/virtual_memory.h +FILE: ../../../third_party/dart/runtime/vm/virtual_memory_android.cc +FILE: ../../../third_party/dart/runtime/vm/virtual_memory_linux.cc +FILE: ../../../third_party/dart/runtime/vm/virtual_memory_macos.cc +FILE: ../../../third_party/dart/runtime/vm/virtual_memory_test.cc +FILE: ../../../third_party/dart/runtime/vm/virtual_memory_win.cc +FILE: ../../../third_party/dart/runtime/vm/zone.cc +FILE: ../../../third_party/dart/runtime/vm/zone.h +FILE: ../../../third_party/dart/runtime/vm/zone_test.cc +FILE: ../../../third_party/dart/samples/sample_extension/sample_asynchronous_extension.dart +FILE: ../../../third_party/dart/samples/sample_extension/sample_extension.cc +FILE: ../../../third_party/dart/samples/sample_extension/sample_extension_dllmain_win.cc +FILE: ../../../third_party/dart/samples/sample_extension/sample_synchronous_extension.dart +FILE: ../../../third_party/dart/samples/sample_extension/test_sample_asynchronous_extension.dart +FILE: ../../../third_party/dart/samples/sample_extension/test_sample_synchronous_extension.dart +FILE: ../../../third_party/dart/samples/samples.status +FILE: ../../../third_party/dart/sdk/lib/_http/crypto.dart +FILE: ../../../third_party/dart/sdk/lib/_http/http_date.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/async_patch.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/constant_map.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/core_patch.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/foreign_helper.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/interceptors.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/isolate_patch.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_array.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_number.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_string.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/math_patch.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/mirrors_patch_cfe.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/native_helper.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/regexp_helper.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/string_helper.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart +FILE: ../../../third_party/dart/sdk/lib/async/async.dart +FILE: ../../../third_party/dart/sdk/lib/async/async_error.dart +FILE: ../../../third_party/dart/sdk/lib/async/broadcast_stream_controller.dart +FILE: ../../../third_party/dart/sdk/lib/async/future.dart +FILE: ../../../third_party/dart/sdk/lib/async/future_impl.dart +FILE: ../../../third_party/dart/sdk/lib/async/stream_controller.dart +FILE: ../../../third_party/dart/sdk/lib/async/stream_impl.dart +FILE: ../../../third_party/dart/sdk/lib/async/stream_pipe.dart +FILE: ../../../third_party/dart/sdk/lib/async/timer.dart +FILE: ../../../third_party/dart/sdk/lib/collection/collection.dart +FILE: ../../../third_party/dart/sdk/lib/collection/iterable.dart +FILE: ../../../third_party/dart/sdk/lib/collection/iterator.dart +FILE: ../../../third_party/dart/sdk/lib/collection/maps.dart +FILE: ../../../third_party/dart/sdk/lib/collection/splay_tree.dart +FILE: ../../../third_party/dart/sdk/lib/core/bool.dart +FILE: ../../../third_party/dart/sdk/lib/core/core.dart +FILE: ../../../third_party/dart/sdk/lib/core/double.dart +FILE: ../../../third_party/dart/sdk/lib/core/errors.dart +FILE: ../../../third_party/dart/sdk/lib/core/exceptions.dart +FILE: ../../../third_party/dart/sdk/lib/core/expando.dart +FILE: ../../../third_party/dart/sdk/lib/core/identical.dart +FILE: ../../../third_party/dart/sdk/lib/core/int.dart +FILE: ../../../third_party/dart/sdk/lib/core/invocation.dart +FILE: ../../../third_party/dart/sdk/lib/core/iterator.dart +FILE: ../../../third_party/dart/sdk/lib/core/list.dart +FILE: ../../../third_party/dart/sdk/lib/core/num.dart +FILE: ../../../third_party/dart/sdk/lib/core/object.dart +FILE: ../../../third_party/dart/sdk/lib/core/print.dart +FILE: ../../../third_party/dart/sdk/lib/core/regexp.dart +FILE: ../../../third_party/dart/sdk/lib/core/string.dart +FILE: ../../../third_party/dart/sdk/lib/core/type.dart +FILE: ../../../third_party/dart/sdk/lib/core/uri.dart +FILE: ../../../third_party/dart/sdk/lib/html/dart2js/html_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/html/dart2js/html_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/html/dartium/nativewrappers.dart +FILE: ../../../third_party/dart/sdk/lib/html/html_common/conversions.dart +FILE: ../../../third_party/dart/sdk/lib/html/html_common/css_class_set.dart +FILE: ../../../third_party/dart/sdk/lib/html/html_common/html_common_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/html/html_common/metadata.dart +FILE: ../../../third_party/dart/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/internal/async_cast.dart +FILE: ../../../third_party/dart/sdk/lib/internal/cast.dart +FILE: ../../../third_party/dart/sdk/lib/internal/internal.dart +FILE: ../../../third_party/dart/sdk/lib/io/common.dart +FILE: ../../../third_party/dart/sdk/lib/io/directory.dart +FILE: ../../../third_party/dart/sdk/lib/io/directory_impl.dart +FILE: ../../../third_party/dart/sdk/lib/io/eventhandler.dart +FILE: ../../../third_party/dart/sdk/lib/io/io.dart +FILE: ../../../third_party/dart/sdk/lib/io/platform.dart +FILE: ../../../third_party/dart/sdk/lib/io/platform_impl.dart +FILE: ../../../third_party/dart/sdk/lib/io/secure_server_socket.dart +FILE: ../../../third_party/dart/sdk/lib/isolate/isolate.dart +FILE: ../../../third_party/dart/sdk/lib/math/math.dart +FILE: ../../../third_party/dart/sdk/lib/math/random.dart +FILE: ../../../third_party/dart/sdk/lib/svg/dart2js/svg_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/svg/dart2js/svg_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/svg/dart2js/svg_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/svg/dart2js/svg_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/svg/dart2js/svg_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/web_audio/dart2js/web_audio_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/web_audio/dart2js/web_audio_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/web_audio/dart2js/web_audio_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/web_audio/dart2js/web_audio_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/web_sql/dart2js/web_sql_dart2js.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: dart +ORIGIN: ../../../third_party/dart/runtime/bin/cli.cc + ../../../third_party/dart/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/runtime/bin/cli.cc +FILE: ../../../third_party/dart/runtime/bin/cli_patch.dart +FILE: ../../../third_party/dart/runtime/bin/dfe.cc +FILE: ../../../third_party/dart/runtime/bin/dfe.h +FILE: ../../../third_party/dart/runtime/bin/error_exit.cc +FILE: ../../../third_party/dart/runtime/bin/error_exit.h +FILE: ../../../third_party/dart/runtime/bin/gzip.cc +FILE: ../../../third_party/dart/runtime/bin/gzip.h +FILE: ../../../third_party/dart/runtime/bin/isolate_data.cc +FILE: ../../../third_party/dart/runtime/bin/main_options.cc +FILE: ../../../third_party/dart/runtime/bin/main_options.h +FILE: ../../../third_party/dart/runtime/bin/namespace.cc +FILE: ../../../third_party/dart/runtime/bin/namespace.h +FILE: ../../../third_party/dart/runtime/bin/namespace_android.cc +FILE: ../../../third_party/dart/runtime/bin/namespace_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/namespace_linux.cc +FILE: ../../../third_party/dart/runtime/bin/namespace_macos.cc +FILE: ../../../third_party/dart/runtime/bin/namespace_patch.dart +FILE: ../../../third_party/dart/runtime/bin/namespace_win.cc +FILE: ../../../third_party/dart/runtime/bin/options.cc +FILE: ../../../third_party/dart/runtime/bin/options.h +FILE: ../../../third_party/dart/runtime/bin/secure_socket_filter.cc +FILE: ../../../third_party/dart/runtime/bin/secure_socket_filter.h +FILE: ../../../third_party/dart/runtime/bin/secure_socket_utils.cc +FILE: ../../../third_party/dart/runtime/bin/secure_socket_utils.h +FILE: ../../../third_party/dart/runtime/bin/security_context.cc +FILE: ../../../third_party/dart/runtime/bin/security_context.h +FILE: ../../../third_party/dart/runtime/bin/security_context_android.cc +FILE: ../../../third_party/dart/runtime/bin/security_context_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/security_context_linux.cc +FILE: ../../../third_party/dart/runtime/bin/security_context_macos.cc +FILE: ../../../third_party/dart/runtime/bin/security_context_win.cc +FILE: ../../../third_party/dart/runtime/bin/snapshot_utils.cc +FILE: ../../../third_party/dart/runtime/bin/snapshot_utils.h +FILE: ../../../third_party/dart/runtime/bin/socket_base.cc +FILE: ../../../third_party/dart/runtime/bin/socket_base.h +FILE: ../../../third_party/dart/runtime/bin/sync_socket.cc +FILE: ../../../third_party/dart/runtime/bin/sync_socket.h +FILE: ../../../third_party/dart/runtime/bin/sync_socket_android.cc +FILE: ../../../third_party/dart/runtime/bin/sync_socket_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/sync_socket_linux.cc +FILE: ../../../third_party/dart/runtime/bin/sync_socket_macos.cc +FILE: ../../../third_party/dart/runtime/bin/sync_socket_patch.dart +FILE: ../../../third_party/dart/runtime/bin/sync_socket_win.cc +FILE: ../../../third_party/dart/runtime/lib/async.cc +FILE: ../../../third_party/dart/runtime/lib/bigint_patch.dart +FILE: ../../../third_party/dart/runtime/lib/class_id_fasta.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/containers/search_bar.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/memory/allocations.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/memory/dashboard.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/memory/graph.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/memory/profile.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/memory/snapshot.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/reload.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/singletargetcache_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/singletargetcache_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/subtypetestcache_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/subtypetestcache_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/timeline/dashboard.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/unlinkedcall_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/unlinkedcall_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/service.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/single_target_cache.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/subtype_test_cache.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/timeline.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/unlinked_call.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/single_target_cache.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/subtype_test_cache.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/timeline.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/unlinked_call.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/vm.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/single_target_cache.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/subtype_test_cache.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/timeline.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/unlinked_call.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/vm.dart +FILE: ../../../third_party/dart/runtime/platform/allocation.h +FILE: ../../../third_party/dart/runtime/platform/growable_array.h +FILE: ../../../third_party/dart/runtime/vm/compilation_trace.cc +FILE: ../../../third_party/dart/runtime/vm/compilation_trace.h +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/locations_helpers.h +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/locations_helpers_arm.h +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/locations_helpers_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/call_specializer.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/call_specializer.h +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_binary_flowgraph.h +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/prologue_builder.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/prologue_builder.h +FILE: ../../../third_party/dart/runtime/vm/compiler/jit/jit_call_specializer.h +FILE: ../../../third_party/dart/runtime/vm/constants_x86.h +FILE: ../../../third_party/dart/runtime/vm/debugger_api_impl_test.h +FILE: ../../../third_party/dart/runtime/vm/dwarf.cc +FILE: ../../../third_party/dart/runtime/vm/dwarf.h +FILE: ../../../third_party/dart/runtime/vm/fixed_cache.h +FILE: ../../../third_party/dart/runtime/vm/fixed_cache_test.cc +FILE: ../../../third_party/dart/runtime/vm/gdb_helpers.cc +FILE: ../../../third_party/dart/runtime/vm/heap/compactor.cc +FILE: ../../../third_party/dart/runtime/vm/heap/compactor.h +FILE: ../../../third_party/dart/runtime/vm/image_snapshot.cc +FILE: ../../../third_party/dart/runtime/vm/image_snapshot.h +FILE: ../../../third_party/dart/runtime/vm/json_writer.cc +FILE: ../../../third_party/dart/runtime/vm/json_writer.h +FILE: ../../../third_party/dart/runtime/vm/kernel_binary.h +FILE: ../../../third_party/dart/runtime/vm/malloc_hooks.h +FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_arm.cc +FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_arm64.cc +FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_ia32.cc +FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_jemalloc.cc +FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_tcmalloc.cc +FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_test.cc +FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_unsupported.cc +FILE: ../../../third_party/dart/runtime/vm/malloc_hooks_x64.cc +FILE: ../../../third_party/dart/runtime/vm/mixin_test.cc +FILE: ../../../third_party/dart/runtime/vm/stack_trace.cc +FILE: ../../../third_party/dart/runtime/vm/stack_trace.h +FILE: ../../../third_party/dart/runtime/vm/timeline_android.cc +FILE: ../../../third_party/dart/runtime/vm/timeline_fuchsia.cc +FILE: ../../../third_party/dart/runtime/vm/timeline_linux.cc +FILE: ../../../third_party/dart/runtime/vm/zone_text_buffer.cc +FILE: ../../../third_party/dart/runtime/vm/zone_text_buffer.h +FILE: ../../../third_party/dart/sdk/lib/_http/overrides.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/cli_patch.dart +FILE: ../../../third_party/dart/sdk/lib/cli/cli.dart +FILE: ../../../third_party/dart/sdk/lib/cli/wait_for.dart +FILE: ../../../third_party/dart/sdk/lib/core/bigint.dart +FILE: ../../../third_party/dart/sdk/lib/internal/linked_list.dart +FILE: ../../../third_party/dart/sdk/lib/internal/patch.dart +FILE: ../../../third_party/dart/sdk/lib/io/embedder_config.dart +FILE: ../../../third_party/dart/sdk/lib/io/namespace_impl.dart +FILE: ../../../third_party/dart/sdk/lib/io/overrides.dart +FILE: ../../../third_party/dart/sdk/lib/io/sync_socket.dart +FILE: ../../../third_party/dart/sdk/lib/vmservice/named_lookup.dart +FILE: ../../../third_party/dart/utils/bazel/kernel_worker.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: dart +ORIGIN: ../../../third_party/dart/runtime/bin/console.h + ../../../third_party/dart/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/runtime/bin/console.h +FILE: ../../../third_party/dart/runtime/bin/console_posix.cc +FILE: ../../../third_party/dart/runtime/bin/console_win.cc +---------------------------------------------------------------------------------------------------- +Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: dart +ORIGIN: ../../../third_party/dart/runtime/bin/crypto_fuchsia.cc + ../../../third_party/dart/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/runtime/bin/crypto_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/crypto_test.cc +FILE: ../../../third_party/dart/runtime/bin/directory_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/directory_test.cc +FILE: ../../../third_party/dart/runtime/bin/eventhandler_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/eventhandler_fuchsia.h +FILE: ../../../third_party/dart/runtime/bin/extensions_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/file_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/file_support.cc +FILE: ../../../third_party/dart/runtime/bin/file_system_watcher_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/loader.cc +FILE: ../../../third_party/dart/runtime/bin/loader.h +FILE: ../../../third_party/dart/runtime/bin/log_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/platform_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/process_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/reference_counting.h +FILE: ../../../third_party/dart/runtime/bin/root_certificates_unsupported.cc +FILE: ../../../third_party/dart/runtime/bin/socket_base_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/socket_base_fuchsia.h +FILE: ../../../third_party/dart/runtime/bin/socket_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/stdio_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/thread_fuchsia.cc +FILE: ../../../third_party/dart/runtime/bin/thread_fuchsia.h +FILE: ../../../third_party/dart/runtime/bin/utils_fuchsia.cc +FILE: ../../../third_party/dart/runtime/lib/stacktrace.h +FILE: ../../../third_party/dart/runtime/observatory/lib/event.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/models.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/repositories.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/app/notification.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/class_allocation_profile.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/containers/virtual_collection.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/containers/virtual_tree.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/error_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/general_error.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/nav_bar.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/nav_menu.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/rendering_queue.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/rendering_scheduler.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/tag.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/uris.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/inbound_references.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate/counter_chart.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate/location.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate/run_state.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate/shared_summary.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate/summary.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/metric/details.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/metric/graph.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/class_menu.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/isolate_menu.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/library_menu.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/menu_item.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/notify.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/notify_event.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/notify_exception.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/refresh.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/top_menu.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/nav/vm_menu.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/retaining_path.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/source_link.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/strongly_reachable_instances.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/top_retaining_instances.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/vm_connect_target.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/heap_snapshot/heap_snapshot.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/exceptions.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/allocation_profile.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/breakpoint.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/class.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/code.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/context.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/error.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/event.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/extension_data.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/field.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/flag.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/frame.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/function.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/guarded.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/heap_snapshot.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/heap_space.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/icdata.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/inbound_references.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/instance.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/isolate.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/library.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/local_var_descriptors.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/map_association.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/megamorphiccache.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/metric.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/notification.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/object.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/objectpool.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/objectstore.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/pc_descriptors.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/persistent_handles.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/ports.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/retaining_path.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/sample_profile.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/script.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/sentinel.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/source_location.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/target.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/thread.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/timeline_event.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/token_stream.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/type_arguments.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/unknown.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/vm.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/objects/zone.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/allocation_profile.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/breakpoint.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/class.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/context.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/editor.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/eval.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/event.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/field.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/flag.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/function.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/heap_snapshot.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/icdata.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/inbound_references.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/instance.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/isolate.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/library.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/megamorphiccache.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/metric.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/notification.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/object.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/objectpool.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/objectstore.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/persistent_handles.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/ports.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/reachable_size.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/retained_size.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/retaining_path.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/sample_profile.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/script.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/strongly_reachable_instances.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/target.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/top_retaining_instances.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/models/repositories/type_arguments.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/allocation_profile.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/breakpoint.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/class.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/context.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/editor.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/eval.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/event.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/field.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/flag.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/function.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/heap_snapshot.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/icdata.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/inbound_references.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/instance.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/isolate.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/library.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/megamorphiccache.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/metric.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/notification.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/object.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/objectpool.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/objectstore.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/persistent_handles.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/ports.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/reachable_size.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/retained_size.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/retaining_path.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/sample_profile.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/script.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/settings.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/strongly_reachable_instances.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/target.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/top_retaining_instances.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/repositories/type_arguments.dart +FILE: ../../../third_party/dart/runtime/observatory/web/timeline_message_handler.js +FILE: ../../../third_party/dart/runtime/platform/atomic_fuchsia.h +FILE: ../../../third_party/dart/runtime/platform/utils_fuchsia.cc +FILE: ../../../third_party/dart/runtime/platform/utils_fuchsia.h +FILE: ../../../third_party/dart/runtime/vm/clustered_snapshot.cc +FILE: ../../../third_party/dart/runtime/vm/clustered_snapshot.h +FILE: ../../../third_party/dart/runtime/vm/code_patcher_dbc.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_dbc.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_dbc.h +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_dbc_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_dbc.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/branch_optimizer.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/branch_optimizer.h +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_dbc.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_dbc.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/redundancy_elimination.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/redundancy_elimination.h +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/flow_graph_builder_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_binary_flowgraph.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_to_il.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_to_il.h +FILE: ../../../third_party/dart/runtime/vm/compiler/intrinsifier_dbc.cc +FILE: ../../../third_party/dart/runtime/vm/constants_dbc.h +FILE: ../../../third_party/dart/runtime/vm/cpu_dbc.cc +FILE: ../../../third_party/dart/runtime/vm/cpu_dbc.h +FILE: ../../../third_party/dart/runtime/vm/cpuinfo_fuchsia.cc +FILE: ../../../third_party/dart/runtime/vm/dart_api_state.cc +FILE: ../../../third_party/dart/runtime/vm/debugger_dbc.cc +FILE: ../../../third_party/dart/runtime/vm/heap/become.cc +FILE: ../../../third_party/dart/runtime/vm/heap/become.h +FILE: ../../../third_party/dart/runtime/vm/heap/safepoint.cc +FILE: ../../../third_party/dart/runtime/vm/heap/safepoint.h +FILE: ../../../third_party/dart/runtime/vm/instructions_dbc.cc +FILE: ../../../third_party/dart/runtime/vm/instructions_dbc.h +FILE: ../../../third_party/dart/runtime/vm/isolate_reload.cc +FILE: ../../../third_party/dart/runtime/vm/isolate_reload.h +FILE: ../../../third_party/dart/runtime/vm/isolate_reload_test.cc +FILE: ../../../third_party/dart/runtime/vm/kernel.cc +FILE: ../../../third_party/dart/runtime/vm/kernel.h +FILE: ../../../third_party/dart/runtime/vm/kernel_binary.cc +FILE: ../../../third_party/dart/runtime/vm/kernel_isolate.cc +FILE: ../../../third_party/dart/runtime/vm/kernel_isolate.h +FILE: ../../../third_party/dart/runtime/vm/kernel_loader.cc +FILE: ../../../third_party/dart/runtime/vm/kernel_loader.h +FILE: ../../../third_party/dart/runtime/vm/lockers.cc +FILE: ../../../third_party/dart/runtime/vm/native_symbol_fuchsia.cc +FILE: ../../../third_party/dart/runtime/vm/object_dbc_test.cc +FILE: ../../../third_party/dart/runtime/vm/object_reload.cc +FILE: ../../../third_party/dart/runtime/vm/object_service.cc +FILE: ../../../third_party/dart/runtime/vm/os_fuchsia.cc +FILE: ../../../third_party/dart/runtime/vm/os_thread_fuchsia.cc +FILE: ../../../third_party/dart/runtime/vm/os_thread_fuchsia.h +FILE: ../../../third_party/dart/runtime/vm/runtime_entry_dbc.cc +FILE: ../../../third_party/dart/runtime/vm/signal_handler_fuchsia.cc +FILE: ../../../third_party/dart/runtime/vm/simulator_dbc.cc +FILE: ../../../third_party/dart/runtime/vm/simulator_dbc.h +FILE: ../../../third_party/dart/runtime/vm/stack_frame_dbc.h +FILE: ../../../third_party/dart/runtime/vm/stub_code_dbc.cc +FILE: ../../../third_party/dart/runtime/vm/thread_interrupter_fuchsia.cc +FILE: ../../../third_party/dart/runtime/vm/token_position.cc +FILE: ../../../third_party/dart/runtime/vm/token_position.h +FILE: ../../../third_party/dart/runtime/vm/type_table.h +FILE: ../../../third_party/dart/runtime/vm/uri.cc +FILE: ../../../third_party/dart/runtime/vm/uri.h +FILE: ../../../third_party/dart/runtime/vm/uri_test.cc +FILE: ../../../third_party/dart/runtime/vm/virtual_memory_fuchsia.cc +FILE: ../../../third_party/dart/sdk/lib/developer/service.dart +FILE: ../../../third_party/dart/sdk/lib/js_util/dart2js/js_util_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/vmservice/devfs.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: dart +ORIGIN: ../../../third_party/dart/runtime/bin/dart_embedder_api_impl.cc + ../../../third_party/dart/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/runtime/bin/dart_embedder_api_impl.cc +FILE: ../../../third_party/dart/runtime/bin/typed_data_utils.cc +FILE: ../../../third_party/dart/runtime/bin/typed_data_utils.h +FILE: ../../../third_party/dart/runtime/include/dart_embedder_api.h +FILE: ../../../third_party/dart/runtime/vm/base64.cc +FILE: ../../../third_party/dart/runtime/vm/base64.h +FILE: ../../../third_party/dart/runtime/vm/base64_test.cc +FILE: ../../../third_party/dart/runtime/vm/code_patcher_kbc.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_kbc.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_kbc.h +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/code_statistics.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/code_statistics.h +FILE: ../../../third_party/dart/runtime/vm/compiler/compiler_pass.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/compiler_pass.h +FILE: ../../../third_party/dart/runtime/vm/compiler/compiler_state.h +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/base_flow_graph_builder.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/base_flow_graph_builder.h +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/bytecode_reader.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/bytecode_reader.h +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/constant_evaluator.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/constant_evaluator.h +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_fingerprints.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_fingerprints.h +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_translation_helper.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/kernel_translation_helper.h +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/scope_builder.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/frontend/scope_builder.h +FILE: ../../../third_party/dart/runtime/vm/constants.h +FILE: ../../../third_party/dart/runtime/vm/constants_kbc.h +FILE: ../../../third_party/dart/runtime/vm/datastream.cc +FILE: ../../../third_party/dart/runtime/vm/finalizable_data.h +FILE: ../../../third_party/dart/runtime/vm/hash.h +FILE: ../../../third_party/dart/runtime/vm/instructions_kbc.cc +FILE: ../../../third_party/dart/runtime/vm/instructions_kbc.h +FILE: ../../../third_party/dart/runtime/vm/interpreter.cc +FILE: ../../../third_party/dart/runtime/vm/interpreter.h +FILE: ../../../third_party/dart/runtime/vm/interpreter_unsupported.cc +FILE: ../../../third_party/dart/runtime/vm/stack_frame_kbc.h +FILE: ../../../third_party/dart/runtime/vm/type_testing_stubs.cc +FILE: ../../../third_party/dart/runtime/vm/type_testing_stubs.h +FILE: ../../../third_party/dart/sdk/lib/js/_js.dart +FILE: ../../../third_party/dart/sdk/lib/js/_js_client.dart +FILE: ../../../third_party/dart/sdk/lib/js/_js_server.dart +FILE: ../../../third_party/dart/sdk/lib/typed_data/unmodifiable_typed_data.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: dart +ORIGIN: ../../../third_party/dart/runtime/bin/process_test.cc + ../../../third_party/dart/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/runtime/bin/process_test.cc +FILE: ../../../third_party/dart/runtime/bin/snapshot_empty.cc +FILE: ../../../third_party/dart/runtime/bin/snapshot_in.cc +FILE: ../../../third_party/dart/runtime/include/dart_tools_api.h +FILE: ../../../third_party/dart/runtime/lib/double.cc +FILE: ../../../third_party/dart/runtime/lib/math.cc +FILE: ../../../third_party/dart/runtime/lib/mirrors.h +FILE: ../../../third_party/dart/runtime/lib/object.cc +FILE: ../../../third_party/dart/runtime/lib/string.cc +FILE: ../../../third_party/dart/runtime/platform/c99_support_win.h +FILE: ../../../third_party/dart/runtime/platform/inttypes_support_win.h +FILE: ../../../third_party/dart/runtime/vm/ast.cc +FILE: ../../../third_party/dart/runtime/vm/ast_printer.cc +FILE: ../../../third_party/dart/runtime/vm/ast_printer.h +FILE: ../../../third_party/dart/runtime/vm/bitfield.h +FILE: ../../../third_party/dart/runtime/vm/code_patcher_ia32_test.cc +FILE: ../../../third_party/dart/runtime/vm/code_patcher_x64_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler.h +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler_stats.cc +FILE: ../../../third_party/dart/runtime/vm/compiler_stats.h +FILE: ../../../third_party/dart/runtime/vm/cpu_ia32.cc +FILE: ../../../third_party/dart/runtime/vm/custom_isolate_test.cc +FILE: ../../../third_party/dart/runtime/vm/dart.h +FILE: ../../../third_party/dart/runtime/vm/dart_api_impl.h +FILE: ../../../third_party/dart/runtime/vm/dart_entry.cc +FILE: ../../../third_party/dart/runtime/vm/dart_entry.h +FILE: ../../../third_party/dart/runtime/vm/debugger_arm.cc +FILE: ../../../third_party/dart/runtime/vm/debugger_ia32.cc +FILE: ../../../third_party/dart/runtime/vm/debugger_x64.cc +FILE: ../../../third_party/dart/runtime/vm/double_conversion.cc +FILE: ../../../third_party/dart/runtime/vm/double_conversion.h +FILE: ../../../third_party/dart/runtime/vm/exceptions.cc +FILE: ../../../third_party/dart/runtime/vm/exceptions.h +FILE: ../../../third_party/dart/runtime/vm/handles.h +FILE: ../../../third_party/dart/runtime/vm/heap/freelist.cc +FILE: ../../../third_party/dart/runtime/vm/heap/marker.cc +FILE: ../../../third_party/dart/runtime/vm/heap/marker.h +FILE: ../../../third_party/dart/runtime/vm/heap/pages.h +FILE: ../../../third_party/dart/runtime/vm/heap/scavenger.cc +FILE: ../../../third_party/dart/runtime/vm/heap/sweeper.cc +FILE: ../../../third_party/dart/runtime/vm/heap/sweeper.h +FILE: ../../../third_party/dart/runtime/vm/heap/verifier.h +FILE: ../../../third_party/dart/runtime/vm/longjump.cc +FILE: ../../../third_party/dart/runtime/vm/longjump.h +FILE: ../../../third_party/dart/runtime/vm/longjump_test.cc +FILE: ../../../third_party/dart/runtime/vm/memory_region.cc +FILE: ../../../third_party/dart/runtime/vm/message.cc +FILE: ../../../third_party/dart/runtime/vm/message.h +FILE: ../../../third_party/dart/runtime/vm/message_handler.cc +FILE: ../../../third_party/dart/runtime/vm/message_handler.h +FILE: ../../../third_party/dart/runtime/vm/native_entry.cc +FILE: ../../../third_party/dart/runtime/vm/native_entry.h +FILE: ../../../third_party/dart/runtime/vm/native_entry_test.cc +FILE: ../../../third_party/dart/runtime/vm/native_entry_test.h +FILE: ../../../third_party/dart/runtime/vm/object_store_test.cc +FILE: ../../../third_party/dart/runtime/vm/os.h +FILE: ../../../third_party/dart/runtime/vm/parser_test.cc +FILE: ../../../third_party/dart/runtime/vm/port.h +FILE: ../../../third_party/dart/runtime/vm/resolver.cc +FILE: ../../../third_party/dart/runtime/vm/resolver.h +FILE: ../../../third_party/dart/runtime/vm/runtime_entry.cc +FILE: ../../../third_party/dart/runtime/vm/runtime_entry.h +FILE: ../../../third_party/dart/runtime/vm/runtime_entry_arm.cc +FILE: ../../../third_party/dart/runtime/vm/runtime_entry_ia32.cc +FILE: ../../../third_party/dart/runtime/vm/runtime_entry_list.h +FILE: ../../../third_party/dart/runtime/vm/runtime_entry_x64.cc +FILE: ../../../third_party/dart/runtime/vm/scanner.h +FILE: ../../../third_party/dart/runtime/vm/stack_frame.h +FILE: ../../../third_party/dart/runtime/vm/stub_code.h +FILE: ../../../third_party/dart/runtime/vm/stub_code_ia32_test.cc +FILE: ../../../third_party/dart/runtime/vm/stub_code_x64_test.cc +FILE: ../../../third_party/dart/runtime/vm/timer.cc +FILE: ../../../third_party/dart/runtime/vm/timer.h +FILE: ../../../third_party/dart/runtime/vm/token.cc +FILE: ../../../third_party/dart/runtime/vm/unicode_data.cc +FILE: ../../../third_party/dart/runtime/vm/unicode_test.cc +FILE: ../../../third_party/dart/runtime/vm/unit_test.h +FILE: ../../../third_party/dart/runtime/vm/visitor.h +FILE: ../../../third_party/dart/sdk/lib/collection/queue.dart +FILE: ../../../third_party/dart/sdk/lib/core/comparable.dart +FILE: ../../../third_party/dart/sdk/lib/core/date_time.dart +FILE: ../../../third_party/dart/sdk/lib/core/duration.dart +FILE: ../../../third_party/dart/sdk/lib/core/function.dart +FILE: ../../../third_party/dart/sdk/lib/core/iterable.dart +FILE: ../../../third_party/dart/sdk/lib/core/map.dart +FILE: ../../../third_party/dart/sdk/lib/core/pattern.dart +FILE: ../../../third_party/dart/sdk/lib/core/set.dart +FILE: ../../../third_party/dart/sdk/lib/core/stopwatch.dart +FILE: ../../../third_party/dart/sdk/lib/core/string_buffer.dart +FILE: ../../../third_party/dart/sdk/lib/html/html_common/device.dart +FILE: ../../../third_party/dart/sdk/lib/html/html_common/filtered_element_list.dart +FILE: ../../../third_party/dart/sdk/lib/html/html_common/lists.dart +FILE: ../../../third_party/dart/sdk/lib/internal/iterable.dart +FILE: ../../../third_party/dart/sdk/lib/internal/sort.dart +FILE: ../../../third_party/dart/utils/peg/pegparser.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: dart +ORIGIN: ../../../third_party/dart/runtime/bin/vmservice/loader.dart + ../../../third_party/dart/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/runtime/bin/address_sanitizer.cc +FILE: ../../../third_party/dart/runtime/bin/builtin_common.cc +FILE: ../../../third_party/dart/runtime/bin/embedded_dart_io.cc +FILE: ../../../third_party/dart/runtime/bin/embedded_dart_io.h +FILE: ../../../third_party/dart/runtime/bin/observatory_assets_empty.cc +FILE: ../../../third_party/dart/runtime/bin/vmservice/loader.dart +FILE: ../../../third_party/dart/runtime/lib/async_patch.dart +FILE: ../../../third_party/dart/runtime/lib/compact_hash.dart +FILE: ../../../third_party/dart/runtime/lib/developer.cc +FILE: ../../../third_party/dart/runtime/lib/developer.dart +FILE: ../../../third_party/dart/runtime/lib/timeline.cc +FILE: ../../../third_party/dart/runtime/lib/timeline.dart +FILE: ../../../third_party/dart/runtime/lib/vmservice.cc +FILE: ../../../third_party/dart/runtime/observatory/lib/allocation_profile.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/cli.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/debugger.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/heap_snapshot.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/sample_profile.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/allocation_profile/allocation_profile.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/app/analytics.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/cli/command.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/debugger/debugger.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/debugger/debugger_location.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/heap_snapshot.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/logging.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/logging_list.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/megamorphiccache_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/objectpool_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/persistent_handles.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/ports.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/timeline_page.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/view_footer.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/sample_profile/sample_profile.dart +FILE: ../../../third_party/dart/runtime/observatory/web/timeline.js +FILE: ../../../third_party/dart/runtime/vm/atomic_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/aot/precompiler.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/aot/precompiler.h +FILE: ../../../third_party/dart/runtime/vm/log.cc +FILE: ../../../third_party/dart/runtime/vm/log.h +FILE: ../../../third_party/dart/runtime/vm/log_test.cc +FILE: ../../../third_party/dart/runtime/vm/os_thread.cc +FILE: ../../../third_party/dart/runtime/vm/profiler_service.cc +FILE: ../../../third_party/dart/runtime/vm/profiler_service.h +FILE: ../../../third_party/dart/runtime/vm/program_visitor.cc +FILE: ../../../third_party/dart/runtime/vm/program_visitor.h +FILE: ../../../third_party/dart/runtime/vm/regexp_assembler_bytecode.cc +FILE: ../../../third_party/dart/runtime/vm/regexp_assembler_bytecode.h +FILE: ../../../third_party/dart/runtime/vm/regexp_assembler_bytecode_inl.h +FILE: ../../../third_party/dart/runtime/vm/regexp_bytecodes.h +FILE: ../../../third_party/dart/runtime/vm/regexp_interpreter.cc +FILE: ../../../third_party/dart/runtime/vm/regexp_interpreter.h +FILE: ../../../third_party/dart/runtime/vm/scope_timer.h +FILE: ../../../third_party/dart/runtime/vm/service_event.cc +FILE: ../../../third_party/dart/runtime/vm/service_event.h +FILE: ../../../third_party/dart/runtime/vm/service_isolate.cc +FILE: ../../../third_party/dart/runtime/vm/source_report.cc +FILE: ../../../third_party/dart/runtime/vm/source_report.h +FILE: ../../../third_party/dart/runtime/vm/source_report_test.cc +FILE: ../../../third_party/dart/runtime/vm/thread.cc +FILE: ../../../third_party/dart/runtime/vm/thread.h +FILE: ../../../third_party/dart/runtime/vm/thread_barrier.h +FILE: ../../../third_party/dart/runtime/vm/thread_barrier_test.cc +FILE: ../../../third_party/dart/runtime/vm/thread_registry.cc +FILE: ../../../third_party/dart/runtime/vm/thread_registry.h +FILE: ../../../third_party/dart/runtime/vm/timeline.cc +FILE: ../../../third_party/dart/runtime/vm/timeline.h +FILE: ../../../third_party/dart/runtime/vm/timeline_analysis.cc +FILE: ../../../third_party/dart/runtime/vm/timeline_analysis.h +FILE: ../../../third_party/dart/runtime/vm/timeline_test.cc +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/developer_patch.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/preambles/d8.js +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/preambles/jsshell.js +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/shared/async_await_error_codes.dart +FILE: ../../../third_party/dart/sdk/lib/convert/base64.dart +FILE: ../../../third_party/dart/sdk/lib/dart_client.platform +FILE: ../../../third_party/dart/sdk/lib/dart_server.platform +FILE: ../../../third_party/dart/sdk/lib/dart_shared.platform +FILE: ../../../third_party/dart/sdk/lib/developer/developer.dart +FILE: ../../../third_party/dart/sdk/lib/developer/extension.dart +FILE: ../../../third_party/dart/sdk/lib/developer/timeline.dart +FILE: ../../../third_party/dart/sdk/lib/io/io_resource_info.dart +FILE: ../../../third_party/dart/sdk/lib/io/security_context.dart +FILE: ../../../third_party/dart/sdk/lib/vmservice/asset.dart +FILE: ../../../third_party/dart/sdk/lib/vmservice/vmservice.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: dart +ORIGIN: ../../../third_party/dart/runtime/bin/vmservice/server.dart + ../../../third_party/dart/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/WATCHLISTS +FILE: ../../../third_party/dart/runtime/bin/eventhandler_win.cc +FILE: ../../../third_party/dart/runtime/bin/file.cc +FILE: ../../../third_party/dart/runtime/bin/file.h +FILE: ../../../third_party/dart/runtime/bin/file_system_entity_patch.dart +FILE: ../../../third_party/dart/runtime/bin/file_system_watcher.cc +FILE: ../../../third_party/dart/runtime/bin/file_system_watcher.h +FILE: ../../../third_party/dart/runtime/bin/file_system_watcher_android.cc +FILE: ../../../third_party/dart/runtime/bin/file_system_watcher_linux.cc +FILE: ../../../third_party/dart/runtime/bin/file_system_watcher_macos.cc +FILE: ../../../third_party/dart/runtime/bin/file_system_watcher_win.cc +FILE: ../../../third_party/dart/runtime/bin/filter.cc +FILE: ../../../third_party/dart/runtime/bin/filter.h +FILE: ../../../third_party/dart/runtime/bin/filter_patch.dart +FILE: ../../../third_party/dart/runtime/bin/gen_snapshot.cc +FILE: ../../../third_party/dart/runtime/bin/io_natives.cc +FILE: ../../../third_party/dart/runtime/bin/io_service.cc +FILE: ../../../third_party/dart/runtime/bin/io_service.h +FILE: ../../../third_party/dart/runtime/bin/io_service_no_ssl.cc +FILE: ../../../third_party/dart/runtime/bin/io_service_no_ssl.h +FILE: ../../../third_party/dart/runtime/bin/io_service_patch.dart +FILE: ../../../third_party/dart/runtime/bin/process.cc +FILE: ../../../third_party/dart/runtime/bin/process_patch.dart +FILE: ../../../third_party/dart/runtime/bin/socket.cc +FILE: ../../../third_party/dart/runtime/bin/socket.h +FILE: ../../../third_party/dart/runtime/bin/socket_base_linux.cc +FILE: ../../../third_party/dart/runtime/bin/socket_base_macos.cc +FILE: ../../../third_party/dart/runtime/bin/socket_base_win.cc +FILE: ../../../third_party/dart/runtime/bin/socket_linux.cc +FILE: ../../../third_party/dart/runtime/bin/socket_macos.cc +FILE: ../../../third_party/dart/runtime/bin/socket_patch.dart +FILE: ../../../third_party/dart/runtime/bin/socket_win.cc +FILE: ../../../third_party/dart/runtime/bin/stdio.cc +FILE: ../../../third_party/dart/runtime/bin/stdio.h +FILE: ../../../third_party/dart/runtime/bin/stdio_android.cc +FILE: ../../../third_party/dart/runtime/bin/stdio_linux.cc +FILE: ../../../third_party/dart/runtime/bin/stdio_macos.cc +FILE: ../../../third_party/dart/runtime/bin/stdio_patch.dart +FILE: ../../../third_party/dart/runtime/bin/stdio_win.cc +FILE: ../../../third_party/dart/runtime/bin/vmservice/server.dart +FILE: ../../../third_party/dart/runtime/bin/vmservice/vmservice_io.dart +FILE: ../../../third_party/dart/runtime/bin/vmservice_impl.cc +FILE: ../../../third_party/dart/runtime/bin/vmservice_impl.h +FILE: ../../../third_party/dart/runtime/include/dart_native_api.h +FILE: ../../../third_party/dart/runtime/lib/collection_patch.dart +FILE: ../../../third_party/dart/runtime/lib/core_patch.dart +FILE: ../../../third_party/dart/runtime/lib/deferred_load_patch.dart +FILE: ../../../third_party/dart/runtime/lib/function.dart +FILE: ../../../third_party/dart/runtime/lib/internal_patch.dart +FILE: ../../../third_party/dart/runtime/lib/invocation_mirror.h +FILE: ../../../third_party/dart/runtime/lib/libgen_in.cc +FILE: ../../../third_party/dart/runtime/lib/mirror_reference.dart +FILE: ../../../third_party/dart/runtime/lib/null_patch.dart +FILE: ../../../third_party/dart/runtime/lib/schedule_microtask_patch.dart +FILE: ../../../third_party/dart/runtime/lib/simd128.cc +FILE: ../../../third_party/dart/runtime/lib/stacktrace.cc +FILE: ../../../third_party/dart/runtime/lib/stacktrace.dart +FILE: ../../../third_party/dart/runtime/lib/symbol_patch.dart +FILE: ../../../third_party/dart/runtime/lib/timer_impl.dart +FILE: ../../../third_party/dart/runtime/lib/typed_data.cc +FILE: ../../../third_party/dart/runtime/lib/typed_data_patch.dart +FILE: ../../../third_party/dart/runtime/lib/uri.cc +FILE: ../../../third_party/dart/runtime/lib/uri_patch.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/app/application.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/app/location_manager.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/class_instances.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/class_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/class_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/code_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/code_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/context_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/context_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/cpu_profile.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/cpu_profile/virtual_tree.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/cpu_profile_table.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/curly_block.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/error_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/eval_box.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/field_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/field_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/flag_list.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/function_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/function_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/heap_snapshot.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/helpers/any_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/icdata_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/icdata_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/instance_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/instance_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/json_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/library_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/library_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/local_var_descriptors_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/megamorphiccache_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/native_memory_profiler.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/object_common.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/object_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/objectpool_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/objectstore_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/observatory_application.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/pc_descriptors_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/sample_buffer_control.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/script_inset.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/script_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/script_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/sentinel_value.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/sentinel_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/source_inset.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/stack_trace_tree_config.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/token_stream_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/type_arguments_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/unknown_ref.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/vm_view.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/tracer.dart +FILE: ../../../third_party/dart/runtime/platform/atomic.h +FILE: ../../../third_party/dart/runtime/platform/atomic_android.h +FILE: ../../../third_party/dart/runtime/platform/atomic_linux.h +FILE: ../../../third_party/dart/runtime/platform/atomic_macos.h +FILE: ../../../third_party/dart/runtime/platform/atomic_win.h +FILE: ../../../third_party/dart/runtime/platform/signal_blocker.h +FILE: ../../../third_party/dart/runtime/vm/allocation.h +FILE: ../../../third_party/dart/runtime/vm/class_finalizer.cc +FILE: ../../../third_party/dart/runtime/vm/code_patcher_arm.cc +FILE: ../../../third_party/dart/runtime/vm/code_patcher_arm_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/aot/aot_call_specializer.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm.h +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm64_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_ia32.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_ia32.h +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_x64.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_x64.h +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_arm.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/block_scheduler.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/block_scheduler.h +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/constant_propagator.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph.h +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_arm.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_ia32.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_x64.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il.h +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_arm.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_ia32.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_x64.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/inliner.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/linearscan.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/linearscan.h +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/locations.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/locations.h +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/type_propagator.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/type_propagator.h +FILE: ../../../third_party/dart/runtime/vm/compiler/intrinsifier_arm.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/intrinsifier_ia32.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/intrinsifier_x64.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/jit/jit_call_specializer.cc +FILE: ../../../third_party/dart/runtime/vm/constants_arm.h +FILE: ../../../third_party/dart/runtime/vm/constants_ia32.h +FILE: ../../../third_party/dart/runtime/vm/constants_x64.h +FILE: ../../../third_party/dart/runtime/vm/dart.cc +FILE: ../../../third_party/dart/runtime/vm/dart_api_impl.cc +FILE: ../../../third_party/dart/runtime/vm/deferred_objects.cc +FILE: ../../../third_party/dart/runtime/vm/deferred_objects.h +FILE: ../../../third_party/dart/runtime/vm/deopt_instructions.cc +FILE: ../../../third_party/dart/runtime/vm/deopt_instructions.h +FILE: ../../../third_party/dart/runtime/vm/guard_field_test.cc +FILE: ../../../third_party/dart/runtime/vm/heap/weak_table.cc +FILE: ../../../third_party/dart/runtime/vm/heap/weak_table.h +FILE: ../../../third_party/dart/runtime/vm/instructions.h +FILE: ../../../third_party/dart/runtime/vm/instructions_arm.cc +FILE: ../../../third_party/dart/runtime/vm/instructions_arm.h +FILE: ../../../third_party/dart/runtime/vm/instructions_arm_test.cc +FILE: ../../../third_party/dart/runtime/vm/isolate.cc +FILE: ../../../third_party/dart/runtime/vm/isolate.h +FILE: ../../../third_party/dart/runtime/vm/json_stream.cc +FILE: ../../../third_party/dart/runtime/vm/json_stream.h +FILE: ../../../third_party/dart/runtime/vm/native_api_impl.cc +FILE: ../../../third_party/dart/runtime/vm/native_symbol.h +FILE: ../../../third_party/dart/runtime/vm/native_symbol_android.cc +FILE: ../../../third_party/dart/runtime/vm/native_symbol_linux.cc +FILE: ../../../third_party/dart/runtime/vm/native_symbol_macos.cc +FILE: ../../../third_party/dart/runtime/vm/native_symbol_win.cc +FILE: ../../../third_party/dart/runtime/vm/object_id_ring.cc +FILE: ../../../third_party/dart/runtime/vm/object_id_ring.h +FILE: ../../../third_party/dart/runtime/vm/object_id_ring_test.cc +FILE: ../../../third_party/dart/runtime/vm/object_store.cc +FILE: ../../../third_party/dart/runtime/vm/os_test.cc +FILE: ../../../third_party/dart/runtime/vm/profiler.cc +FILE: ../../../third_party/dart/runtime/vm/profiler.h +FILE: ../../../third_party/dart/runtime/vm/profiler_test.cc +FILE: ../../../third_party/dart/runtime/vm/random.cc +FILE: ../../../third_party/dart/runtime/vm/random.h +FILE: ../../../third_party/dart/runtime/vm/reusable_handles.h +FILE: ../../../third_party/dart/runtime/vm/service.cc +FILE: ../../../third_party/dart/runtime/vm/service.h +FILE: ../../../third_party/dart/runtime/vm/service_isolate.h +FILE: ../../../third_party/dart/runtime/vm/service_test.cc +FILE: ../../../third_party/dart/runtime/vm/signal_handler.h +FILE: ../../../third_party/dart/runtime/vm/signal_handler_android.cc +FILE: ../../../third_party/dart/runtime/vm/signal_handler_linux.cc +FILE: ../../../third_party/dart/runtime/vm/signal_handler_macos.cc +FILE: ../../../third_party/dart/runtime/vm/signal_handler_win.cc +FILE: ../../../third_party/dart/runtime/vm/simulator.h +FILE: ../../../third_party/dart/runtime/vm/simulator_arm.cc +FILE: ../../../third_party/dart/runtime/vm/simulator_arm.h +FILE: ../../../third_party/dart/runtime/vm/stack_frame_arm.h +FILE: ../../../third_party/dart/runtime/vm/stack_frame_ia32.h +FILE: ../../../third_party/dart/runtime/vm/stack_frame_x64.h +FILE: ../../../third_party/dart/runtime/vm/stub_code_arm.cc +FILE: ../../../third_party/dart/runtime/vm/stub_code_arm_test.cc +FILE: ../../../third_party/dart/runtime/vm/stub_code_ia32.cc +FILE: ../../../third_party/dart/runtime/vm/stub_code_x64.cc +FILE: ../../../third_party/dart/runtime/vm/tags.h +FILE: ../../../third_party/dart/runtime/vm/thread_interrupter.cc +FILE: ../../../third_party/dart/runtime/vm/thread_interrupter.h +FILE: ../../../third_party/dart/runtime/vm/thread_interrupter_android.cc +FILE: ../../../third_party/dart/runtime/vm/thread_interrupter_linux.cc +FILE: ../../../third_party/dart/runtime/vm/thread_interrupter_macos.cc +FILE: ../../../third_party/dart/runtime/vm/thread_interrupter_win.cc +FILE: ../../../third_party/dart/sdk/lib/_chrome/dart2js/chrome_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/_chrome/dart2js/chrome_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/_http/http.dart +FILE: ../../../third_party/dart/sdk/lib/_http/http_headers.dart +FILE: ../../../third_party/dart/sdk/lib/_http/http_impl.dart +FILE: ../../../third_party/dart/sdk/lib/_http/http_parser.dart +FILE: ../../../third_party/dart/sdk/lib/_http/http_session.dart +FILE: ../../../third_party/dart/sdk/lib/_http/websocket.dart +FILE: ../../../third_party/dart/sdk/lib/_http/websocket_impl.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/annotations.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/collection_patch.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/convert_patch.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/internal_patch.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/io_patch.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_helper.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_names.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_primitives.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/js_rti.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/native_typed_data.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/typed_data_patch.dart +FILE: ../../../third_party/dart/sdk/lib/async/deferred_load.dart +FILE: ../../../third_party/dart/sdk/lib/async/schedule_microtask.dart +FILE: ../../../third_party/dart/sdk/lib/async/stream.dart +FILE: ../../../third_party/dart/sdk/lib/async/stream_transformers.dart +FILE: ../../../third_party/dart/sdk/lib/async/zone.dart +FILE: ../../../third_party/dart/sdk/lib/collection/collections.dart +FILE: ../../../third_party/dart/sdk/lib/collection/hash_map.dart +FILE: ../../../third_party/dart/sdk/lib/collection/hash_set.dart +FILE: ../../../third_party/dart/sdk/lib/collection/linked_hash_map.dart +FILE: ../../../third_party/dart/sdk/lib/collection/linked_hash_set.dart +FILE: ../../../third_party/dart/sdk/lib/collection/linked_list.dart +FILE: ../../../third_party/dart/sdk/lib/collection/list.dart +FILE: ../../../third_party/dart/sdk/lib/convert/ascii.dart +FILE: ../../../third_party/dart/sdk/lib/convert/byte_conversion.dart +FILE: ../../../third_party/dart/sdk/lib/convert/chunked_conversion.dart +FILE: ../../../third_party/dart/sdk/lib/convert/codec.dart +FILE: ../../../third_party/dart/sdk/lib/convert/convert.dart +FILE: ../../../third_party/dart/sdk/lib/convert/converter.dart +FILE: ../../../third_party/dart/sdk/lib/convert/encoding.dart +FILE: ../../../third_party/dart/sdk/lib/convert/html_escape.dart +FILE: ../../../third_party/dart/sdk/lib/convert/json.dart +FILE: ../../../third_party/dart/sdk/lib/convert/latin1.dart +FILE: ../../../third_party/dart/sdk/lib/convert/line_splitter.dart +FILE: ../../../third_party/dart/sdk/lib/convert/string_conversion.dart +FILE: ../../../third_party/dart/sdk/lib/convert/utf.dart +FILE: ../../../third_party/dart/sdk/lib/core/annotations.dart +FILE: ../../../third_party/dart/sdk/lib/core/null.dart +FILE: ../../../third_party/dart/sdk/lib/core/stacktrace.dart +FILE: ../../../third_party/dart/sdk/lib/core/string_sink.dart +FILE: ../../../third_party/dart/sdk/lib/core/symbol.dart +FILE: ../../../third_party/dart/sdk/lib/internal/list.dart +FILE: ../../../third_party/dart/sdk/lib/internal/print.dart +FILE: ../../../third_party/dart/sdk/lib/internal/symbol.dart +FILE: ../../../third_party/dart/sdk/lib/io/bytes_builder.dart +FILE: ../../../third_party/dart/sdk/lib/io/data_transformer.dart +FILE: ../../../third_party/dart/sdk/lib/io/file.dart +FILE: ../../../third_party/dart/sdk/lib/io/file_impl.dart +FILE: ../../../third_party/dart/sdk/lib/io/file_system_entity.dart +FILE: ../../../third_party/dart/sdk/lib/io/io_service.dart +FILE: ../../../third_party/dart/sdk/lib/io/io_sink.dart +FILE: ../../../third_party/dart/sdk/lib/io/link.dart +FILE: ../../../third_party/dart/sdk/lib/io/secure_socket.dart +FILE: ../../../third_party/dart/sdk/lib/io/socket.dart +FILE: ../../../third_party/dart/sdk/lib/io/stdio.dart +FILE: ../../../third_party/dart/sdk/lib/io/string_transformer.dart +FILE: ../../../third_party/dart/sdk/lib/js/dart2js/js_dart2js.dart +FILE: ../../../third_party/dart/sdk/lib/math/jenkins_smi_hash.dart +FILE: ../../../third_party/dart/sdk/lib/math/point.dart +FILE: ../../../third_party/dart/sdk/lib/math/rectangle.dart +FILE: ../../../third_party/dart/sdk/lib/mirrors/mirrors.dart +FILE: ../../../third_party/dart/sdk/lib/typed_data/typed_data.dart +FILE: ../../../third_party/dart/sdk/lib/vmservice/client.dart +FILE: ../../../third_party/dart/sdk/lib/vmservice/constants.dart +FILE: ../../../third_party/dart/sdk/lib/vmservice/message.dart +FILE: ../../../third_party/dart/sdk/lib/vmservice/message_router.dart +FILE: ../../../third_party/dart/sdk/lib/vmservice/running_isolate.dart +FILE: ../../../third_party/dart/sdk/lib/vmservice/running_isolates.dart +FILE: ../../../third_party/dart/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart +FILE: ../../../third_party/dart/utils/compiler/create_snapshot_entry.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: dart +ORIGIN: ../../../third_party/dart/runtime/lib/bigint_patch.dart +TYPE: LicenseType.mit +FILE: ../../../third_party/dart/runtime/lib/bigint_patch.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2003-2005 Tom Wu +Copyright (c) 2012 Adam Singer (adam@solvr.io) +All Rights Reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, +EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY +WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. + +IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL, +INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF +THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +In addition, the following condition applies: + +All redistributions must retain an intact copy of this copyright notice +and disclaimer. +==================================================================================================== + +==================================================================================================== +LIBRARY: dart +ORIGIN: ../../../third_party/dart/runtime/lib/bigint_patch.dart + ../../../third_party/boringssl/src/LICENSE +TYPE: LicenseType.unknown +FILE: ../../../third_party/dart/runtime/lib/bigint_patch.dart +---------------------------------------------------------------------------------------------------- +Copyright 2009 The Go Authors. All rights reserved. +Use of this source code is governed by a BSD-style +license that can be found in the LICENSE file +==================================================================================================== + +==================================================================================================== +LIBRARY: dart +ORIGIN: ../../../third_party/dart/runtime/lib/class_id.cc + ../../../third_party/dart/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/runtime/lib/class_id.cc +FILE: ../../../third_party/dart/runtime/lib/class_id.dart +FILE: ../../../third_party/dart/runtime/lib/convert_patch.dart +FILE: ../../../third_party/dart/runtime/lib/lib_prefix.dart +FILE: ../../../third_party/dart/runtime/lib/linked_hash_map.cc +FILE: ../../../third_party/dart/runtime/lib/profiler.cc +FILE: ../../../third_party/dart/runtime/lib/profiler.dart +FILE: ../../../third_party/dart/runtime/observatory/bin/shell.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/app.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/object_graph.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/service.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/service_common.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/service_html.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/service_io.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/app/page.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/app/settings.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/app/view_model.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/allocation_profile.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/class_tree.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/debugger.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/heap_map.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/isolate_reconnect.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/metrics.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/elements/vm_connect.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/src/service/object.dart +FILE: ../../../third_party/dart/runtime/observatory/lib/utils.dart +FILE: ../../../third_party/dart/runtime/observatory/web/main.dart +FILE: ../../../third_party/dart/runtime/platform/address_sanitizer.h +FILE: ../../../third_party/dart/runtime/platform/math.h +FILE: ../../../third_party/dart/runtime/platform/memory_sanitizer.h +FILE: ../../../third_party/dart/runtime/platform/safe_stack.h +FILE: ../../../third_party/dart/runtime/tools/verbose_gc_to_bmu.dart +FILE: ../../../third_party/dart/runtime/vm/ast_transformer.cc +FILE: ../../../third_party/dart/runtime/vm/ast_transformer.h +FILE: ../../../third_party/dart/runtime/vm/bit_set_test.cc +FILE: ../../../third_party/dart/runtime/vm/code_patcher_arm64.cc +FILE: ../../../third_party/dart/runtime/vm/code_patcher_arm64_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm64.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/assembler_arm64.h +FILE: ../../../third_party/dart/runtime/vm/compiler/assembler/disassembler_arm64.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/flow_graph_compiler_arm64.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/il_arm64.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/range_analysis.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/range_analysis.h +FILE: ../../../third_party/dart/runtime/vm/compiler/backend/range_analysis_test.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/intrinsifier_arm64.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/method_recognizer.cc +FILE: ../../../third_party/dart/runtime/vm/compiler/method_recognizer.h +FILE: ../../../third_party/dart/runtime/vm/constants_arm64.h +FILE: ../../../third_party/dart/runtime/vm/cpu_arm.h +FILE: ../../../third_party/dart/runtime/vm/cpu_arm64.cc +FILE: ../../../third_party/dart/runtime/vm/cpu_arm64.h +FILE: ../../../third_party/dart/runtime/vm/cpu_ia32.h +FILE: ../../../third_party/dart/runtime/vm/cpu_x64.h +FILE: ../../../third_party/dart/runtime/vm/cpuid.cc +FILE: ../../../third_party/dart/runtime/vm/cpuid.h +FILE: ../../../third_party/dart/runtime/vm/cpuinfo.h +FILE: ../../../third_party/dart/runtime/vm/cpuinfo_android.cc +FILE: ../../../third_party/dart/runtime/vm/cpuinfo_test.cc +FILE: ../../../third_party/dart/runtime/vm/cpuinfo_win.cc +FILE: ../../../third_party/dart/runtime/vm/debugger_arm64.cc +FILE: ../../../third_party/dart/runtime/vm/hash_table.h +FILE: ../../../third_party/dart/runtime/vm/hash_table_test.cc +FILE: ../../../third_party/dart/runtime/vm/heap/scavenger_test.cc +FILE: ../../../third_party/dart/runtime/vm/heap/spaces.h +FILE: ../../../third_party/dart/runtime/vm/heap/weak_code.cc +FILE: ../../../third_party/dart/runtime/vm/heap/weak_code.h +FILE: ../../../third_party/dart/runtime/vm/instructions_arm64.cc +FILE: ../../../third_party/dart/runtime/vm/instructions_arm64.h +FILE: ../../../third_party/dart/runtime/vm/instructions_arm64_test.cc +FILE: ../../../third_party/dart/runtime/vm/metrics.cc +FILE: ../../../third_party/dart/runtime/vm/metrics.h +FILE: ../../../third_party/dart/runtime/vm/metrics_test.cc +FILE: ../../../third_party/dart/runtime/vm/object_arm64_test.cc +FILE: ../../../third_party/dart/runtime/vm/object_graph.cc +FILE: ../../../third_party/dart/runtime/vm/object_graph.h +FILE: ../../../third_party/dart/runtime/vm/object_graph_test.cc +FILE: ../../../third_party/dart/runtime/vm/regexp.cc +FILE: ../../../third_party/dart/runtime/vm/regexp.h +FILE: ../../../third_party/dart/runtime/vm/regexp_assembler.cc +FILE: ../../../third_party/dart/runtime/vm/regexp_assembler.h +FILE: ../../../third_party/dart/runtime/vm/regexp_assembler_ir.cc +FILE: ../../../third_party/dart/runtime/vm/regexp_assembler_ir.h +FILE: ../../../third_party/dart/runtime/vm/regexp_ast.cc +FILE: ../../../third_party/dart/runtime/vm/regexp_ast.h +FILE: ../../../third_party/dart/runtime/vm/regexp_parser.cc +FILE: ../../../third_party/dart/runtime/vm/regexp_parser.h +FILE: ../../../third_party/dart/runtime/vm/regexp_test.cc +FILE: ../../../third_party/dart/runtime/vm/report.cc +FILE: ../../../third_party/dart/runtime/vm/report.h +FILE: ../../../third_party/dart/runtime/vm/ring_buffer.h +FILE: ../../../third_party/dart/runtime/vm/ring_buffer_test.cc +FILE: ../../../third_party/dart/runtime/vm/runtime_entry_arm64.cc +FILE: ../../../third_party/dart/runtime/vm/simulator_arm64.cc +FILE: ../../../third_party/dart/runtime/vm/simulator_arm64.h +FILE: ../../../third_party/dart/runtime/vm/stack_frame_arm64.h +FILE: ../../../third_party/dart/runtime/vm/stub_code_arm64.cc +FILE: ../../../third_party/dart/runtime/vm/stub_code_arm64_test.cc +FILE: ../../../third_party/dart/runtime/vm/tags.cc +FILE: ../../../third_party/dart/runtime/vm/unibrow-inl.h +FILE: ../../../third_party/dart/runtime/vm/unibrow.cc +FILE: ../../../third_party/dart/runtime/vm/unibrow.h +FILE: ../../../third_party/dart/runtime/vm/verified_memory_test.cc +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/linked_hash_map.dart +FILE: ../../../third_party/dart/sdk/lib/_internal/js_runtime/lib/shared/embedded_names.dart +FILE: ../../../third_party/dart/sdk/lib/collection/set.dart +FILE: ../../../third_party/dart/sdk/lib/core/sink.dart +FILE: ../../../third_party/dart/sdk/lib/developer/profiler.dart +FILE: ../../../third_party/dart/sdk/lib/io/process.dart +FILE: ../../../third_party/dart/sdk/lib/io/service_object.dart +FILE: ../../../third_party/dart/sdk/lib/isolate/capability.dart +FILE: ../../../third_party/dart/sdk/lib/profiler/profiler.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: double-conversion +LIBRARY: icu +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/bignum-dtoa.cc +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/bignum-dtoa.cc +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/bignum-dtoa.h +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/bignum.cc +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/bignum.h +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/cached-powers.h +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/diy-fp.cc +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/diy-fp.h +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/double-conversion.cc +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/fast-dtoa.h +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/fixed-dtoa.cc +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/fixed-dtoa.h +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/strtod.cc +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/strtod.h +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/utils.h +FILE: ../../../third_party/icu/source/i18n/double-conversion-bignum-dtoa.cpp +FILE: ../../../third_party/icu/source/i18n/double-conversion-bignum-dtoa.h +FILE: ../../../third_party/icu/source/i18n/double-conversion-bignum.cpp +FILE: ../../../third_party/icu/source/i18n/double-conversion-bignum.h +FILE: ../../../third_party/icu/source/i18n/double-conversion-cached-powers.h +FILE: ../../../third_party/icu/source/i18n/double-conversion-diy-fp.cpp +FILE: ../../../third_party/icu/source/i18n/double-conversion-diy-fp.h +FILE: ../../../third_party/icu/source/i18n/double-conversion-fast-dtoa.h +FILE: ../../../third_party/icu/source/i18n/double-conversion-strtod.cpp +FILE: ../../../third_party/icu/source/i18n/double-conversion-strtod.h +FILE: ../../../third_party/icu/source/i18n/double-conversion-utils.h +FILE: ../../../third_party/icu/source/i18n/double-conversion.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2010 the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: double-conversion +LIBRARY: icu +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/cached-powers.cc +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/cached-powers.cc +FILE: ../../../third_party/icu/source/i18n/double-conversion-cached-powers.cpp +---------------------------------------------------------------------------------------------------- +Copyright 2006-2008 the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: double-conversion +LIBRARY: icu +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/src/double-conversion.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/double-conversion.h +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/fast-dtoa.cc +FILE: ../../../third_party/dart/runtime/third_party/double-conversion/src/ieee.h +FILE: ../../../third_party/icu/source/i18n/double-conversion-fast-dtoa.cpp +FILE: ../../../third_party/icu/source/i18n/double-conversion-ieee.h +FILE: ../../../third_party/icu/source/i18n/double-conversion.h +---------------------------------------------------------------------------------------------------- +Copyright 2012 the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== + +==================================================================================================== +LIBRARY: files +ORIGIN: ../../../third_party/expat/files/COPYING +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/files/Changes +FILE: ../../../third_party/expat/files/MANIFEST +FILE: ../../../third_party/expat/files/lib/amigaconfig.h +FILE: ../../../third_party/expat/files/lib/expat_config.h +FILE: ../../../third_party/expat/files/lib/internal.h +FILE: ../../../third_party/expat/files/lib/libexpat.def +FILE: ../../../third_party/expat/files/lib/libexpatw.def +FILE: ../../../third_party/expat/files/lib/nametab.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd + and Clark Cooper +Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: files +ORIGIN: ../../../third_party/expat/files/lib/ascii.h + ../../../third_party/expat/files/COPYING +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/files/lib/ascii.h +FILE: ../../../third_party/expat/files/lib/asciitab.h +FILE: ../../../third_party/expat/files/lib/iasciitab.h +FILE: ../../../third_party/expat/files/lib/latin1tab.h +FILE: ../../../third_party/expat/files/lib/utf8tab.h +FILE: ../../../third_party/expat/files/lib/xmlrole.c +FILE: ../../../third_party/expat/files/lib/xmlrole.h +FILE: ../../../third_party/expat/files/lib/xmltok.c +FILE: ../../../third_party/expat/files/lib/xmltok.h +FILE: ../../../third_party/expat/files/lib/xmltok_impl.c +FILE: ../../../third_party/expat/files/lib/xmltok_impl.c.original +FILE: ../../../third_party/expat/files/lib/xmltok_impl.h +FILE: ../../../third_party/expat/files/lib/xmltok_ns.c +---------------------------------------------------------------------------------------------------- +Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: files +ORIGIN: ../../../third_party/expat/files/lib/expat.h + ../../../third_party/expat/files/COPYING +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/files/lib/expat.h +FILE: ../../../third_party/expat/files/lib/expat_external.h +FILE: ../../../third_party/expat/files/lib/xmlparse.c +FILE: ../../../third_party/expat/files/lib/xmlparse.c.original +---------------------------------------------------------------------------------------------------- +Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: files +ORIGIN: ../../../third_party/expat/files/lib/macconfig.h + ../../../third_party/expat/files/COPYING +TYPE: LicenseType.mit +FILE: ../../../third_party/expat/files/lib/macconfig.h +FILE: ../../../third_party/expat/files/lib/winconfig.h +FILE: ../../../third_party/expat/files/lib/winconfig.h.original +---------------------------------------------------------------------------------------------------- +Copyright 2000, Clark Cooper +All rights reserved. + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/docs/FTL.TXT +TYPE: LicenseType.freetype +FILE: ../../../third_party/freetype2/.mailmap +FILE: ../../../third_party/freetype2/Jamfile +FILE: ../../../third_party/freetype2/Jamrules +FILE: ../../../third_party/freetype2/devel/ft2build.h +FILE: ../../../third_party/freetype2/devel/ftoption.h +FILE: ../../../third_party/freetype2/include/freetype-fuchsia-config/ftmodule.h +FILE: ../../../third_party/freetype2/include/freetype-fuchsia-config/ftoption.h +FILE: ../../../third_party/freetype2/include/freetype/config/ftconfig.h +FILE: ../../../third_party/freetype2/include/freetype/config/ftheader.h +FILE: ../../../third_party/freetype2/include/freetype/config/ftmodule.h +FILE: ../../../third_party/freetype2/include/freetype/config/ftoption.h +FILE: ../../../third_party/freetype2/include/freetype/config/ftstdlib.h +FILE: ../../../third_party/freetype2/include/freetype/freetype.h +FILE: ../../../third_party/freetype2/include/freetype/ftadvanc.h +FILE: ../../../third_party/freetype2/include/freetype/ftbbox.h +FILE: ../../../third_party/freetype2/include/freetype/ftbdf.h +FILE: ../../../third_party/freetype2/include/freetype/ftbitmap.h +FILE: ../../../third_party/freetype2/include/freetype/ftbzip2.h +FILE: ../../../third_party/freetype2/include/freetype/ftcache.h +FILE: ../../../third_party/freetype2/include/freetype/ftchapters.h +FILE: ../../../third_party/freetype2/include/freetype/ftcid.h +FILE: ../../../third_party/freetype2/include/freetype/ftdriver.h +FILE: ../../../third_party/freetype2/include/freetype/fterrdef.h +FILE: ../../../third_party/freetype2/include/freetype/fterrors.h +FILE: ../../../third_party/freetype2/include/freetype/ftfntfmt.h +FILE: ../../../third_party/freetype2/include/freetype/ftgasp.h +FILE: ../../../third_party/freetype2/include/freetype/ftglyph.h +FILE: ../../../third_party/freetype2/include/freetype/ftgxval.h +FILE: ../../../third_party/freetype2/include/freetype/ftgzip.h +FILE: ../../../third_party/freetype2/include/freetype/ftimage.h +FILE: ../../../third_party/freetype2/include/freetype/ftincrem.h +FILE: ../../../third_party/freetype2/include/freetype/ftlcdfil.h +FILE: ../../../third_party/freetype2/include/freetype/ftlist.h +FILE: ../../../third_party/freetype2/include/freetype/ftlzw.h +FILE: ../../../third_party/freetype2/include/freetype/ftmac.h +FILE: ../../../third_party/freetype2/include/freetype/ftmm.h +FILE: ../../../third_party/freetype2/include/freetype/ftmodapi.h +FILE: ../../../third_party/freetype2/include/freetype/ftmoderr.h +FILE: ../../../third_party/freetype2/include/freetype/ftotval.h +FILE: ../../../third_party/freetype2/include/freetype/ftoutln.h +FILE: ../../../third_party/freetype2/include/freetype/ftparams.h +FILE: ../../../third_party/freetype2/include/freetype/ftpfr.h +FILE: ../../../third_party/freetype2/include/freetype/ftrender.h +FILE: ../../../third_party/freetype2/include/freetype/ftsizes.h +FILE: ../../../third_party/freetype2/include/freetype/ftsnames.h +FILE: ../../../third_party/freetype2/include/freetype/ftstroke.h +FILE: ../../../third_party/freetype2/include/freetype/ftsynth.h +FILE: ../../../third_party/freetype2/include/freetype/ftsystem.h +FILE: ../../../third_party/freetype2/include/freetype/fttrigon.h +FILE: ../../../third_party/freetype2/include/freetype/fttypes.h +FILE: ../../../third_party/freetype2/include/freetype/ftwinfnt.h +FILE: ../../../third_party/freetype2/include/freetype/internal/autohint.h +FILE: ../../../third_party/freetype2/include/freetype/internal/cffotypes.h +FILE: ../../../third_party/freetype2/include/freetype/internal/cfftypes.h +FILE: ../../../third_party/freetype2/include/freetype/internal/ftcalc.h +FILE: ../../../third_party/freetype2/include/freetype/internal/ftdebug.h +FILE: ../../../third_party/freetype2/include/freetype/internal/ftdrv.h +FILE: ../../../third_party/freetype2/include/freetype/internal/ftgloadr.h +FILE: ../../../third_party/freetype2/include/freetype/internal/ftmemory.h +FILE: ../../../third_party/freetype2/include/freetype/internal/ftobjs.h +FILE: ../../../third_party/freetype2/include/freetype/internal/ftpic.h +FILE: ../../../third_party/freetype2/include/freetype/internal/ftpsprop.h +FILE: ../../../third_party/freetype2/include/freetype/internal/ftrfork.h +FILE: ../../../third_party/freetype2/include/freetype/internal/ftserv.h +FILE: ../../../third_party/freetype2/include/freetype/internal/ftstream.h +FILE: ../../../third_party/freetype2/include/freetype/internal/fttrace.h +FILE: ../../../third_party/freetype2/include/freetype/internal/ftvalid.h +FILE: ../../../third_party/freetype2/include/freetype/internal/internal.h +FILE: ../../../third_party/freetype2/include/freetype/internal/psaux.h +FILE: ../../../third_party/freetype2/include/freetype/internal/pshints.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svbdf.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svcfftl.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svcid.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svfntfmt.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svgldict.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svgxval.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svkern.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svmetric.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svmm.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svotval.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svpfr.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svpostnm.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svprop.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svpscmap.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svpsinfo.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svsfnt.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svttcmap.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svtteng.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svttglyf.h +FILE: ../../../third_party/freetype2/include/freetype/internal/services/svwinfnt.h +FILE: ../../../third_party/freetype2/include/freetype/internal/sfnt.h +FILE: ../../../third_party/freetype2/include/freetype/internal/t1types.h +FILE: ../../../third_party/freetype2/include/freetype/internal/tttypes.h +FILE: ../../../third_party/freetype2/include/freetype/t1tables.h +FILE: ../../../third_party/freetype2/include/freetype/ttnameid.h +FILE: ../../../third_party/freetype2/include/freetype/tttables.h +FILE: ../../../third_party/freetype2/include/freetype/tttags.h +FILE: ../../../third_party/freetype2/include/ft2build.h +FILE: ../../../third_party/freetype2/modules.cfg +FILE: ../../../third_party/freetype2/src/Jamfile +FILE: ../../../third_party/freetype2/src/autofit/Jamfile +FILE: ../../../third_party/freetype2/src/autofit/afangles.c +FILE: ../../../third_party/freetype2/src/autofit/afangles.h +FILE: ../../../third_party/freetype2/src/autofit/afblue.c +FILE: ../../../third_party/freetype2/src/autofit/afblue.cin +FILE: ../../../third_party/freetype2/src/autofit/afblue.dat +FILE: ../../../third_party/freetype2/src/autofit/afblue.h +FILE: ../../../third_party/freetype2/src/autofit/afblue.hin +FILE: ../../../third_party/freetype2/src/autofit/afcjk.c +FILE: ../../../third_party/freetype2/src/autofit/afcjk.h +FILE: ../../../third_party/freetype2/src/autofit/afcover.h +FILE: ../../../third_party/freetype2/src/autofit/afdummy.c +FILE: ../../../third_party/freetype2/src/autofit/afdummy.h +FILE: ../../../third_party/freetype2/src/autofit/aferrors.h +FILE: ../../../third_party/freetype2/src/autofit/afglobal.c +FILE: ../../../third_party/freetype2/src/autofit/afglobal.h +FILE: ../../../third_party/freetype2/src/autofit/afhints.c +FILE: ../../../third_party/freetype2/src/autofit/afhints.h +FILE: ../../../third_party/freetype2/src/autofit/afindic.c +FILE: ../../../third_party/freetype2/src/autofit/afindic.h +FILE: ../../../third_party/freetype2/src/autofit/aflatin.c +FILE: ../../../third_party/freetype2/src/autofit/aflatin.h +FILE: ../../../third_party/freetype2/src/autofit/aflatin2.c +FILE: ../../../third_party/freetype2/src/autofit/aflatin2.h +FILE: ../../../third_party/freetype2/src/autofit/afloader.c +FILE: ../../../third_party/freetype2/src/autofit/afloader.h +FILE: ../../../third_party/freetype2/src/autofit/afmodule.c +FILE: ../../../third_party/freetype2/src/autofit/afmodule.h +FILE: ../../../third_party/freetype2/src/autofit/afpic.c +FILE: ../../../third_party/freetype2/src/autofit/afpic.h +FILE: ../../../third_party/freetype2/src/autofit/afranges.c +FILE: ../../../third_party/freetype2/src/autofit/afranges.h +FILE: ../../../third_party/freetype2/src/autofit/afscript.h +FILE: ../../../third_party/freetype2/src/autofit/afshaper.c +FILE: ../../../third_party/freetype2/src/autofit/afshaper.h +FILE: ../../../third_party/freetype2/src/autofit/afstyles.h +FILE: ../../../third_party/freetype2/src/autofit/aftypes.h +FILE: ../../../third_party/freetype2/src/autofit/afwarp.c +FILE: ../../../third_party/freetype2/src/autofit/afwarp.h +FILE: ../../../third_party/freetype2/src/autofit/afwrtsys.h +FILE: ../../../third_party/freetype2/src/autofit/autofit.c +FILE: ../../../third_party/freetype2/src/base/Jamfile +FILE: ../../../third_party/freetype2/src/base/basepic.c +FILE: ../../../third_party/freetype2/src/base/basepic.h +FILE: ../../../third_party/freetype2/src/base/ftadvanc.c +FILE: ../../../third_party/freetype2/src/base/ftapi.c +FILE: ../../../third_party/freetype2/src/base/ftbase.c +FILE: ../../../third_party/freetype2/src/base/ftbase.h +FILE: ../../../third_party/freetype2/src/base/ftbbox.c +FILE: ../../../third_party/freetype2/src/base/ftbdf.c +FILE: ../../../third_party/freetype2/src/base/ftbitmap.c +FILE: ../../../third_party/freetype2/src/base/ftcalc.c +FILE: ../../../third_party/freetype2/src/base/ftcid.c +FILE: ../../../third_party/freetype2/src/base/ftdbgmem.c +FILE: ../../../third_party/freetype2/src/base/ftdebug.c +FILE: ../../../third_party/freetype2/src/base/ftfntfmt.c +FILE: ../../../third_party/freetype2/src/base/ftfstype.c +FILE: ../../../third_party/freetype2/src/base/ftgasp.c +FILE: ../../../third_party/freetype2/src/base/ftgloadr.c +FILE: ../../../third_party/freetype2/src/base/ftglyph.c +FILE: ../../../third_party/freetype2/src/base/ftgxval.c +FILE: ../../../third_party/freetype2/src/base/ftinit.c +FILE: ../../../third_party/freetype2/src/base/ftlcdfil.c +FILE: ../../../third_party/freetype2/src/base/ftmac.c +FILE: ../../../third_party/freetype2/src/base/ftmm.c +FILE: ../../../third_party/freetype2/src/base/ftobjs.c +FILE: ../../../third_party/freetype2/src/base/ftotval.c +FILE: ../../../third_party/freetype2/src/base/ftoutln.c +FILE: ../../../third_party/freetype2/src/base/ftpatent.c +FILE: ../../../third_party/freetype2/src/base/ftpfr.c +FILE: ../../../third_party/freetype2/src/base/ftpic.c +FILE: ../../../third_party/freetype2/src/base/ftpsprop.c +FILE: ../../../third_party/freetype2/src/base/ftrfork.c +FILE: ../../../third_party/freetype2/src/base/ftsnames.c +FILE: ../../../third_party/freetype2/src/base/ftstream.c +FILE: ../../../third_party/freetype2/src/base/ftstroke.c +FILE: ../../../third_party/freetype2/src/base/ftsynth.c +FILE: ../../../third_party/freetype2/src/base/ftsystem.c +FILE: ../../../third_party/freetype2/src/base/fttrigon.c +FILE: ../../../third_party/freetype2/src/base/fttype1.c +FILE: ../../../third_party/freetype2/src/base/ftutil.c +FILE: ../../../third_party/freetype2/src/base/ftver.rc +FILE: ../../../third_party/freetype2/src/base/ftwinfnt.c +FILE: ../../../third_party/freetype2/src/base/md5.c +FILE: ../../../third_party/freetype2/src/base/md5.h +FILE: ../../../third_party/freetype2/src/bdf/Jamfile +FILE: ../../../third_party/freetype2/src/bzip2/Jamfile +FILE: ../../../third_party/freetype2/src/bzip2/ftbzip2.c +FILE: ../../../third_party/freetype2/src/cache/Jamfile +FILE: ../../../third_party/freetype2/src/cache/ftcache.c +FILE: ../../../third_party/freetype2/src/cache/ftcbasic.c +FILE: ../../../third_party/freetype2/src/cache/ftccache.c +FILE: ../../../third_party/freetype2/src/cache/ftccache.h +FILE: ../../../third_party/freetype2/src/cache/ftccback.h +FILE: ../../../third_party/freetype2/src/cache/ftccmap.c +FILE: ../../../third_party/freetype2/src/cache/ftcerror.h +FILE: ../../../third_party/freetype2/src/cache/ftcglyph.c +FILE: ../../../third_party/freetype2/src/cache/ftcglyph.h +FILE: ../../../third_party/freetype2/src/cache/ftcimage.c +FILE: ../../../third_party/freetype2/src/cache/ftcimage.h +FILE: ../../../third_party/freetype2/src/cache/ftcmanag.c +FILE: ../../../third_party/freetype2/src/cache/ftcmanag.h +FILE: ../../../third_party/freetype2/src/cache/ftcmru.c +FILE: ../../../third_party/freetype2/src/cache/ftcmru.h +FILE: ../../../third_party/freetype2/src/cache/ftcsbits.c +FILE: ../../../third_party/freetype2/src/cache/ftcsbits.h +FILE: ../../../third_party/freetype2/src/cff/Jamfile +FILE: ../../../third_party/freetype2/src/cff/cff.c +FILE: ../../../third_party/freetype2/src/cff/cffcmap.c +FILE: ../../../third_party/freetype2/src/cff/cffcmap.h +FILE: ../../../third_party/freetype2/src/cff/cffdrivr.c +FILE: ../../../third_party/freetype2/src/cff/cffdrivr.h +FILE: ../../../third_party/freetype2/src/cff/cfferrs.h +FILE: ../../../third_party/freetype2/src/cff/cffgload.c +FILE: ../../../third_party/freetype2/src/cff/cffgload.h +FILE: ../../../third_party/freetype2/src/cff/cffload.c +FILE: ../../../third_party/freetype2/src/cff/cffload.h +FILE: ../../../third_party/freetype2/src/cff/cffobjs.c +FILE: ../../../third_party/freetype2/src/cff/cffobjs.h +FILE: ../../../third_party/freetype2/src/cff/cffparse.c +FILE: ../../../third_party/freetype2/src/cff/cffparse.h +FILE: ../../../third_party/freetype2/src/cff/cffpic.c +FILE: ../../../third_party/freetype2/src/cff/cffpic.h +FILE: ../../../third_party/freetype2/src/cff/cfftoken.h +FILE: ../../../third_party/freetype2/src/cid/Jamfile +FILE: ../../../third_party/freetype2/src/cid/ciderrs.h +FILE: ../../../third_party/freetype2/src/cid/cidgload.c +FILE: ../../../third_party/freetype2/src/cid/cidgload.h +FILE: ../../../third_party/freetype2/src/cid/cidload.c +FILE: ../../../third_party/freetype2/src/cid/cidload.h +FILE: ../../../third_party/freetype2/src/cid/cidobjs.c +FILE: ../../../third_party/freetype2/src/cid/cidobjs.h +FILE: ../../../third_party/freetype2/src/cid/cidparse.c +FILE: ../../../third_party/freetype2/src/cid/cidparse.h +FILE: ../../../third_party/freetype2/src/cid/cidriver.c +FILE: ../../../third_party/freetype2/src/cid/cidriver.h +FILE: ../../../third_party/freetype2/src/cid/cidtoken.h +FILE: ../../../third_party/freetype2/src/cid/type1cid.c +FILE: ../../../third_party/freetype2/src/gxvalid/Jamfile +FILE: ../../../third_party/freetype2/src/gxvalid/gxvalid.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvalid.h +FILE: ../../../third_party/freetype2/src/gxvalid/gxvbsln.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvcommn.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvcommn.h +FILE: ../../../third_party/freetype2/src/gxvalid/gxverror.h +FILE: ../../../third_party/freetype2/src/gxvalid/gxvfeat.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvfeat.h +FILE: ../../../third_party/freetype2/src/gxvalid/gxvfgen.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvfgen.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvjust.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvkern.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvlcar.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvmod.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvmod.h +FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort.h +FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort0.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort1.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort2.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort4.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvmort5.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx.h +FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx0.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx1.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx2.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx4.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvmorx5.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvopbd.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvprop.c +FILE: ../../../third_party/freetype2/src/gxvalid/gxvtrak.c +FILE: ../../../third_party/freetype2/src/gzip/Jamfile +FILE: ../../../third_party/freetype2/src/gzip/ftgzip.c +FILE: ../../../third_party/freetype2/src/lzw/Jamfile +FILE: ../../../third_party/freetype2/src/lzw/ftlzw.c +FILE: ../../../third_party/freetype2/src/lzw/ftzopen.c +FILE: ../../../third_party/freetype2/src/lzw/ftzopen.h +FILE: ../../../third_party/freetype2/src/otvalid/Jamfile +FILE: ../../../third_party/freetype2/src/otvalid/otvalid.c +FILE: ../../../third_party/freetype2/src/otvalid/otvalid.h +FILE: ../../../third_party/freetype2/src/otvalid/otvbase.c +FILE: ../../../third_party/freetype2/src/otvalid/otvcommn.c +FILE: ../../../third_party/freetype2/src/otvalid/otvcommn.h +FILE: ../../../third_party/freetype2/src/otvalid/otverror.h +FILE: ../../../third_party/freetype2/src/otvalid/otvgdef.c +FILE: ../../../third_party/freetype2/src/otvalid/otvgpos.c +FILE: ../../../third_party/freetype2/src/otvalid/otvgpos.h +FILE: ../../../third_party/freetype2/src/otvalid/otvgsub.c +FILE: ../../../third_party/freetype2/src/otvalid/otvjstf.c +FILE: ../../../third_party/freetype2/src/otvalid/otvmath.c +FILE: ../../../third_party/freetype2/src/otvalid/otvmod.c +FILE: ../../../third_party/freetype2/src/otvalid/otvmod.h +FILE: ../../../third_party/freetype2/src/pcf/Jamfile +FILE: ../../../third_party/freetype2/src/pcf/pcferror.h +FILE: ../../../third_party/freetype2/src/pfr/Jamfile +FILE: ../../../third_party/freetype2/src/pfr/pfr.c +FILE: ../../../third_party/freetype2/src/pfr/pfrcmap.c +FILE: ../../../third_party/freetype2/src/pfr/pfrcmap.h +FILE: ../../../third_party/freetype2/src/pfr/pfrdrivr.c +FILE: ../../../third_party/freetype2/src/pfr/pfrdrivr.h +FILE: ../../../third_party/freetype2/src/pfr/pfrerror.h +FILE: ../../../third_party/freetype2/src/pfr/pfrgload.c +FILE: ../../../third_party/freetype2/src/pfr/pfrgload.h +FILE: ../../../third_party/freetype2/src/pfr/pfrload.c +FILE: ../../../third_party/freetype2/src/pfr/pfrload.h +FILE: ../../../third_party/freetype2/src/pfr/pfrobjs.c +FILE: ../../../third_party/freetype2/src/pfr/pfrobjs.h +FILE: ../../../third_party/freetype2/src/pfr/pfrsbit.c +FILE: ../../../third_party/freetype2/src/pfr/pfrsbit.h +FILE: ../../../third_party/freetype2/src/pfr/pfrtypes.h +FILE: ../../../third_party/freetype2/src/psaux/Jamfile +FILE: ../../../third_party/freetype2/src/psaux/afmparse.c +FILE: ../../../third_party/freetype2/src/psaux/afmparse.h +FILE: ../../../third_party/freetype2/src/psaux/cffdecode.c +FILE: ../../../third_party/freetype2/src/psaux/cffdecode.h +FILE: ../../../third_party/freetype2/src/psaux/psarrst.c +FILE: ../../../third_party/freetype2/src/psaux/psarrst.h +FILE: ../../../third_party/freetype2/src/psaux/psaux.c +FILE: ../../../third_party/freetype2/src/psaux/psauxerr.h +FILE: ../../../third_party/freetype2/src/psaux/psauxmod.c +FILE: ../../../third_party/freetype2/src/psaux/psauxmod.h +FILE: ../../../third_party/freetype2/src/psaux/psblues.c +FILE: ../../../third_party/freetype2/src/psaux/psblues.h +FILE: ../../../third_party/freetype2/src/psaux/psconv.c +FILE: ../../../third_party/freetype2/src/psaux/psconv.h +FILE: ../../../third_party/freetype2/src/psaux/pserror.c +FILE: ../../../third_party/freetype2/src/psaux/pserror.h +FILE: ../../../third_party/freetype2/src/psaux/psfixed.h +FILE: ../../../third_party/freetype2/src/psaux/psfont.c +FILE: ../../../third_party/freetype2/src/psaux/psfont.h +FILE: ../../../third_party/freetype2/src/psaux/psft.c +FILE: ../../../third_party/freetype2/src/psaux/psft.h +FILE: ../../../third_party/freetype2/src/psaux/psglue.h +FILE: ../../../third_party/freetype2/src/psaux/pshints.c +FILE: ../../../third_party/freetype2/src/psaux/pshints.h +FILE: ../../../third_party/freetype2/src/psaux/psintrp.c +FILE: ../../../third_party/freetype2/src/psaux/psintrp.h +FILE: ../../../third_party/freetype2/src/psaux/psobjs.c +FILE: ../../../third_party/freetype2/src/psaux/psobjs.h +FILE: ../../../third_party/freetype2/src/psaux/psread.c +FILE: ../../../third_party/freetype2/src/psaux/psread.h +FILE: ../../../third_party/freetype2/src/psaux/psstack.c +FILE: ../../../third_party/freetype2/src/psaux/psstack.h +FILE: ../../../third_party/freetype2/src/psaux/pstypes.h +FILE: ../../../third_party/freetype2/src/psaux/t1cmap.c +FILE: ../../../third_party/freetype2/src/psaux/t1cmap.h +FILE: ../../../third_party/freetype2/src/psaux/t1decode.c +FILE: ../../../third_party/freetype2/src/psaux/t1decode.h +FILE: ../../../third_party/freetype2/src/pshinter/Jamfile +FILE: ../../../third_party/freetype2/src/pshinter/pshalgo.c +FILE: ../../../third_party/freetype2/src/pshinter/pshalgo.h +FILE: ../../../third_party/freetype2/src/pshinter/pshglob.c +FILE: ../../../third_party/freetype2/src/pshinter/pshglob.h +FILE: ../../../third_party/freetype2/src/pshinter/pshinter.c +FILE: ../../../third_party/freetype2/src/pshinter/pshmod.c +FILE: ../../../third_party/freetype2/src/pshinter/pshmod.h +FILE: ../../../third_party/freetype2/src/pshinter/pshnterr.h +FILE: ../../../third_party/freetype2/src/pshinter/pshpic.c +FILE: ../../../third_party/freetype2/src/pshinter/pshpic.h +FILE: ../../../third_party/freetype2/src/pshinter/pshrec.c +FILE: ../../../third_party/freetype2/src/pshinter/pshrec.h +FILE: ../../../third_party/freetype2/src/psnames/Jamfile +FILE: ../../../third_party/freetype2/src/psnames/psmodule.c +FILE: ../../../third_party/freetype2/src/psnames/psmodule.h +FILE: ../../../third_party/freetype2/src/psnames/psnamerr.h +FILE: ../../../third_party/freetype2/src/psnames/psnames.c +FILE: ../../../third_party/freetype2/src/psnames/pspic.c +FILE: ../../../third_party/freetype2/src/psnames/pspic.h +FILE: ../../../third_party/freetype2/src/psnames/pstables.h +FILE: ../../../third_party/freetype2/src/raster/Jamfile +FILE: ../../../third_party/freetype2/src/raster/ftmisc.h +FILE: ../../../third_party/freetype2/src/raster/ftraster.c +FILE: ../../../third_party/freetype2/src/raster/ftraster.h +FILE: ../../../third_party/freetype2/src/raster/ftrend1.c +FILE: ../../../third_party/freetype2/src/raster/ftrend1.h +FILE: ../../../third_party/freetype2/src/raster/raster.c +FILE: ../../../third_party/freetype2/src/raster/rasterrs.h +FILE: ../../../third_party/freetype2/src/raster/rastpic.c +FILE: ../../../third_party/freetype2/src/raster/rastpic.h +FILE: ../../../third_party/freetype2/src/sfnt/Jamfile +FILE: ../../../third_party/freetype2/src/sfnt/pngshim.c +FILE: ../../../third_party/freetype2/src/sfnt/pngshim.h +FILE: ../../../third_party/freetype2/src/sfnt/sfdriver.c +FILE: ../../../third_party/freetype2/src/sfnt/sfdriver.h +FILE: ../../../third_party/freetype2/src/sfnt/sferrors.h +FILE: ../../../third_party/freetype2/src/sfnt/sfnt.c +FILE: ../../../third_party/freetype2/src/sfnt/sfntpic.c +FILE: ../../../third_party/freetype2/src/sfnt/sfntpic.h +FILE: ../../../third_party/freetype2/src/sfnt/sfobjs.c +FILE: ../../../third_party/freetype2/src/sfnt/sfobjs.h +FILE: ../../../third_party/freetype2/src/sfnt/ttbdf.c +FILE: ../../../third_party/freetype2/src/sfnt/ttbdf.h +FILE: ../../../third_party/freetype2/src/sfnt/ttcmap.c +FILE: ../../../third_party/freetype2/src/sfnt/ttcmap.h +FILE: ../../../third_party/freetype2/src/sfnt/ttcmapc.h +FILE: ../../../third_party/freetype2/src/sfnt/ttkern.c +FILE: ../../../third_party/freetype2/src/sfnt/ttkern.h +FILE: ../../../third_party/freetype2/src/sfnt/ttload.c +FILE: ../../../third_party/freetype2/src/sfnt/ttload.h +FILE: ../../../third_party/freetype2/src/sfnt/ttmtx.c +FILE: ../../../third_party/freetype2/src/sfnt/ttmtx.h +FILE: ../../../third_party/freetype2/src/sfnt/ttpost.c +FILE: ../../../third_party/freetype2/src/sfnt/ttpost.h +FILE: ../../../third_party/freetype2/src/sfnt/ttsbit.c +FILE: ../../../third_party/freetype2/src/sfnt/ttsbit.h +FILE: ../../../third_party/freetype2/src/smooth/Jamfile +FILE: ../../../third_party/freetype2/src/smooth/ftgrays.c +FILE: ../../../third_party/freetype2/src/smooth/ftgrays.h +FILE: ../../../third_party/freetype2/src/smooth/ftsmerrs.h +FILE: ../../../third_party/freetype2/src/smooth/ftsmooth.c +FILE: ../../../third_party/freetype2/src/smooth/ftsmooth.h +FILE: ../../../third_party/freetype2/src/smooth/ftspic.c +FILE: ../../../third_party/freetype2/src/smooth/ftspic.h +FILE: ../../../third_party/freetype2/src/smooth/smooth.c +FILE: ../../../third_party/freetype2/src/truetype/Jamfile +FILE: ../../../third_party/freetype2/src/truetype/truetype.c +FILE: ../../../third_party/freetype2/src/truetype/ttdriver.c +FILE: ../../../third_party/freetype2/src/truetype/ttdriver.h +FILE: ../../../third_party/freetype2/src/truetype/tterrors.h +FILE: ../../../third_party/freetype2/src/truetype/ttgload.c +FILE: ../../../third_party/freetype2/src/truetype/ttgload.h +FILE: ../../../third_party/freetype2/src/truetype/ttgxvar.c +FILE: ../../../third_party/freetype2/src/truetype/ttgxvar.h +FILE: ../../../third_party/freetype2/src/truetype/ttinterp.c +FILE: ../../../third_party/freetype2/src/truetype/ttinterp.h +FILE: ../../../third_party/freetype2/src/truetype/ttobjs.c +FILE: ../../../third_party/freetype2/src/truetype/ttobjs.h +FILE: ../../../third_party/freetype2/src/truetype/ttpic.c +FILE: ../../../third_party/freetype2/src/truetype/ttpic.h +FILE: ../../../third_party/freetype2/src/truetype/ttpload.c +FILE: ../../../third_party/freetype2/src/truetype/ttpload.h +FILE: ../../../third_party/freetype2/src/truetype/ttsubpix.c +FILE: ../../../third_party/freetype2/src/truetype/ttsubpix.h +FILE: ../../../third_party/freetype2/src/type1/Jamfile +FILE: ../../../third_party/freetype2/src/type1/t1afm.c +FILE: ../../../third_party/freetype2/src/type1/t1afm.h +FILE: ../../../third_party/freetype2/src/type1/t1driver.c +FILE: ../../../third_party/freetype2/src/type1/t1driver.h +FILE: ../../../third_party/freetype2/src/type1/t1errors.h +FILE: ../../../third_party/freetype2/src/type1/t1gload.c +FILE: ../../../third_party/freetype2/src/type1/t1gload.h +FILE: ../../../third_party/freetype2/src/type1/t1load.c +FILE: ../../../third_party/freetype2/src/type1/t1load.h +FILE: ../../../third_party/freetype2/src/type1/t1objs.c +FILE: ../../../third_party/freetype2/src/type1/t1objs.h +FILE: ../../../third_party/freetype2/src/type1/t1parse.c +FILE: ../../../third_party/freetype2/src/type1/t1parse.h +FILE: ../../../third_party/freetype2/src/type1/t1tokens.h +FILE: ../../../third_party/freetype2/src/type1/type1.c +FILE: ../../../third_party/freetype2/src/type42/Jamfile +FILE: ../../../third_party/freetype2/src/type42/t42drivr.c +FILE: ../../../third_party/freetype2/src/type42/t42drivr.h +FILE: ../../../third_party/freetype2/src/type42/t42error.h +FILE: ../../../third_party/freetype2/src/type42/t42objs.c +FILE: ../../../third_party/freetype2/src/type42/t42objs.h +FILE: ../../../third_party/freetype2/src/type42/t42parse.c +FILE: ../../../third_party/freetype2/src/type42/t42parse.h +FILE: ../../../third_party/freetype2/src/type42/t42types.h +FILE: ../../../third_party/freetype2/src/type42/type42.c +FILE: ../../../third_party/freetype2/src/winfonts/Jamfile +FILE: ../../../third_party/freetype2/src/winfonts/fnterrs.h +FILE: ../../../third_party/freetype2/src/winfonts/winfnt.c +FILE: ../../../third_party/freetype2/src/winfonts/winfnt.h +FILE: ../../../third_party/freetype2/version.sed +---------------------------------------------------------------------------------------------------- +The FreeType Project LICENSE + + 2006-Jan-27 + +Copyright 1996-2002, 2006 by +David Turner, Robert Wilhelm, and Werner Lemberg + +Introduction +============ + + The FreeType Project is distributed in several archive packages; + some of them may contain, in addition to the FreeType font engine, + various tools and contributions which rely on, or relate to, the + FreeType Project. + + This license applies to all files found in such packages, and + which do not fall under their own explicit license. The license + affects thus the FreeType font engine, the test programs, + documentation and makefiles, at the very least. + + This license was inspired by the BSD, Artistic, and IJG + (Independent JPEG Group) licenses, which all encourage inclusion + and use of free software in commercial and freeware products + alike. As a consequence, its main points are that: + + o We don't promise that this software works. However, we will be + interested in any kind of bug reports. (`as is' distribution) + + o You can use this software for whatever you want, in parts or + full form, without having to pay us. (`royalty-free' usage) + + o You may not pretend that you wrote this software. If you use + it, or only parts of it, in a program, you must acknowledge + somewhere in your documentation that you have used the + FreeType code. (`credits') + + We specifically permit and encourage the inclusion of this + software, with or without modifications, in commercial products. + We disclaim all warranties covering The FreeType Project and + assume no liability related to The FreeType Project. + + Finally, many people asked us for a preferred form for a + credit/disclaimer to use in compliance with this license. We thus + encourage you to use the following text: + + Portions of this software are copyright © The FreeType + Project (www.freetype.org). All rights reserved. + + Please replace with the value from the FreeType version you + actually use. + +Legal Terms +=========== + +0. Definitions + + Throughout this license, the terms `package', `FreeType Project', + and `FreeType archive' refer to the set of files originally + distributed by the authors (David Turner, Robert Wilhelm, and + Werner Lemberg) as the `FreeType Project', be they named as alpha, + beta or final release. + + `You' refers to the licensee, or person using the project, where + `using' is a generic term including compiling the project's source + code as well as linking it to form a `program' or `executable'. + This program is referred to as `a program using the FreeType + engine'. + + This license applies to all files distributed in the original + FreeType Project, including all source code, binaries and + documentation, unless otherwise stated in the file in its + original, unmodified form as distributed in the original archive. + If you are unsure whether or not a particular file is covered by + this license, you must contact us to verify this. + + The FreeType Project is copyright (C) 1996-2000 by David Turner, + Robert Wilhelm, and Werner Lemberg. All rights reserved except as + specified below. + +1. No Warranty + + THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS + BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO + USE, OF THE FREETYPE PROJECT. + +2. Redistribution + + This license grants a worldwide, royalty-free, perpetual and + irrevocable right and license to use, execute, perform, compile, + display, copy, create derivative works of, distribute and + sublicense the FreeType Project (in both source and object code + forms) and derivative works thereof for any purpose; and to + authorize others to exercise some or all of the rights granted + herein, subject to the following conditions: + + o Redistribution of source code must retain this license file + (`FTL.TXT') unaltered; any additions, deletions or changes to + the original files must be clearly indicated in accompanying + documentation. The copyright notices of the unaltered, + original files must be preserved in all copies of source + files. + + o Redistribution in binary form must provide a disclaimer that + states that the software is based in part of the work of the + FreeType Team, in the distribution documentation. We also + encourage you to put an URL to the FreeType web page in your + documentation, though this isn't mandatory. + + These conditions apply to any software derived from or based on + the FreeType Project, not just the unmodified files. If you use + our work, you must acknowledge us. However, no fee need be paid + to us. + +3. Advertising + + Neither the FreeType authors and contributors nor you shall use + the name of the other for commercial, advertising, or promotional + purposes without specific prior written permission. + + We suggest, but do not require, that you use one or more of the + following phrases to refer to this software in your documentation + or advertising materials: `FreeType Project', `FreeType Engine', + `FreeType library', or `FreeType Distribution'. + + As you have not signed this license, you are not required to + accept it. However, as the FreeType Project is copyrighted + material, only this license, or another one contracted with the + authors, grants you the right to use, distribute, and modify it. + Therefore, by using, distributing, or modifying the FreeType + Project, you indicate that you understand and accept all the terms + of this license. + +4. Contacts + + There are two mailing lists related to FreeType: + + o freetype@nongnu.org + + Discusses general use and applications of FreeType, as well as + future and wanted additions to the library and distribution. + If you are looking for support, start in this list if you + haven't found anything to help you in the documentation. + + o freetype-devel@nongnu.org + + Discusses bugs, as well as engine internals, design issues, + specific licenses, porting, etc. + + Our home page can be found at + + https://www.freetype.org + +--- end of FTL.TXT --- +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/include/freetype/internal/fthash.h +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/include/freetype/internal/fthash.h +FILE: ../../../third_party/freetype2/src/base/fthash.c +---------------------------------------------------------------------------------------------------- +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2015 + Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT +OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/bdf/bdf.c +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/bdf/bdf.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001, 2002 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/bdf/bdf.h +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/bdf/bdf.h +---------------------------------------------------------------------------------------------------- +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2004, 2011 Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT +OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/bdf/bdfdrivr.c +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/bdf/bdfdrivr.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001-2008, 2011, 2013, 2014 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/bdf/bdfdrivr.h +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/bdf/bdfdrivr.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2001, 2002, 2003, 2004 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/bdf/bdferror.h +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/bdf/bdferror.h +---------------------------------------------------------------------------------------------------- +Copyright 2001, 2002, 2012 Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT +OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/bdf/bdflib.c +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/bdf/bdflib.c +---------------------------------------------------------------------------------------------------- +Copyright 2000 Computing Research Labs, New Mexico State University +Copyright 2001-2014 + Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT +OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR +THE USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/gzip/adler32.c + ../../../third_party/freetype2/src/gzip/zlib.h +TYPE: LicenseType.zlib +FILE: ../../../third_party/freetype2/src/gzip/adler32.c +FILE: ../../../third_party/freetype2/src/gzip/infblock.c +FILE: ../../../third_party/freetype2/src/gzip/infblock.h +FILE: ../../../third_party/freetype2/src/gzip/infcodes.c +FILE: ../../../third_party/freetype2/src/gzip/infcodes.h +FILE: ../../../third_party/freetype2/src/gzip/inflate.c +FILE: ../../../third_party/freetype2/src/gzip/inftrees.c +FILE: ../../../third_party/freetype2/src/gzip/inftrees.h +FILE: ../../../third_party/freetype2/src/gzip/infutil.c +FILE: ../../../third_party/freetype2/src/gzip/infutil.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2002 Mark Adler + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/gzip/ftzconf.h + ../../../third_party/freetype2/src/gzip/zlib.h +TYPE: LicenseType.zlib +FILE: ../../../third_party/freetype2/src/gzip/ftzconf.h +FILE: ../../../third_party/freetype2/src/gzip/zutil.c +FILE: ../../../third_party/freetype2/src/gzip/zutil.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2002 Jean-loup Gailly. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/gzip/zlib.h +TYPE: LicenseType.zlib +FILE: ../../../third_party/freetype2/src/gzip/inffixed.h +FILE: ../../../third_party/freetype2/src/gzip/zlib.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 1995-2002 Jean-loup Gailly and Mark Adler + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/pcf/pcf.c +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/pcf/pcf.c +---------------------------------------------------------------------------------------------------- +Copyright 2000-2001, 2003 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/pcf/pcf.h +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/pcf/pcf.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000, 2001, 2002, 2003, 2006, 2010 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/pcf/pcfdrivr.c +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/pcf/pcfdrivr.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2000-2004, 2006-2011, 2013, 2014 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/pcf/pcfdrivr.h +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/pcf/pcfdrivr.h +---------------------------------------------------------------------------------------------------- +Copyright 2000-2001, 2002 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/pcf/pcfread.c +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/pcf/pcfread.c +---------------------------------------------------------------------------------------------------- +Copyright 2000-2010, 2012-2014 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/pcf/pcfread.h +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/pcf/pcfread.h +---------------------------------------------------------------------------------------------------- +Copyright 2003 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/pcf/pcfutil.c +TYPE: LicenseType.unknown +FILE: ../../../third_party/freetype2/src/pcf/pcfutil.c +---------------------------------------------------------------------------------------------------- +Copyright 1990, 1994, 1998 The Open Group + +Permission to use, copy, modify, distribute, and sell this software and its +documentation for any purpose is hereby granted without fee, provided that +the above copyright notice appear in all copies and that both that +copyright notice and this permission notice appear in supporting +documentation. + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the name of The Open Group shall not be +used in advertising or otherwise to promote the sale, use or other dealings +in this Software without prior written authorization from The Open Group. +==================================================================================================== + +==================================================================================================== +LIBRARY: freetype2 +ORIGIN: ../../../third_party/freetype2/src/pcf/pcfutil.h +TYPE: LicenseType.mit +FILE: ../../../third_party/freetype2/src/pcf/pcfutil.h +---------------------------------------------------------------------------------------------------- +Copyright 2000, 2001, 2004 by +Francesco Zappa Nardelli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/COPYING +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/.circleci/config.yml +FILE: ../../../third_party/harfbuzz/.editorconfig +FILE: ../../../third_party/harfbuzz/THANKS +FILE: ../../../third_party/harfbuzz/TODO +FILE: ../../../third_party/harfbuzz/appveyor.yml +FILE: ../../../third_party/harfbuzz/docs/HarfBuzz.png +FILE: ../../../third_party/harfbuzz/docs/HarfBuzz.svg +FILE: ../../../third_party/harfbuzz/docs/harfbuzz-docs.xml +FILE: ../../../third_party/harfbuzz/docs/usermanual-buffers-language-script-and-direction.xml +FILE: ../../../third_party/harfbuzz/docs/usermanual-clusters.xml +FILE: ../../../third_party/harfbuzz/docs/usermanual-fonts-and-faces.xml +FILE: ../../../third_party/harfbuzz/docs/usermanual-glyph-information.xml +FILE: ../../../third_party/harfbuzz/docs/usermanual-hello-harfbuzz.xml +FILE: ../../../third_party/harfbuzz/docs/usermanual-install-harfbuzz.xml +FILE: ../../../third_party/harfbuzz/docs/usermanual-opentype-features.xml +FILE: ../../../third_party/harfbuzz/docs/usermanual-what-is-harfbuzz.xml +FILE: ../../../third_party/harfbuzz/docs/version.xml.in +FILE: ../../../third_party/harfbuzz/harfbuzz.doap +FILE: ../../../third_party/harfbuzz/src/Makefile.sources +FILE: ../../../third_party/harfbuzz/src/harfbuzz-config.cmake.in +FILE: ../../../third_party/harfbuzz/src/harfbuzz-gobject.pc.in +FILE: ../../../third_party/harfbuzz/src/harfbuzz-icu.pc.in +FILE: ../../../third_party/harfbuzz/src/harfbuzz-subset.pc.in +FILE: ../../../third_party/harfbuzz/src/harfbuzz.pc.in +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic-table.cc +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-use-table.cc +---------------------------------------------------------------------------------------------------- +HarfBuzz is licensed under the so-called "Old MIT" license. Details follow. +For parts of HarfBuzz that are licensed under different licenses see individual +files names COPYING in subdirectories where applicable. + +Copyright © 2010,2011,2012 Google, Inc. +Copyright © 2012 Mozilla Foundation +Copyright © 2011 Codethink Limited +Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies) +Copyright © 2009 Keith Stribley +Copyright © 2009 Martin Hosken and SIL International +Copyright © 2007 Chris Wilson +Copyright © 2006 Behdad Esfahbod +Copyright © 2005 David Turner +Copyright © 2004,2007,2008,2009,2010 Red Hat, Inc. +Copyright © 1998-2004 David Turner and Werner Lemberg + +For full copyright notices consult the individual files in the package. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/dump-emoji.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/dump-emoji.cc +FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-ankr-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-bsln-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-feat-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-aat-ltag-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-color-colr-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-color-sbix-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-color-svg-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/dump-indic-data.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/dump-indic-data.cc +FILE: ../../../third_party/harfbuzz/src/dump-khmer-data.cc +FILE: ../../../third_party/harfbuzz/src/dump-myanmar-data.cc +FILE: ../../../third_party/harfbuzz/src/dump-use-data.cc +FILE: ../../../third_party/harfbuzz/src/hb-iter-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-map-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-map.cc +FILE: ../../../third_party/harfbuzz/src/hb-map.h +FILE: ../../../third_party/harfbuzz/src/hb-ot-hdmx-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-os2-unicode-ranges.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-khmer-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-myanmar-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-static.cc +FILE: ../../../third_party/harfbuzz/src/hb-subset-glyf.cc +FILE: ../../../third_party/harfbuzz/src/hb-subset-glyf.hh +FILE: ../../../third_party/harfbuzz/src/hb-subset-input.cc +FILE: ../../../third_party/harfbuzz/src/hb-subset-plan.cc +FILE: ../../../third_party/harfbuzz/src/hb-subset-plan.hh +FILE: ../../../third_party/harfbuzz/src/hb-subset-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-subset.cc +FILE: ../../../third_party/harfbuzz/src/hb-subset.h +FILE: ../../../third_party/harfbuzz/src/test-unicode-ranges.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-common-private.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-common-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-morx-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-aat-layout.cc +FILE: ../../../third_party/harfbuzz/src/hb-debug.hh +FILE: ../../../third_party/harfbuzz/src/hb-dsalgs.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-kern-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-post-macroman.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-var-avar-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-var-fvar-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-var-hvar-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-var-mvar-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-var.cc +FILE: ../../../third_party/harfbuzz/src/hb-ot-var.h +FILE: ../../../third_party/harfbuzz/src/hb-string-array.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2017 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-aat-layout-kerx-table.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-kerx-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-aat-layout-trak-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2018 Ebrahim Byagowi +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-atomic-private.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-atomic-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-mutex-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-object-private.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007 Chris Wilson +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-blob-private.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-blob-private.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-blob.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-blob.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-blob.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-blob.h +FILE: ../../../third_party/harfbuzz/src/hb-face.h +FILE: ../../../third_party/harfbuzz/src/hb-font.h +FILE: ../../../third_party/harfbuzz/src/hb-ot-tag.h +FILE: ../../../third_party/harfbuzz/src/hb-ot.h +FILE: ../../../third_party/harfbuzz/src/hb.h +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-json.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-json.hh +FILE: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-json.rl +FILE: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-text.hh +FILE: ../../../third_party/harfbuzz/src/hb-buffer-deserialize-text.rl +FILE: ../../../third_party/harfbuzz/src/hb-deprecated.h +FILE: ../../../third_party/harfbuzz/src/hb-gobject-enums.h.tmpl +FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-jstf-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-hangul.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-private.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-buffer-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-buffer.cc +---------------------------------------------------------------------------------------------------- +Copyright © 1998-2004 David Turner and Werner Lemberg +Copyright © 2004,2007,2009,2010 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer-serialize.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-buffer-serialize.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-buffer.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-buffer.h +---------------------------------------------------------------------------------------------------- +Copyright © 1998-2004 David Turner and Werner Lemberg +Copyright © 2004,2007,2009 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-common.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-common.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-common.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-common.h +FILE: ../../../third_party/harfbuzz/src/hb-private.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-coretext.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-coretext.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2012,2013 Mozilla Foundation. +Copyright © 2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-coretext.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-coretext.h +---------------------------------------------------------------------------------------------------- +Copyright © 2012 Mozilla Foundation. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-directwrite.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-directwrite.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2015-2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-directwrite.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-directwrite.h +---------------------------------------------------------------------------------------------------- +Copyright © 2015 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-face-private.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-face-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-font-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-glib.cc +FILE: ../../../third_party/harfbuzz/src/hb-glib.h +FILE: ../../../third_party/harfbuzz/src/hb-icu.h +FILE: ../../../third_party/harfbuzz/src/hb-ot-tag.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-face.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-face.cc +FILE: ../../../third_party/harfbuzz/src/hb-font.cc +FILE: ../../../third_party/harfbuzz/src/hb-shape.cc +FILE: ../../../third_party/harfbuzz/src/hb-shape.h +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-fallback-shape.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-fallback-shape.cc +FILE: ../../../third_party/harfbuzz/src/hb-gobject-enums.cc.tmpl +FILE: ../../../third_party/harfbuzz/src/hb-gobject-structs.cc +FILE: ../../../third_party/harfbuzz/src/hb-gobject-structs.h +FILE: ../../../third_party/harfbuzz/src/hb-gobject.h +FILE: ../../../third_party/harfbuzz/src/hb-uniscribe.h +FILE: ../../../third_party/harfbuzz/src/hb-version.h +FILE: ../../../third_party/harfbuzz/src/hb-version.h.in +---------------------------------------------------------------------------------------------------- +Copyright © 2011 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ft.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ft.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2009 Keith Stribley +Copyright © 2015 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ft.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ft.h +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2015 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-graphite2.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-graphite2.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2011 Martin Hosken +Copyright © 2011 SIL International +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-graphite2.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-graphite2.h +---------------------------------------------------------------------------------------------------- +Copyright © 2011 Martin Hosken +Copyright © 2011 SIL International + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-icu.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-icu.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2009 Keith Stribley +Copyright © 2011 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-machinery-private.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-machinery-private.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2012,2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-open-file-private.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-open-file-private.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-open-type-private.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-open-type-private.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-cmap-table.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-cmap-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-font.h +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-win1256.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2014 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-color-cbdt-table.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-color-cbdt-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-post-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2016 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-color-cpal-table.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-color-cpal-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-color.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2016 Google, Inc. +Copyright © 2018 Ebrahim Byagowi + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-font.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-font.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2011,2014 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-glyf-table.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-glyf-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2015 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-head-table.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-head-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2010 Red Hat, Inc. +Copyright © 2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-hhea-table.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-hhea-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-hmtx-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-maxp-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-name-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-os2-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic-machine.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic-machine.rl +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic.cc +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-khmer-machine.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-khmer-machine.rl +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-khmer.cc +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-myanmar-machine.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-myanmar-machine.rl +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-fallback.cc +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-normalize.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-base-table.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-base-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2016 Elie Roux +Copyright © 2018 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-common-private.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-common-private.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2010,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-gdef-table.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gdef-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2010,2011,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-gpos-table.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gpos-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gsub-table.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2010,2012,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-gsubgpos-private.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-gsubgpos-private.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009,2010 Red Hat, Inc. +Copyright © 2010,2012 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout-private.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-layout-private.hh ---------------------------------------------------------------------------------------------------- -Unicode® Terms of Use -For the general privacy policy governing access to this site, see the Unicode Privacy Policy. For trademark usage, see the Unicode® Consortium Name and Trademark Usage Policy. +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012,2013 Google, Inc. -A. Unicode Copyright. -1. Copyright © 1991-2017 Unicode, Inc. All rights reserved. -2. Certain documents and files on this website contain a legend indicating that "Modification is permitted." Any person is hereby authorized, without fee, to modify such documents and files to create derivative works conforming to the Unicode® Standard, subject to Terms and Conditions herein. -3. Any person is hereby authorized, without fee, to view, use, reproduce, and distribute all documents and files solely for informational purposes and in the creation of products supporting the Unicode Standard, subject to the Terms and Conditions herein. -4. Further specifications of rights and restrictions pertaining to the use of the particular set of data files known as the "Unicode Character Database" can be found in the License. -5. Each version of the Unicode Standard has further specifications of rights and restrictions of use. For the book editions (Unicode 5.0 and earlier), these are found on the back of the title page. The online code charts carry specific restrictions. All other files, including online documentation of the core specification for Unicode 6.0 and later, are covered under these general Terms of Use. -6. No license is granted to "mirror" the Unicode website where a fee is charged for access to the "mirror" site. -7. Modification is not permitted with respect to this document. All copies of this document must be verbatim. -B. Restricted Rights Legend. Any technical data or software which is licensed to the United States of America, its agencies and/or instrumentalities under this Agreement is commercial technical data or commercial computer software developed exclusively at private expense as defined in FAR 2.101, or DFARS 252.227-7014 (June 1995), as applicable. For technical data, use, duplication, or disclosure by the Government is subject to restrictions as set forth in DFARS 202.227-7015 Technical Data, Commercial and Items (Nov 1995) and this Agreement. For Software, in accordance with FAR 12-212 or DFARS 227-7202, as applicable, use, duplication or disclosure by the Government is subject to the restrictions set forth in this Agreement. -C. Warranties and Disclaimers. -1. This publication and/or website may include technical or typographical errors or other inaccuracies . Changes are periodically added to the information herein; these changes will be incorporated in new editions of the publication and/or website. Unicode may make improvements and/or changes in the product(s) and/or program(s) described in this publication and/or website at any time. -2. If this file has been purchased on magnetic or optical media from Unicode, Inc. the sole and exclusive remedy for any claim will be exchange of the defective media within ninety (90) days of original purchase. -3. EXCEPT AS PROVIDED IN SECTION C.2, THIS PUBLICATION AND/OR SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. UNICODE AND ITS LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR OMISSIONS IN THIS PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH ARE REFERENCED BY OR LINKED TO THIS PUBLICATION OR THE UNICODE WEBSITE. -D. Waiver of Damages. In no event shall Unicode or its licensors be liable for any special, incidental, indirect or consequential damages of any kind, or any damages whatsoever, whether or not Unicode was advised of the possibility of the damage, including, without limitation, those resulting from the following: loss of use, data or profits, in connection with the use, modification or distribution of this information or its derivatives. -E. Trademarks & Logos. -1. The Unicode Word Mark and the Unicode Logo are trademarks of Unicode, Inc. “The Unicode Consortium” and “Unicode, Inc.” are trade names of Unicode, Inc. Use of the information and materials found on this website indicates your acknowledgement of Unicode, Inc.’s exclusive worldwide rights in the Unicode Word Mark, the Unicode Logo, and the Unicode trade names. -2. The Unicode Consortium Name and Trademark Usage Policy (“Trademark Policy”) are incorporated herein by reference and you agree to abide by the provisions of the Trademark Policy, which may be changed from time to time in the sole discretion of Unicode, Inc. -3. All third party trademarks referenced herein are the property of their respective owners. -F. Miscellaneous. -1. Jurisdiction and Venue. This server is operated from a location in the State of California, United States of America. Unicode makes no representation that the materials are appropriate for use in other locations. If you access this server from other locations, you are responsible for compliance with local laws. This Agreement, all use of this site and any claims and damages resulting from use of this site are governed solely by the laws of the State of California without regard to any principles which would apply the laws of a different jurisdiction. The user agrees that any disputes regarding this site shall be resolved solely in the courts located in Santa Clara County, California. The user agrees said courts have personal jurisdiction and agree to waive any right to transfer the dispute to any other forum. -2. Modification by Unicode Unicode shall have the right to modify this Agreement at any time by posting it to this site. The user may not assign any part of this Agreement without Unicode’s prior written consent. -3. Taxes. The user agrees to pay any taxes arising from access to this website or use of the information herein, except for those based on Unicode’s net income. -4. Severability. If any provision of this Agreement is declared invalid or unenforceable, the remaining provisions of this Agreement shall remain in effect. -5. Entire Agreement. This Agreement constitutes the entire agreement between the parties. + This is part of HarfBuzz, a text shaping library. -EXHIBIT 1 -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. -Unicode Data Files include all data files under the directories -http://www.unicode.org/Public/, http://www.unicode.org/reports/, -http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and -http://www.unicode.org/utility/trac/browser/. +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. -Unicode Data Files do not include PDF online code charts under the -directory http://www.unicode.org/Public/. +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== -Software includes any source code published in the Unicode Standard -or under the directories -http://www.unicode.org/Public/, http://www.unicode.org/reports/, -http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and -http://www.unicode.org/utility/trac/browser/. +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-layout.cc +---------------------------------------------------------------------------------------------------- +Copyright © 1998-2004 David Turner and Werner Lemberg +Copyright © 2006 Behdad Esfahbod +Copyright © 2007,2008,2009 Red Hat, Inc. +Copyright © 2012,2013 Google, Inc. -NOTICE TO USER: Carefully read the following legal agreement. -BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S -DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), -YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE -TERMS AND CONDITIONS OF THIS AGREEMENT. -IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE -THE DATA FILES OR SOFTWARE. + This is part of HarfBuzz, a text shaping library. -COPYRIGHT AND PERMISSION NOTICE +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. -Copyright © 1991-2017 Unicode, Inc. All rights reserved. -Distributed under the Terms of Use in http://www.unicode.org/copyright.html. +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-layout.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-layout.h +FILE: ../../../third_party/harfbuzz/src/main.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2007,2008,2009 Red Hat, Inc. -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== ==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/source/data/mappings/iso-8859_10-1998.ucm +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-map-private.hh TYPE: LicenseType.unknown -FILE: ../../../third_party/icu/source/data/mappings/iso-8859_10-1998.ucm +FILE: ../../../third_party/harfbuzz/src/hb-ot-map-private.hh ---------------------------------------------------------------------------------------------------- -Copyright (c) 1999 Unicode, Inc. All Rights reserved. - Copyright (C) 2002-2005, International Business Machines - Corporation and others. All Rights Reserved. +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2010,2011,2012,2013 Google, Inc. -This file is provided as-is by Unicode, Inc. (The Unicode Consortium). -No claims are made as to fitness for any particular purpose. No -warranties of any kind are expressed or implied. The recipient -agrees to determine applicability of information provided. If this -file has been provided on optical media by Unicode, Inc., the sole -remedy for any claim will be exchange of defective media within 90 -days of receipt. + This is part of HarfBuzz, a text shaping library. -Unicode, Inc. hereby grants the right to freely use the information -supplied in this file in the creation of products supporting the -Unicode Standard, and to make copies of this file in any form for -internal or external distribution as long as this notice remains -attached. +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-map.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-map.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2010,2011,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-math-table.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-math-table.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-math.cc +FILE: ../../../third_party/harfbuzz/src/hb-ot-math.h +---------------------------------------------------------------------------------------------------- +Copyright © 2016 Igalia S.L. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== ==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/source/data/mappings/iso-8859_11-2001.ucm +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-fallback.hh TYPE: LicenseType.unknown -FILE: ../../../third_party/icu/source/data/mappings/iso-8859_11-2001.ucm +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-fallback.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-indic-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-fallback-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-normalize-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-set-digest-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-set.cc +FILE: ../../../third_party/harfbuzz/src/hb-set.h +FILE: ../../../third_party/harfbuzz/src/hb-shape-plan-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-shape-plan.cc +FILE: ../../../third_party/harfbuzz/src/hb-shape-plan.h +FILE: ../../../third_party/harfbuzz/src/hb-shaper-impl-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-shaper-list.hh +FILE: ../../../third_party/harfbuzz/src/hb-shaper-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-shaper.cc +FILE: ../../../third_party/harfbuzz/src/hb-warning.cc ---------------------------------------------------------------------------------------------------- -Copyright (c) 2002 Unicode, Inc. All Rights reserved. - Copyright (C) 2002-2005, International Business Machines - Corporation and others. All Rights Reserved. +Copyright © 2012 Google, Inc. -This file is provided as-is by Unicode, Inc. (The Unicode Consortium). -No claims are made as to fitness for any particular purpose. No -warranties of any kind are expressed or implied. The recipient -agrees to determine applicability of information provided. If this -file has been provided on optical media by Unicode, Inc., the sole -remedy for any claim will be exchange of defective media within 90 -days of receipt. + This is part of HarfBuzz, a text shaping library. -Unicode, Inc. hereby grants the right to freely use the information -supplied in this file in the creation of products supporting the -Unicode Standard, and to make copies of this file in any form for -internal or external distribution as long as this notice remains -attached. +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== ==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/source/data/mappings/iso-8859_14-1998.ucm +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-private.hh TYPE: LicenseType.unknown -FILE: ../../../third_party/icu/source/data/mappings/iso-8859_14-1998.ucm +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-use-machine.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-use-machine.rl +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-use-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-use.cc ---------------------------------------------------------------------------------------------------- -Copyright (c) 1998 - 1999 Unicode, Inc. All Rights reserved. - Copyright (C) 2002-2005, International Business Machines - Corporation and others. All Rights Reserved. +Copyright © 2015 Mozilla Foundation. +Copyright © 2015 Google, Inc. -This file is provided as-is by Unicode, Inc. (The Unicode Consortium). -No claims are made as to fitness for any particular purpose. No -warranties of any kind are expressed or implied. The recipient -agrees to determine applicability of information provided. If this -file has been provided on optical media by Unicode, Inc., the sole -remedy for any claim will be exchange of defective media within 90 -days of receipt. + This is part of HarfBuzz, a text shaping library. -Unicode, Inc. hereby grants the right to freely use the information -supplied in this file in the creation of products supporting the -Unicode Standard, and to make copies of this file in any form for -internal or external distribution as long as this notice remains -attached. +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== ==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/source/i18n/decContext.cpp + ../../../third_party/icu/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/source/i18n/decContext.cpp +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-arabic.cc +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-default.cc +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-hebrew.cc +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-thai.cc +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-tibetan.cc ---------------------------------------------------------------------------------------------------- -Copyright (c) IBM Corporation, 2000-2012. All rights reserved. +Copyright © 2010,2012 Google, Inc. - Institute of Information Science, Academia - * Sinica. All rights reserved. + This is part of HarfBuzz, a text shaping library. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. -. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. -. Neither the name of the Computer Systems and Communication Lab - nor the names of its contributors may be used to endorse or - promote products derived from this software without specific - prior written permission. +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== ==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/source/i18n/decContext.h + ../../../third_party/icu/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/source/i18n/decContext.h +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-myanmar.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-myanmar.cc +FILE: ../../../third_party/harfbuzz/src/hb-uniscribe.cc ---------------------------------------------------------------------------------------------------- -Copyright (c) IBM Corporation, 2000-2011. All rights reserved. +Copyright © 2011,2012,2013 Google, Inc. - Institute of Information Science, Academia - * Sinica. All rights reserved. + This is part of HarfBuzz, a text shaping library. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. -. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. -. Neither the name of the Computer Systems and Communication Lab - nor the names of its contributors may be used to endorse or - promote products derived from this software without specific - prior written permission. +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== ==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/source/i18n/decNumber.cpp + ../../../third_party/icu/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/source/i18n/decNumber.cpp +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-private.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-complex-private.hh ---------------------------------------------------------------------------------------------------- -Copyright (c) IBM Corporation, 2000-2014. All rights reserved. - - Institute of Information Science, Academia - * Sinica. All rights reserved. +Copyright © 2010,2011,2012 Google, Inc. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: + This is part of HarfBuzz, a text shaping library. -. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. -. Neither the name of the Computer Systems and Communication Lab - nor the names of its contributors may be used to endorse or - promote products derived from this software without specific - prior written permission. +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== ==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/source/i18n/decNumber.h + ../../../third_party/icu/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/source/i18n/decNumber.h +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape-private.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape-private.hh ---------------------------------------------------------------------------------------------------- -Copyright (c) IBM Corporation, 2000-2010. All rights reserved. +Copyright © 2010 Google, Inc. - Institute of Information Science, Academia - * Sinica. All rights reserved. + This is part of HarfBuzz, a text shaping library. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. -. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. -. Neither the name of the Computer Systems and Communication Lab - nor the names of its contributors may be used to endorse or - promote products derived from this software without specific - prior written permission. +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== ==================================================================================================== -LIBRARY: icu -ORIGIN: ../../../third_party/icu/source/i18n/decNumberLocal.h + ../../../third_party/icu/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/icu/source/i18n/decNumberLocal.h +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape.cc ---------------------------------------------------------------------------------------------------- -Copyright (c) IBM Corporation, 2000-2016. All rights reserved. +Copyright © 2009,2010 Red Hat, Inc. +Copyright © 2010,2011,2012 Google, Inc. - Institute of Information Science, Academia - * Sinica. All rights reserved. + This is part of HarfBuzz, a text shaping library. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. -. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. -. Neither the name of the Computer Systems and Communication Lab - nor the names of its contributors may be used to endorse or - promote products derived from this software without specific - prior written permission. +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS -FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE -REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED -OF THE POSSIBILITY OF SUCH DAMAGE. +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/README.ijg -TYPE: LicenseType.ijg -FILE: ../../../third_party/libjpeg-turbo/cderror.h -FILE: ../../../third_party/libjpeg-turbo/cdjpeg.c -FILE: ../../../third_party/libjpeg-turbo/cdjpeg.h -FILE: ../../../third_party/libjpeg-turbo/cjpeg.c -FILE: ../../../third_party/libjpeg-turbo/djpeg.c -FILE: ../../../third_party/libjpeg-turbo/jaricom.c -FILE: ../../../third_party/libjpeg-turbo/jcapimin.c -FILE: ../../../third_party/libjpeg-turbo/jcapistd.c -FILE: ../../../third_party/libjpeg-turbo/jcarith.c -FILE: ../../../third_party/libjpeg-turbo/jccoefct.c -FILE: ../../../third_party/libjpeg-turbo/jccolext.c -FILE: ../../../third_party/libjpeg-turbo/jccolor.c -FILE: ../../../third_party/libjpeg-turbo/jcdctmgr.c -FILE: ../../../third_party/libjpeg-turbo/jchuff.c -FILE: ../../../third_party/libjpeg-turbo/jchuff.h -FILE: ../../../third_party/libjpeg-turbo/jcinit.c -FILE: ../../../third_party/libjpeg-turbo/jcmainct.c -FILE: ../../../third_party/libjpeg-turbo/jcmarker.c -FILE: ../../../third_party/libjpeg-turbo/jcmaster.c -FILE: ../../../third_party/libjpeg-turbo/jcomapi.c -FILE: ../../../third_party/libjpeg-turbo/jconfig.h -FILE: ../../../third_party/libjpeg-turbo/jconfig.h -FILE: ../../../third_party/libjpeg-turbo/jconfig.h.in -FILE: ../../../third_party/libjpeg-turbo/jconfig.h.in -FILE: ../../../third_party/libjpeg-turbo/jconfigint.h -FILE: ../../../third_party/libjpeg-turbo/jconfigint.h -FILE: ../../../third_party/libjpeg-turbo/jconfigint.h.in -FILE: ../../../third_party/libjpeg-turbo/jconfigint.h.in -FILE: ../../../third_party/libjpeg-turbo/jcparam.c -FILE: ../../../third_party/libjpeg-turbo/jcphuff.c -FILE: ../../../third_party/libjpeg-turbo/jcprepct.c -FILE: ../../../third_party/libjpeg-turbo/jcsample.c -FILE: ../../../third_party/libjpeg-turbo/jctrans.c -FILE: ../../../third_party/libjpeg-turbo/jdapimin.c -FILE: ../../../third_party/libjpeg-turbo/jdapistd.c -FILE: ../../../third_party/libjpeg-turbo/jdarith.c -FILE: ../../../third_party/libjpeg-turbo/jdatadst-tj.c -FILE: ../../../third_party/libjpeg-turbo/jdatadst.c -FILE: ../../../third_party/libjpeg-turbo/jdatasrc-tj.c -FILE: ../../../third_party/libjpeg-turbo/jdatasrc.c -FILE: ../../../third_party/libjpeg-turbo/jdcoefct.c -FILE: ../../../third_party/libjpeg-turbo/jdcoefct.h -FILE: ../../../third_party/libjpeg-turbo/jdcol565.c -FILE: ../../../third_party/libjpeg-turbo/jdcolext.c -FILE: ../../../third_party/libjpeg-turbo/jdcolor.c -FILE: ../../../third_party/libjpeg-turbo/jdct.h -FILE: ../../../third_party/libjpeg-turbo/jddctmgr.c -FILE: ../../../third_party/libjpeg-turbo/jdhuff.c -FILE: ../../../third_party/libjpeg-turbo/jdhuff.h -FILE: ../../../third_party/libjpeg-turbo/jdinput.c -FILE: ../../../third_party/libjpeg-turbo/jdmainct.c -FILE: ../../../third_party/libjpeg-turbo/jdmainct.h -FILE: ../../../third_party/libjpeg-turbo/jdmarker.c -FILE: ../../../third_party/libjpeg-turbo/jdmaster.c -FILE: ../../../third_party/libjpeg-turbo/jdmaster.h -FILE: ../../../third_party/libjpeg-turbo/jdmerge.c -FILE: ../../../third_party/libjpeg-turbo/jdmrg565.c -FILE: ../../../third_party/libjpeg-turbo/jdmrgext.c -FILE: ../../../third_party/libjpeg-turbo/jdphuff.c -FILE: ../../../third_party/libjpeg-turbo/jdpostct.c -FILE: ../../../third_party/libjpeg-turbo/jdsample.c -FILE: ../../../third_party/libjpeg-turbo/jdsample.h -FILE: ../../../third_party/libjpeg-turbo/jdtrans.c -FILE: ../../../third_party/libjpeg-turbo/jerror.c -FILE: ../../../third_party/libjpeg-turbo/jerror.h -FILE: ../../../third_party/libjpeg-turbo/jfdctflt.c -FILE: ../../../third_party/libjpeg-turbo/jfdctfst.c -FILE: ../../../third_party/libjpeg-turbo/jfdctint.c -FILE: ../../../third_party/libjpeg-turbo/jidctflt.c -FILE: ../../../third_party/libjpeg-turbo/jidctfst.c -FILE: ../../../third_party/libjpeg-turbo/jidctint.c -FILE: ../../../third_party/libjpeg-turbo/jidctred.c -FILE: ../../../third_party/libjpeg-turbo/jinclude.h -FILE: ../../../third_party/libjpeg-turbo/jmemmgr.c -FILE: ../../../third_party/libjpeg-turbo/jmemnobs.c -FILE: ../../../third_party/libjpeg-turbo/jmemsys.h -FILE: ../../../third_party/libjpeg-turbo/jmorecfg.h -FILE: ../../../third_party/libjpeg-turbo/jpeg_nbits_table.h -FILE: ../../../third_party/libjpeg-turbo/jpeg_nbits_table.h -FILE: ../../../third_party/libjpeg-turbo/jpegcomp.h -FILE: ../../../third_party/libjpeg-turbo/jpegint.h -FILE: ../../../third_party/libjpeg-turbo/jpeglib.h -FILE: ../../../third_party/libjpeg-turbo/jpegtran.c -FILE: ../../../third_party/libjpeg-turbo/jquant1.c -FILE: ../../../third_party/libjpeg-turbo/jquant2.c -FILE: ../../../third_party/libjpeg-turbo/jstdhuff.c -FILE: ../../../third_party/libjpeg-turbo/jutils.c -FILE: ../../../third_party/libjpeg-turbo/jversion.h -FILE: ../../../third_party/libjpeg-turbo/libjpeg.map.in -FILE: ../../../third_party/libjpeg-turbo/libjpeg.map.in -FILE: ../../../third_party/libjpeg-turbo/rdbmp.c -FILE: ../../../third_party/libjpeg-turbo/rdcolmap.c -FILE: ../../../third_party/libjpeg-turbo/rdgif.c -FILE: ../../../third_party/libjpeg-turbo/rdjpgcom.c -FILE: ../../../third_party/libjpeg-turbo/rdppm.c -FILE: ../../../third_party/libjpeg-turbo/rdrle.c -FILE: ../../../third_party/libjpeg-turbo/rdswitch.c -FILE: ../../../third_party/libjpeg-turbo/rdtarga.c -FILE: ../../../third_party/libjpeg-turbo/simd/jcsample.h -FILE: ../../../third_party/libjpeg-turbo/simd/jpeg_nbits_table.inc -FILE: ../../../third_party/libjpeg-turbo/simd/jpeg_nbits_table.inc -FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc -FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc -FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc.h -FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc.h -FILE: ../../../third_party/libjpeg-turbo/transupp.c -FILE: ../../../third_party/libjpeg-turbo/transupp.h -FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile -FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile -FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile.jni -FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile.jni -FILE: ../../../third_party/libjpeg-turbo/wrbmp.c -FILE: ../../../third_party/libjpeg-turbo/wrgif.c -FILE: ../../../third_party/libjpeg-turbo/wrjpgcom.c -FILE: ../../../third_party/libjpeg-turbo/wrppm.c -FILE: ../../../third_party/libjpeg-turbo/wrppm.h -FILE: ../../../third_party/libjpeg-turbo/wrrle.c -FILE: ../../../third_party/libjpeg-turbo/wrtarga.c +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ot-shape.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ot-shape.h +---------------------------------------------------------------------------------------------------- +Copyright © 2013 Red Hat, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-set-private.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-set-private.hh ---------------------------------------------------------------------------------------------------- -libjpeg-turbo note: This file has been modified by The libjpeg-turbo Project -to include only information relevant to libjpeg-turbo, to wordsmith certain -sections, and to remove impolitic language that existed in the libjpeg v8 -README. It is included only for reference. Please see README.md for -information specific to libjpeg-turbo. +Copyright © 2012,2017 Google, Inc. -The Independent JPEG Group's JPEG software -========================================== + This is part of HarfBuzz, a text shaping library. -This distribution contains a release of the Independent JPEG Group's free JPEG -software. You are welcome to redistribute this software and to use it for any -purpose, subject to the conditions under LEGAL ISSUES, below. +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. -This software is the work of Tom Lane, Guido Vollbeding, Philip Gladstone, -Bill Allombert, Jim Boucher, Lee Crocker, Bob Friesenhahn, Ben Jackson, -Julian Minguillon, Luis Ortiz, George Phillips, Davide Rossi, Ge' Weijers, -and other members of the Independent JPEG Group. +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. -IJG is not affiliated with the ISO/IEC JTC1/SC29/WG1 standards committee -(also known as JPEG, together with ITU-T SG16). +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== -DOCUMENTATION ROADMAP -===================== +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ucdn/COPYING +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ucdn/Makefile.sources +FILE: ../../../third_party/harfbuzz/src/hb-ucdn/ucdn_db.h +---------------------------------------------------------------------------------------------------- +The contents of this directory are licensed under the following terms: -This file contains the following sections: +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. -OVERVIEW General description of JPEG and the IJG software. -LEGAL ISSUES Copyright, lack of warranty, terms of distribution. -REFERENCES Where to learn more about JPEG. -ARCHIVE LOCATIONS Where to find newer versions of this software. -FILE FORMAT WARS Software *not* to get. -TO DO Plans for future IJG releases. +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +==================================================================================================== -Other documentation files in the distribution are: +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-ucdn/ucdn.c +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-ucdn.cc +FILE: ../../../third_party/harfbuzz/src/hb-ucdn/ucdn.c +FILE: ../../../third_party/harfbuzz/src/hb-ucdn/ucdn.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2012 Grigori Goronzy -User documentation: - usage.txt Usage instructions for cjpeg, djpeg, jpegtran, - rdjpgcom, and wrjpgcom. - *.1 Unix-style man pages for programs (same info as usage.txt). - wizard.txt Advanced usage instructions for JPEG wizards only. - change.log Version-to-version change highlights. -Programmer and internal documentation: - libjpeg.txt How to use the JPEG library in your own programs. - example.c Sample code for calling the JPEG library. - structure.txt Overview of the JPEG library's internal structure. - coderules.txt Coding style rules --- please read if you contribute code. +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted, provided that the above +copyright notice and this permission notice appear in all copies. -Please read at least usage.txt. Some information can also be found in the JPEG -FAQ (Frequently Asked Questions) article. See ARCHIVE LOCATIONS below to find -out where to obtain the FAQ article. +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +==================================================================================================== -If you want to understand how the JPEG code works, we suggest reading one or -more of the REFERENCES, then looking at the documentation files (in roughly -the order listed) before diving into the code. +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-unicode-private.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-unicode-private.hh +FILE: ../../../third_party/harfbuzz/src/hb-unicode.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Codethink Limited +Copyright © 2010,2011,2012 Google, Inc. -OVERVIEW -======== + This is part of HarfBuzz, a text shaping library. -This package contains C software to implement JPEG image encoding, decoding, -and transcoding. JPEG (pronounced "jay-peg") is a standardized compression -method for full-color and grayscale images. JPEG's strong suit is compressing -photographic images or other types of images that have smooth color and -brightness transitions between neighboring pixels. Images with sharp lines or -other abrupt features may not compress well with JPEG, and a higher JPEG -quality may have to be used to avoid visible compression artifacts with such -images. +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. -JPEG is lossy, meaning that the output pixels are not necessarily identical to -the input pixels. However, on photographic content and other "smooth" images, -very good compression ratios can be obtained with no visible compression -artifacts, and extremely high compression ratios are possible if you are -willing to sacrifice image quality (by reducing the "quality" setting in the -compressor.) +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. -This software implements JPEG baseline, extended-sequential, and progressive -compression processes. Provision is made for supporting all variants of these -processes, although some uncommon parameter settings aren't implemented yet. -We have made no provision for supporting the hierarchical or lossless -processes defined in the standard. +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== -We provide a set of library routines for reading and writing JPEG image files, -plus two sample applications "cjpeg" and "djpeg", which use the library to -perform conversion between JPEG and some other popular image file formats. -The library is intended to be reused in other applications. +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-unicode.h +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-unicode.h +---------------------------------------------------------------------------------------------------- +Copyright © 2009 Red Hat, Inc. +Copyright © 2011 Codethink Limited +Copyright © 2011,2012 Google, Inc. -In order to support file conversion and viewing software, we have included -considerable functionality beyond the bare JPEG coding/decoding capability; -for example, the color quantization modules are not strictly part of JPEG -decoding, but they are essential for output to colormapped file formats or -colormapped displays. These extra functions can be compiled out of the -library if not required for a particular application. + This is part of HarfBuzz, a text shaping library. -We have also included "jpegtran", a utility for lossless transcoding between -different JPEG processes, and "rdjpgcom" and "wrjpgcom", two simple -applications for inserting and extracting textual comments in JFIF files. +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. -The emphasis in designing this software has been on achieving portability and -flexibility, while also making it fast enough to be useful. In particular, -the software is not intended to be read as a tutorial on JPEG. (See the -REFERENCES section for introductory material.) Rather, it is intended to -be reliable, portable, industrial-strength code. We do not claim to have -achieved that goal in every aspect of the software, but we strive for it. +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. -We welcome the use of this software as a component of commercial products. -No royalty is required, but we do ask for an acknowledgement in product -documentation, as described under LEGAL ISSUES. +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== -LEGAL ISSUES -============ +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/hb-utf-private.hh +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/hb-utf-private.hh +---------------------------------------------------------------------------------------------------- +Copyright © 2011,2012,2014 Google, Inc. -In plain English: + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/test-buffer-serialize.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/test-buffer-serialize.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2010,2011,2013 Google, Inc. + + This is part of HarfBuzz, a text shaping library. + +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. + +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== + +==================================================================================================== +LIBRARY: harfbuzz +ORIGIN: ../../../third_party/harfbuzz/src/test-size-params.cc +TYPE: LicenseType.unknown +FILE: ../../../third_party/harfbuzz/src/test-size-params.cc +FILE: ../../../third_party/harfbuzz/src/test-would-substitute.cc +FILE: ../../../third_party/harfbuzz/src/test.cc +---------------------------------------------------------------------------------------------------- +Copyright © 2010,2011 Google, Inc. -1. We don't promise that this software works. (But if you find any bugs, - please let us know!) -2. You can use this software for whatever you want. You don't have to pay us. -3. You may not pretend that you wrote this software. If you use it in a - program, you must acknowledge somewhere in your documentation that - you've used the IJG code. + This is part of HarfBuzz, a text shaping library. -In legalese: +Permission is hereby granted, without written agreement and without +license or royalty fees, to use, copy, modify, and distribute this +software and its documentation for any purpose, provided that the +above copyright notice and the following two paragraphs appear in +all copies of this software. -The authors make NO WARRANTY or representation, either express or implied, -with respect to this software, its quality, accuracy, merchantability, or -fitness for a particular purpose. This software is provided "AS IS", and you, -its user, assume the entire risk as to its quality and accuracy. +IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR +DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES +ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN +IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. -This software is copyright (C) 1991-2016, Thomas G. Lane, Guido Vollbeding. -All Rights Reserved except as specified below. +THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, +BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS +ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO +PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. +==================================================================================================== -Permission is hereby granted to use, copy, modify, and distribute this -software (or portions thereof) for any purpose, without fee, subject to these -conditions: -(1) If any part of the source code for this software is distributed, then this -README file must be included, with this copyright and no-warranty notice -unaltered; and any additions, deletions, or changes to the original files -must be clearly indicated in accompanying documentation. -(2) If only executable code is distributed, then the accompanying -documentation must state that "this software is based in part on the work of -the Independent JPEG Group". -(3) Permission for use of this software is granted only if the user accepts -full responsibility for any undesirable consequences; the authors accept -NO LIABILITY for damages of any kind. +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/icu.isolate +---------------------------------------------------------------------------------------------------- +Copyright 2014 The Chromium Authors. All rights reserved. -These conditions apply to any software derived from or based on the IJG code, -not just to the unmodified library. If you use our work, you ought to -acknowledge us. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -Permission is NOT granted for the use of any IJG author's name or company name -in advertising or publicity relating to this software or products derived from -it. This software may be referred to only as "the Independent JPEG Group's -software". + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. -We specifically permit and encourage the use of this software as the basis of -commercial products, provided that all warranty or liability claims are -assumed by the product vendor. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -The Unix configuration script "configure" was produced with GNU Autoconf. -It is copyright by the Free Software Foundation but is freely distributable. -The same holds for its supporting scripts (config.guess, config.sub, -ltmain.sh). Another support script, install-sh, is copyright by X Consortium -but is also freely distributable. +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/dart/runtime/third_party/double-conversion/COPYING +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/android/brkitr.patch +FILE: ../../../third_party/icu/android/currencies.list +FILE: ../../../third_party/icu/android/icudtl.dat +FILE: ../../../third_party/icu/cast/icudtl.dat +FILE: ../../../third_party/icu/common/icudtb.dat +FILE: ../../../third_party/icu/common/icudtl.dat +FILE: ../../../third_party/icu/flutter/brkitr.patch +FILE: ../../../third_party/icu/flutter/icudtl.dat +FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc +FILE: ../../../third_party/icu/ios/icudtl.dat +FILE: ../../../third_party/icu/patches/cjdict.patch +FILE: ../../../third_party/icu/patches/data.build.patch +FILE: ../../../third_party/icu/patches/data.build.win.patch +FILE: ../../../third_party/icu/patches/data_symb.patch +FILE: ../../../third_party/icu/patches/decimalformat_align.patch +FILE: ../../../third_party/icu/patches/double_conversion.patch +FILE: ../../../third_party/icu/patches/gb_table.patch +FILE: ../../../third_party/icu/patches/greek_lowercase.patch +FILE: ../../../third_party/icu/patches/isvalidenum.patch +FILE: ../../../third_party/icu/patches/khmer-dictbe.patch +FILE: ../../../third_party/icu/patches/locale1.patch +FILE: ../../../third_party/icu/patches/locale_google.patch +FILE: ../../../third_party/icu/patches/locid_map.patch +FILE: ../../../third_party/icu/patches/nf_maxsig.patch +FILE: ../../../third_party/icu/patches/vscomp.patch +FILE: ../../../third_party/icu/patches/wordbrk.patch +FILE: ../../../third_party/icu/patches/wpo.patch +FILE: ../../../third_party/icu/source/data/curr/pool.res +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu +FILE: ../../../third_party/icu/source/data/in/nfc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm +FILE: ../../../third_party/icu/source/data/in/pnames.icu +FILE: ../../../third_party/icu/source/data/in/ubidi.icu +FILE: ../../../third_party/icu/source/data/in/ucase.icu +FILE: ../../../third_party/icu/source/data/in/unames.icu +FILE: ../../../third_party/icu/source/data/in/uprops.icu +FILE: ../../../third_party/icu/source/data/in/uts46.nrm +FILE: ../../../third_party/icu/source/data/lang/pool.res +FILE: ../../../third_party/icu/source/data/locales/pool.res +FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm +FILE: ../../../third_party/icu/source/data/region/pool.res +FILE: ../../../third_party/icu/source/data/unit/pool.res +FILE: ../../../third_party/icu/source/data/zone/pool.res +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw +FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin +FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c +FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c +FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c +FILE: ../../../third_party/icu/source/tools/tzcode/private.h +FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c +FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h +FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh +FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c +FILE: ../../../third_party/icu/source/tools/tzcode/zic.c +FILE: ../../../third_party/icu/windows/icudt.dll +---------------------------------------------------------------------------------------------------- +Copyright 2006-2011, the V8 project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -The IJG distribution formerly included code to read and write GIF files. -To avoid entanglement with the Unisys LZW patent (now expired), GIF reading -support has been removed altogether, and the GIF writer has been simplified -to produce "uncompressed GIFs". This technique does not use the LZW -algorithm; the resulting GIF files are larger than usual, but are readable -by all standard GIF decoders. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -We are required to state that - "The Graphics Interchange Format(c) is the Copyright property of - CompuServe Incorporated. GIF(sm) is a Service Mark property of - CompuServe Incorporated." +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -REFERENCES -========== +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/android/brkitr.patch +FILE: ../../../third_party/icu/android/currencies.list +FILE: ../../../third_party/icu/android/icudtl.dat +FILE: ../../../third_party/icu/cast/icudtl.dat +FILE: ../../../third_party/icu/common/icudtb.dat +FILE: ../../../third_party/icu/common/icudtl.dat +FILE: ../../../third_party/icu/flutter/brkitr.patch +FILE: ../../../third_party/icu/flutter/icudtl.dat +FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc +FILE: ../../../third_party/icu/ios/icudtl.dat +FILE: ../../../third_party/icu/patches/cjdict.patch +FILE: ../../../third_party/icu/patches/data.build.patch +FILE: ../../../third_party/icu/patches/data.build.win.patch +FILE: ../../../third_party/icu/patches/data_symb.patch +FILE: ../../../third_party/icu/patches/decimalformat_align.patch +FILE: ../../../third_party/icu/patches/double_conversion.patch +FILE: ../../../third_party/icu/patches/gb_table.patch +FILE: ../../../third_party/icu/patches/greek_lowercase.patch +FILE: ../../../third_party/icu/patches/isvalidenum.patch +FILE: ../../../third_party/icu/patches/khmer-dictbe.patch +FILE: ../../../third_party/icu/patches/locale1.patch +FILE: ../../../third_party/icu/patches/locale_google.patch +FILE: ../../../third_party/icu/patches/locid_map.patch +FILE: ../../../third_party/icu/patches/nf_maxsig.patch +FILE: ../../../third_party/icu/patches/vscomp.patch +FILE: ../../../third_party/icu/patches/wordbrk.patch +FILE: ../../../third_party/icu/patches/wpo.patch +FILE: ../../../third_party/icu/source/data/curr/pool.res +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu +FILE: ../../../third_party/icu/source/data/in/nfc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm +FILE: ../../../third_party/icu/source/data/in/pnames.icu +FILE: ../../../third_party/icu/source/data/in/ubidi.icu +FILE: ../../../third_party/icu/source/data/in/ucase.icu +FILE: ../../../third_party/icu/source/data/in/unames.icu +FILE: ../../../third_party/icu/source/data/in/uprops.icu +FILE: ../../../third_party/icu/source/data/in/uts46.nrm +FILE: ../../../third_party/icu/source/data/lang/pool.res +FILE: ../../../third_party/icu/source/data/locales/pool.res +FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm +FILE: ../../../third_party/icu/source/data/region/pool.res +FILE: ../../../third_party/icu/source/data/unit/pool.res +FILE: ../../../third_party/icu/source/data/zone/pool.res +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw +FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin +FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c +FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c +FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c +FILE: ../../../third_party/icu/source/tools/tzcode/private.h +FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c +FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h +FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh +FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c +FILE: ../../../third_party/icu/source/tools/tzcode/zic.c +FILE: ../../../third_party/icu/windows/icudt.dll +---------------------------------------------------------------------------------------------------- +Copyright (c) 1999 Computer Systems and Communication Lab, + Institute of Information Science, Academia + * Sinica. All rights reserved. -We recommend reading one or more of these references before trying to -understand the innards of the JPEG software. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The best short technical introduction to the JPEG compression algorithm is - Wallace, Gregory K. "The JPEG Still Picture Compression Standard", - Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44. -(Adjacent articles in that issue discuss MPEG motion picture compression, -applications of JPEG, and related topics.) If you don't have the CACM issue -handy, a PDF file containing a revised version of Wallace's article is -available at http://www.ijg.org/files/Wallace.JPEG.pdf. The file (actually -a preprint for an article that appeared in IEEE Trans. Consumer Electronics) -omits the sample images that appeared in CACM, but it includes corrections -and some added material. Note: the Wallace article is copyright ACM and IEEE, -and it may not be used for commercial purposes. +. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. +. Neither the name of the Computer Systems and Communication Lab + nor the names of its contributors may be used to endorse or + promote products derived from this software without specific + prior written permission. -A somewhat less technical, more leisurely introduction to JPEG can be found in -"The Data Compression Book" by Mark Nelson and Jean-loup Gailly, published by -M&T Books (New York), 2nd ed. 1996, ISBN 1-55851-434-1. This book provides -good explanations and example C code for a multitude of compression methods -including JPEG. It is an excellent source if you are comfortable reading C -code but don't know much about data compression in general. The book's JPEG -sample code is far from industrial-strength, but when you are ready to look -at a full implementation, you've got one here... +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -The best currently available description of JPEG is the textbook "JPEG Still -Image Data Compression Standard" by William B. Pennebaker and Joan L. -Mitchell, published by Van Nostrand Reinhold, 1993, ISBN 0-442-01272-1. -Price US$59.95, 638 pp. The book includes the complete text of the ISO JPEG -standards (DIS 10918-1 and draft DIS 10918-2). +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/android/brkitr.patch +FILE: ../../../third_party/icu/android/currencies.list +FILE: ../../../third_party/icu/android/icudtl.dat +FILE: ../../../third_party/icu/cast/icudtl.dat +FILE: ../../../third_party/icu/common/icudtb.dat +FILE: ../../../third_party/icu/common/icudtl.dat +FILE: ../../../third_party/icu/flutter/brkitr.patch +FILE: ../../../third_party/icu/flutter/icudtl.dat +FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc +FILE: ../../../third_party/icu/ios/icudtl.dat +FILE: ../../../third_party/icu/patches/cjdict.patch +FILE: ../../../third_party/icu/patches/data.build.patch +FILE: ../../../third_party/icu/patches/data.build.win.patch +FILE: ../../../third_party/icu/patches/data_symb.patch +FILE: ../../../third_party/icu/patches/decimalformat_align.patch +FILE: ../../../third_party/icu/patches/double_conversion.patch +FILE: ../../../third_party/icu/patches/gb_table.patch +FILE: ../../../third_party/icu/patches/greek_lowercase.patch +FILE: ../../../third_party/icu/patches/isvalidenum.patch +FILE: ../../../third_party/icu/patches/khmer-dictbe.patch +FILE: ../../../third_party/icu/patches/locale1.patch +FILE: ../../../third_party/icu/patches/locale_google.patch +FILE: ../../../third_party/icu/patches/locid_map.patch +FILE: ../../../third_party/icu/patches/nf_maxsig.patch +FILE: ../../../third_party/icu/patches/vscomp.patch +FILE: ../../../third_party/icu/patches/wordbrk.patch +FILE: ../../../third_party/icu/patches/wpo.patch +FILE: ../../../third_party/icu/source/data/curr/pool.res +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu +FILE: ../../../third_party/icu/source/data/in/nfc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm +FILE: ../../../third_party/icu/source/data/in/pnames.icu +FILE: ../../../third_party/icu/source/data/in/ubidi.icu +FILE: ../../../third_party/icu/source/data/in/ucase.icu +FILE: ../../../third_party/icu/source/data/in/unames.icu +FILE: ../../../third_party/icu/source/data/in/uprops.icu +FILE: ../../../third_party/icu/source/data/in/uts46.nrm +FILE: ../../../third_party/icu/source/data/lang/pool.res +FILE: ../../../third_party/icu/source/data/locales/pool.res +FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm +FILE: ../../../third_party/icu/source/data/region/pool.res +FILE: ../../../third_party/icu/source/data/unit/pool.res +FILE: ../../../third_party/icu/source/data/zone/pool.res +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw +FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin +FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c +FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c +FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c +FILE: ../../../third_party/icu/source/tools/tzcode/private.h +FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c +FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h +FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh +FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c +FILE: ../../../third_party/icu/source/tools/tzcode/zic.c +FILE: ../../../third_party/icu/windows/icudt.dll +---------------------------------------------------------------------------------------------------- +Copyright (c) 1999 TaBE Project. +Copyright (c) 1999 Pai-Hsiang Hsiao. +All rights reserved. -The original JPEG standard is divided into two parts, Part 1 being the actual -specification, while Part 2 covers compliance testing methods. Part 1 is -titled "Digital Compression and Coding of Continuous-tone Still Images, -Part 1: Requirements and guidelines" and has document numbers ISO/IEC IS -10918-1, ITU-T T.81. Part 2 is titled "Digital Compression and Coding of -Continuous-tone Still Images, Part 2: Compliance testing" and has document -numbers ISO/IEC IS 10918-2, ITU-T T.83. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: -The JPEG standard does not specify all details of an interchangeable file -format. For the omitted details we follow the "JFIF" conventions, revision -1.02. JFIF 1.02 has been adopted as an Ecma International Technical Report -and thus received a formal publication status. It is available as a free -download in PDF format from -http://www.ecma-international.org/publications/techreports/E-TR-098.htm. -A PostScript version of the JFIF document is available at -http://www.ijg.org/files/jfif.ps.gz. There is also a plain text version at -http://www.ijg.org/files/jfif.txt.gz, but it is missing the figures. +. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. +. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. +. Neither the name of the TaBE Project nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -The TIFF 6.0 file format specification can be obtained by FTP from -ftp://ftp.sgi.com/graphics/tiff/TIFF6.ps.gz. The JPEG incorporation scheme -found in the TIFF 6.0 spec of 3-June-92 has a number of serious problems. -IJG does not recommend use of the TIFF 6.0 design (TIFF Compression tag 6). -Instead, we recommend the JPEG design proposed by TIFF Technical Note #2 -(Compression tag 7). Copies of this Note can be obtained from -http://www.ijg.org/files/. It is expected that the next revision -of the TIFF spec will replace the 6.0 JPEG design with the Note's design. -Although IJG's own code does not support TIFF/JPEG, the free libtiff library -uses our library to implement TIFF/JPEG per the Note. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -ARCHIVE LOCATIONS -================= +==================================================================================================== +LIBRARY: icu +ORIGIN: ../../../third_party/icu/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/android/brkitr.patch +FILE: ../../../third_party/icu/android/currencies.list +FILE: ../../../third_party/icu/android/icudtl.dat +FILE: ../../../third_party/icu/cast/icudtl.dat +FILE: ../../../third_party/icu/common/icudtb.dat +FILE: ../../../third_party/icu/common/icudtl.dat +FILE: ../../../third_party/icu/flutter/brkitr.patch +FILE: ../../../third_party/icu/flutter/icudtl.dat +FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc +FILE: ../../../third_party/icu/ios/icudtl.dat +FILE: ../../../third_party/icu/patches/cjdict.patch +FILE: ../../../third_party/icu/patches/data.build.patch +FILE: ../../../third_party/icu/patches/data.build.win.patch +FILE: ../../../third_party/icu/patches/data_symb.patch +FILE: ../../../third_party/icu/patches/decimalformat_align.patch +FILE: ../../../third_party/icu/patches/double_conversion.patch +FILE: ../../../third_party/icu/patches/gb_table.patch +FILE: ../../../third_party/icu/patches/greek_lowercase.patch +FILE: ../../../third_party/icu/patches/isvalidenum.patch +FILE: ../../../third_party/icu/patches/khmer-dictbe.patch +FILE: ../../../third_party/icu/patches/locale1.patch +FILE: ../../../third_party/icu/patches/locale_google.patch +FILE: ../../../third_party/icu/patches/locid_map.patch +FILE: ../../../third_party/icu/patches/nf_maxsig.patch +FILE: ../../../third_party/icu/patches/vscomp.patch +FILE: ../../../third_party/icu/patches/wordbrk.patch +FILE: ../../../third_party/icu/patches/wpo.patch +FILE: ../../../third_party/icu/source/data/curr/pool.res +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu +FILE: ../../../third_party/icu/source/data/in/nfc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm +FILE: ../../../third_party/icu/source/data/in/pnames.icu +FILE: ../../../third_party/icu/source/data/in/ubidi.icu +FILE: ../../../third_party/icu/source/data/in/ucase.icu +FILE: ../../../third_party/icu/source/data/in/unames.icu +FILE: ../../../third_party/icu/source/data/in/uprops.icu +FILE: ../../../third_party/icu/source/data/in/uts46.nrm +FILE: ../../../third_party/icu/source/data/lang/pool.res +FILE: ../../../third_party/icu/source/data/locales/pool.res +FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm +FILE: ../../../third_party/icu/source/data/region/pool.res +FILE: ../../../third_party/icu/source/data/unit/pool.res +FILE: ../../../third_party/icu/source/data/zone/pool.res +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw +FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin +FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c +FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c +FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c +FILE: ../../../third_party/icu/source/tools/tzcode/private.h +FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c +FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h +FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh +FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c +FILE: ../../../third_party/icu/source/tools/tzcode/zic.c +FILE: ../../../third_party/icu/windows/icudt.dll +---------------------------------------------------------------------------------------------------- +Copyright (c) 2013 International Business Machines Corporation +and others. All Rights Reserved. -The "official" archive site for this software is www.ijg.org. -The most recent released version can always be found there in -directory "files". +Project: http://code.google.com/p/lao-dictionary +Dictionary: http://lao-dictionary.googlecode.com/git/Lao-Dictionary.txt +License: http://lao-dictionary.googlecode.com/git/Lao-Dictionary-LICENSE.txt + (copied below) -The JPEG FAQ (Frequently Asked Questions) article is a source of some -general information about JPEG. -It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq -and other news.answers archive sites, including the official news.answers -archive at rtfm.mit.edu: ftp://rtfm.mit.edu/pub/usenet/news.answers/jpeg-faq/. -If you don't have Web or FTP access, send e-mail to mail-server@rtfm.mit.edu -with body - send usenet/news.answers/jpeg-faq/part1 - send usenet/news.answers/jpeg-faq/part2 + This file is derived from the above dictionary, with slight + modifications. -FILE FORMAT WARS -================ + Copyright (C) 2013 Brian Eugene Wilson, Robert Martin Campbell. + All rights reserved. -The ISO/IEC JTC1/SC29/WG1 standards committee (also known as JPEG, together -with ITU-T SG16) currently promotes different formats containing the name -"JPEG" which are incompatible with original DCT-based JPEG. IJG therefore does -not support these formats (see REFERENCES). Indeed, one of the original -reasons for developing this free software was to help force convergence on -common, interoperable format standards for JPEG files. -Don't use an incompatible file format! -(In any case, our decoder will remain capable of reading existing JPEG -image files indefinitely.) + Redistribution and use in source and binary forms, with or without + modification, + are permitted provided that the following conditions are met: -TO DO -===== +Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. Redistributions in + binary form must reproduce the above copyright notice, this list of + conditions and the following disclaimer in the documentation and/or + other materials provided with the distribution. -Please send bug reports, offers of help, etc. to jpeg-info@jpegclub.org. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS +FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/bmp.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/libjpeg-turbo/bmp.c +FILE: ../../../third_party/icu/android/brkitr.patch +FILE: ../../../third_party/icu/android/currencies.list +FILE: ../../../third_party/icu/android/icudtl.dat +FILE: ../../../third_party/icu/cast/icudtl.dat +FILE: ../../../third_party/icu/common/icudtb.dat +FILE: ../../../third_party/icu/common/icudtl.dat +FILE: ../../../third_party/icu/flutter/brkitr.patch +FILE: ../../../third_party/icu/flutter/icudtl.dat +FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc +FILE: ../../../third_party/icu/ios/icudtl.dat +FILE: ../../../third_party/icu/patches/cjdict.patch +FILE: ../../../third_party/icu/patches/data.build.patch +FILE: ../../../third_party/icu/patches/data.build.win.patch +FILE: ../../../third_party/icu/patches/data_symb.patch +FILE: ../../../third_party/icu/patches/decimalformat_align.patch +FILE: ../../../third_party/icu/patches/double_conversion.patch +FILE: ../../../third_party/icu/patches/gb_table.patch +FILE: ../../../third_party/icu/patches/greek_lowercase.patch +FILE: ../../../third_party/icu/patches/isvalidenum.patch +FILE: ../../../third_party/icu/patches/khmer-dictbe.patch +FILE: ../../../third_party/icu/patches/locale1.patch +FILE: ../../../third_party/icu/patches/locale_google.patch +FILE: ../../../third_party/icu/patches/locid_map.patch +FILE: ../../../third_party/icu/patches/nf_maxsig.patch +FILE: ../../../third_party/icu/patches/vscomp.patch +FILE: ../../../third_party/icu/patches/wordbrk.patch +FILE: ../../../third_party/icu/patches/wpo.patch +FILE: ../../../third_party/icu/source/data/curr/pool.res +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu +FILE: ../../../third_party/icu/source/data/in/nfc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm +FILE: ../../../third_party/icu/source/data/in/pnames.icu +FILE: ../../../third_party/icu/source/data/in/ubidi.icu +FILE: ../../../third_party/icu/source/data/in/ucase.icu +FILE: ../../../third_party/icu/source/data/in/unames.icu +FILE: ../../../third_party/icu/source/data/in/uprops.icu +FILE: ../../../third_party/icu/source/data/in/uts46.nrm +FILE: ../../../third_party/icu/source/data/lang/pool.res +FILE: ../../../third_party/icu/source/data/locales/pool.res +FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm +FILE: ../../../third_party/icu/source/data/region/pool.res +FILE: ../../../third_party/icu/source/data/unit/pool.res +FILE: ../../../third_party/icu/source/data/zone/pool.res +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw +FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin +FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c +FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c +FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c +FILE: ../../../third_party/icu/source/tools/tzcode/private.h +FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c +FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h +FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh +FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c +FILE: ../../../third_party/icu/source/tools/tzcode/zic.c +FILE: ../../../third_party/icu/windows/icudt.dll ---------------------------------------------------------------------------------------------------- -Copyright (C)2011, 2015 D. R. Commander. All Rights Reserved. +Copyright (c) 2014 International Business Machines Corporation +and others. All Rights Reserved. + +This list is part of a project hosted at: + github.com/kanyawtech/myanmar-karen-word-lists + +Copyright (c) 2013, LeRoy Benjamin Sharon +All rights reserved. Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +modification, are permitted provided that the following conditions +are met: Redistributions of source code must retain the above +copyright notice, this list of conditions and the following +disclaimer. Redistributions in binary form must reproduce the +above copyright notice, this list of conditions and the following +disclaimer in the documentation and/or other materials provided +with the distribution. -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. + Neither the name Myanmar Karen Word Lists, nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND +CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS +BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED +TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR +TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF +THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/bmp.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/libjpeg-turbo/bmp.h -FILE: ../../../third_party/libjpeg-turbo/jcstest.c -FILE: ../../../third_party/libjpeg-turbo/tjutil.c -FILE: ../../../third_party/libjpeg-turbo/tjutil.h +FILE: ../../../third_party/icu/android/brkitr.patch +FILE: ../../../third_party/icu/android/currencies.list +FILE: ../../../third_party/icu/android/icudtl.dat +FILE: ../../../third_party/icu/cast/icudtl.dat +FILE: ../../../third_party/icu/common/icudtb.dat +FILE: ../../../third_party/icu/common/icudtl.dat +FILE: ../../../third_party/icu/flutter/brkitr.patch +FILE: ../../../third_party/icu/flutter/icudtl.dat +FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc +FILE: ../../../third_party/icu/ios/icudtl.dat +FILE: ../../../third_party/icu/patches/cjdict.patch +FILE: ../../../third_party/icu/patches/data.build.patch +FILE: ../../../third_party/icu/patches/data.build.win.patch +FILE: ../../../third_party/icu/patches/data_symb.patch +FILE: ../../../third_party/icu/patches/decimalformat_align.patch +FILE: ../../../third_party/icu/patches/double_conversion.patch +FILE: ../../../third_party/icu/patches/gb_table.patch +FILE: ../../../third_party/icu/patches/greek_lowercase.patch +FILE: ../../../third_party/icu/patches/isvalidenum.patch +FILE: ../../../third_party/icu/patches/khmer-dictbe.patch +FILE: ../../../third_party/icu/patches/locale1.patch +FILE: ../../../third_party/icu/patches/locale_google.patch +FILE: ../../../third_party/icu/patches/locid_map.patch +FILE: ../../../third_party/icu/patches/nf_maxsig.patch +FILE: ../../../third_party/icu/patches/vscomp.patch +FILE: ../../../third_party/icu/patches/wordbrk.patch +FILE: ../../../third_party/icu/patches/wpo.patch +FILE: ../../../third_party/icu/source/data/curr/pool.res +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu +FILE: ../../../third_party/icu/source/data/in/nfc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm +FILE: ../../../third_party/icu/source/data/in/pnames.icu +FILE: ../../../third_party/icu/source/data/in/ubidi.icu +FILE: ../../../third_party/icu/source/data/in/ucase.icu +FILE: ../../../third_party/icu/source/data/in/unames.icu +FILE: ../../../third_party/icu/source/data/in/uprops.icu +FILE: ../../../third_party/icu/source/data/in/uts46.nrm +FILE: ../../../third_party/icu/source/data/lang/pool.res +FILE: ../../../third_party/icu/source/data/locales/pool.res +FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm +FILE: ../../../third_party/icu/source/data/region/pool.res +FILE: ../../../third_party/icu/source/data/unit/pool.res +FILE: ../../../third_party/icu/source/data/zone/pool.res +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw +FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin +FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c +FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c +FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c +FILE: ../../../third_party/icu/source/tools/tzcode/private.h +FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c +FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h +FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh +FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c +FILE: ../../../third_party/icu/source/tools/tzcode/zic.c +FILE: ../../../third_party/icu/windows/icudt.dll ---------------------------------------------------------------------------------------------------- -Copyright (C)2011 D. R. Commander. All Rights Reserved. +The BSD License +http://opensource.org/licenses/bsd-license.php +Copyright (C) 2006-2008, Google Inc. + +All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. + Redistributions of source code must retain the above copyright notice, +this list of conditions and the following disclaimer. + Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following +disclaimer in the documentation and/or other materials provided with +the distribution. + Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND +CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR +BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/jsimd.h + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/jsimd.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/LICENSE +TYPE: LicenseType.icu +FILE: ../../../third_party/icu/android/brkitr.patch +FILE: ../../../third_party/icu/android/currencies.list +FILE: ../../../third_party/icu/android/icudtl.dat +FILE: ../../../third_party/icu/cast/icudtl.dat +FILE: ../../../third_party/icu/common/icudtb.dat +FILE: ../../../third_party/icu/common/icudtl.dat +FILE: ../../../third_party/icu/flutter/brkitr.patch +FILE: ../../../third_party/icu/flutter/icudtl.dat +FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc +FILE: ../../../third_party/icu/ios/icudtl.dat +FILE: ../../../third_party/icu/patches/cjdict.patch +FILE: ../../../third_party/icu/patches/data.build.patch +FILE: ../../../third_party/icu/patches/data.build.win.patch +FILE: ../../../third_party/icu/patches/data_symb.patch +FILE: ../../../third_party/icu/patches/decimalformat_align.patch +FILE: ../../../third_party/icu/patches/double_conversion.patch +FILE: ../../../third_party/icu/patches/gb_table.patch +FILE: ../../../third_party/icu/patches/greek_lowercase.patch +FILE: ../../../third_party/icu/patches/isvalidenum.patch +FILE: ../../../third_party/icu/patches/khmer-dictbe.patch +FILE: ../../../third_party/icu/patches/locale1.patch +FILE: ../../../third_party/icu/patches/locale_google.patch +FILE: ../../../third_party/icu/patches/locid_map.patch +FILE: ../../../third_party/icu/patches/nf_maxsig.patch +FILE: ../../../third_party/icu/patches/vscomp.patch +FILE: ../../../third_party/icu/patches/wordbrk.patch +FILE: ../../../third_party/icu/patches/wpo.patch +FILE: ../../../third_party/icu/source/data/curr/pool.res +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu +FILE: ../../../third_party/icu/source/data/in/nfc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm +FILE: ../../../third_party/icu/source/data/in/pnames.icu +FILE: ../../../third_party/icu/source/data/in/ubidi.icu +FILE: ../../../third_party/icu/source/data/in/ucase.icu +FILE: ../../../third_party/icu/source/data/in/unames.icu +FILE: ../../../third_party/icu/source/data/in/uprops.icu +FILE: ../../../third_party/icu/source/data/in/uts46.nrm +FILE: ../../../third_party/icu/source/data/lang/pool.res +FILE: ../../../third_party/icu/source/data/locales/pool.res +FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm +FILE: ../../../third_party/icu/source/data/region/pool.res +FILE: ../../../third_party/icu/source/data/unit/pool.res +FILE: ../../../third_party/icu/source/data/zone/pool.res +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw +FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin +FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c +FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c +FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c +FILE: ../../../third_party/icu/source/tools/tzcode/private.h +FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c +FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h +FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh +FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c +FILE: ../../../third_party/icu/source/tools/tzcode/zic.c +FILE: ../../../third_party/icu/windows/icudt.dll ---------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2011, 2014, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. +Copyright (c) 1995-2016 International Business Machines Corporation and others +All rights reserved. -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, and/or sell copies of the Software, and to permit persons +to whom the Software is furnished to do so, provided that the above +copyright notice(s) and this permission notice appear in all copies of +the Software and that both the above copyright notice(s) and this +permission notice appear in supporting documentation. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR +HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY +SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER +RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF +CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, use +or other dealings in this Software without prior written authorization +of the copyright holder. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +All trademarks and registered trademarks mentioned herein are the +property of their respective owners. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/jsimd_none.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/jsimd_none.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/LICENSE +TYPE: LicenseType.unknown +FILE: ../../../third_party/icu/android/brkitr.patch +FILE: ../../../third_party/icu/android/currencies.list +FILE: ../../../third_party/icu/android/icudtl.dat +FILE: ../../../third_party/icu/cast/icudtl.dat +FILE: ../../../third_party/icu/common/icudtb.dat +FILE: ../../../third_party/icu/common/icudtl.dat +FILE: ../../../third_party/icu/flutter/brkitr.patch +FILE: ../../../third_party/icu/flutter/icudtl.dat +FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc +FILE: ../../../third_party/icu/ios/icudtl.dat +FILE: ../../../third_party/icu/patches/cjdict.patch +FILE: ../../../third_party/icu/patches/data.build.patch +FILE: ../../../third_party/icu/patches/data.build.win.patch +FILE: ../../../third_party/icu/patches/data_symb.patch +FILE: ../../../third_party/icu/patches/decimalformat_align.patch +FILE: ../../../third_party/icu/patches/double_conversion.patch +FILE: ../../../third_party/icu/patches/gb_table.patch +FILE: ../../../third_party/icu/patches/greek_lowercase.patch +FILE: ../../../third_party/icu/patches/isvalidenum.patch +FILE: ../../../third_party/icu/patches/khmer-dictbe.patch +FILE: ../../../third_party/icu/patches/locale1.patch +FILE: ../../../third_party/icu/patches/locale_google.patch +FILE: ../../../third_party/icu/patches/locid_map.patch +FILE: ../../../third_party/icu/patches/nf_maxsig.patch +FILE: ../../../third_party/icu/patches/vscomp.patch +FILE: ../../../third_party/icu/patches/wordbrk.patch +FILE: ../../../third_party/icu/patches/wpo.patch +FILE: ../../../third_party/icu/source/data/curr/pool.res +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu +FILE: ../../../third_party/icu/source/data/in/nfc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm +FILE: ../../../third_party/icu/source/data/in/pnames.icu +FILE: ../../../third_party/icu/source/data/in/ubidi.icu +FILE: ../../../third_party/icu/source/data/in/ucase.icu +FILE: ../../../third_party/icu/source/data/in/unames.icu +FILE: ../../../third_party/icu/source/data/in/uprops.icu +FILE: ../../../third_party/icu/source/data/in/uts46.nrm +FILE: ../../../third_party/icu/source/data/lang/pool.res +FILE: ../../../third_party/icu/source/data/locales/pool.res +FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm +FILE: ../../../third_party/icu/source/data/region/pool.res +FILE: ../../../third_party/icu/source/data/unit/pool.res +FILE: ../../../third_party/icu/source/data/zone/pool.res +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw +FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin +FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c +FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c +FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c +FILE: ../../../third_party/icu/source/tools/tzcode/private.h +FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c +FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h +FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh +FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c +FILE: ../../../third_party/icu/source/tools/tzcode/zic.c +FILE: ../../../third_party/icu/windows/icudt.dll ---------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2014, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: - -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Copyright 1996 Chih-Hao Tsai @ Beckman Institute, + University of Illinois +c-tsai4@uiuc.edu http://casper.beckman.uiuc.edu/~c-tsai4 ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/jsimddct.h + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/jsimddct.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/LICENSE +TYPE: LicenseType.unknown +FILE: ../../../third_party/icu/android/brkitr.patch +FILE: ../../../third_party/icu/android/currencies.list +FILE: ../../../third_party/icu/android/icudtl.dat +FILE: ../../../third_party/icu/cast/icudtl.dat +FILE: ../../../third_party/icu/common/icudtb.dat +FILE: ../../../third_party/icu/common/icudtl.dat +FILE: ../../../third_party/icu/flutter/brkitr.patch +FILE: ../../../third_party/icu/flutter/icudtl.dat +FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc +FILE: ../../../third_party/icu/ios/icudtl.dat +FILE: ../../../third_party/icu/patches/cjdict.patch +FILE: ../../../third_party/icu/patches/data.build.patch +FILE: ../../../third_party/icu/patches/data.build.win.patch +FILE: ../../../third_party/icu/patches/data_symb.patch +FILE: ../../../third_party/icu/patches/decimalformat_align.patch +FILE: ../../../third_party/icu/patches/double_conversion.patch +FILE: ../../../third_party/icu/patches/gb_table.patch +FILE: ../../../third_party/icu/patches/greek_lowercase.patch +FILE: ../../../third_party/icu/patches/isvalidenum.patch +FILE: ../../../third_party/icu/patches/khmer-dictbe.patch +FILE: ../../../third_party/icu/patches/locale1.patch +FILE: ../../../third_party/icu/patches/locale_google.patch +FILE: ../../../third_party/icu/patches/locid_map.patch +FILE: ../../../third_party/icu/patches/nf_maxsig.patch +FILE: ../../../third_party/icu/patches/vscomp.patch +FILE: ../../../third_party/icu/patches/wordbrk.patch +FILE: ../../../third_party/icu/patches/wpo.patch +FILE: ../../../third_party/icu/source/data/curr/pool.res +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu +FILE: ../../../third_party/icu/source/data/in/nfc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm +FILE: ../../../third_party/icu/source/data/in/pnames.icu +FILE: ../../../third_party/icu/source/data/in/ubidi.icu +FILE: ../../../third_party/icu/source/data/in/ucase.icu +FILE: ../../../third_party/icu/source/data/in/unames.icu +FILE: ../../../third_party/icu/source/data/in/uprops.icu +FILE: ../../../third_party/icu/source/data/in/uts46.nrm +FILE: ../../../third_party/icu/source/data/lang/pool.res +FILE: ../../../third_party/icu/source/data/locales/pool.res +FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm +FILE: ../../../third_party/icu/source/data/region/pool.res +FILE: ../../../third_party/icu/source/data/unit/pool.res +FILE: ../../../third_party/icu/source/data/zone/pool.res +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw +FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin +FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c +FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c +FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c +FILE: ../../../third_party/icu/source/tools/tzcode/private.h +FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c +FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h +FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh +FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c +FILE: ../../../third_party/icu/source/tools/tzcode/zic.c +FILE: ../../../third_party/icu/windows/icudt.dll ---------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB +Copyright 2000, 2001, 2002, 2003 Nara Institute of Science +and Technology. All Rights Reserved. + +Use, reproduction, and distribution of this software is permitted. +Any copy of this software, whether in its original form or modified, +must include both the above copyright notice and the following +paragraphs. -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. +Nara Institute of Science and Technology (NAIST), +the copyright holders, disclaims all warranties with regard to this +software, including all implied warranties of merchantability and +fitness, in no event shall NAIST be liable for +any special, indirect or consequential damages or any damages +whatsoever resulting from loss of use, data or profits, whether in an +action of contract, negligence or other tortuous action, arising out +of or in connection with the use or performance of this software. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +A large portion of the dictionary entries +originate from ICOT Free Software. The following conditions for ICOT +Free Software applies to the current dictionary as well. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Each User may also freely distribute the Program, whether in its +original form or modified, to any third party or parties, PROVIDED +that the provisions of Section 3 ("NO WARRANTY") will ALWAYS appear +on, or be attached to, the Program, which is distributed substantially +in the same form as set out herein and that such intended +distribution, if actually made, will neither violate or otherwise +contravene any of the laws and regulations of the countries having +jurisdiction over the User or the intended distribution itself. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +NO WARRANTY -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolext-altivec.c -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jccolext-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jcgryext-altivec.c ----------------------------------------------------------------------------------------------------- -Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. -Copyright (C) 2014, Jay Foad. All Rights Reserved. +The program was produced on an experimental basis in the course of the +research and development conducted during the project and is provided +to users as so produced on an experimental basis. Accordingly, the +program is provided without any warranty whatsoever, whether express, +implied, statutory or otherwise. The term "warranty" used herein +includes, but is not limited to, any warranty of the quality, +performance, merchantability and fitness for a particular purpose of +the program and the nonexistence of any infringement or violation of +any right of any third party. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Each user of the program will agree and understand, and be deemed to +have agreed and understood, that there is no warranty whatsoever for +the program and, accordingly, the entire risk arising from or +otherwise connected with the program is assumed by the user. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Therefore, neither ICOT, the copyright holder, or any other +organization that participated in or was otherwise related to the +development of the program and their respective officials, directors, +officers and other employees shall be held liable for any and all +damages, including, without limitation, general, special, incidental +and consequential damages, arising out of or otherwise in connection +with the use or inability to use the program or any product, material +or result produced or otherwise obtained by using the program, +regardless of whether they have been advised of, or otherwise had +knowledge of, the possibility of such damages at any time during the +project or thereafter. Each user will be deemed to have agreed to the +foregoing by his or her commencement of use of the program. The term +"use" as used herein includes, but is not limited to, the use, +modification, copying and distribution of the program and the +production of secondary products from the program. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +In the case where the program, whether in its original form or +modified, was distributed or delivered to or received by a user from +any person, organization or entity other than ICOT, unless it makes or +grants independently of ICOT any specific warranty to the user in +writing, such person, organization or entity, will also be exempted +from and not be held liable to the user for any such damages as noted +above as far as the program is concerned. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolext-mmx.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jccolext-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jcolsamp.inc -FILE: ../../../third_party/libjpeg-turbo/simd/jcsample-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jcsample-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdcolext-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdct.inc -FILE: ../../../third_party/libjpeg-turbo/simd/jdmrgext-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdsample-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdsample-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctflt-3dn.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctflt-sse.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctfst-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctfst-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctint-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctint-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctflt-3dn.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctflt-sse.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctflt-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctfst-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctfst-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctint-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctint-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctred-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctred-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jquant-3dn.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jquant-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jquant-sse.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jquantf-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jquanti-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcpu.asm +LIBRARY: icu +ORIGIN: ../../../third_party/icu/LICENSE +TYPE: LicenseType.unknown +FILE: ../../../third_party/icu/android/brkitr.patch +FILE: ../../../third_party/icu/android/currencies.list +FILE: ../../../third_party/icu/android/icudtl.dat +FILE: ../../../third_party/icu/cast/icudtl.dat +FILE: ../../../third_party/icu/common/icudtb.dat +FILE: ../../../third_party/icu/common/icudtl.dat +FILE: ../../../third_party/icu/flutter/brkitr.patch +FILE: ../../../third_party/icu/flutter/icudtl.dat +FILE: ../../../third_party/icu/fuzzers/fuzzer_utils.h +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_break_iterator_utf32_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_number_format_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_ucasemap_fuzzer.cc +FILE: ../../../third_party/icu/ios/icudtl.dat +FILE: ../../../third_party/icu/patches/cjdict.patch +FILE: ../../../third_party/icu/patches/data.build.patch +FILE: ../../../third_party/icu/patches/data.build.win.patch +FILE: ../../../third_party/icu/patches/data_symb.patch +FILE: ../../../third_party/icu/patches/decimalformat_align.patch +FILE: ../../../third_party/icu/patches/double_conversion.patch +FILE: ../../../third_party/icu/patches/gb_table.patch +FILE: ../../../third_party/icu/patches/greek_lowercase.patch +FILE: ../../../third_party/icu/patches/isvalidenum.patch +FILE: ../../../third_party/icu/patches/khmer-dictbe.patch +FILE: ../../../third_party/icu/patches/locale1.patch +FILE: ../../../third_party/icu/patches/locale_google.patch +FILE: ../../../third_party/icu/patches/locid_map.patch +FILE: ../../../third_party/icu/patches/nf_maxsig.patch +FILE: ../../../third_party/icu/patches/vscomp.patch +FILE: ../../../third_party/icu/patches/wordbrk.patch +FILE: ../../../third_party/icu/patches/wpo.patch +FILE: ../../../third_party/icu/source/data/curr/pool.res +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-implicithan.icu +FILE: ../../../third_party/icu/source/data/in/coll/ucadata-unihan.icu +FILE: ../../../third_party/icu/source/data/in/nfc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc.nrm +FILE: ../../../third_party/icu/source/data/in/nfkc_cf.nrm +FILE: ../../../third_party/icu/source/data/in/pnames.icu +FILE: ../../../third_party/icu/source/data/in/ubidi.icu +FILE: ../../../third_party/icu/source/data/in/ucase.icu +FILE: ../../../third_party/icu/source/data/in/unames.icu +FILE: ../../../third_party/icu/source/data/in/uprops.icu +FILE: ../../../third_party/icu/source/data/in/uts46.nrm +FILE: ../../../third_party/icu/source/data/lang/pool.res +FILE: ../../../third_party/icu/source/data/locales/pool.res +FILE: ../../../third_party/icu/source/data/mappings/big5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-jp-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-kr-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/gb18030.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm866-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-10-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-13-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-14-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-15-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-16-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-2-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-3-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-4-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-5-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-6-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-7-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859-8-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-r-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/koi8-u-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/macintosh-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/shift_jis-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1250-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1251-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1252-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1253-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1254-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1255-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1256-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1257-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-1258-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-874-html.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-936-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/x-mac-cyrillic-html.ucm +FILE: ../../../third_party/icu/source/data/region/pool.res +FILE: ../../../third_party/icu/source/data/unit/pool.res +FILE: ../../../third_party/icu/source/data/zone/pool.res +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsp +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.dsw +FILE: ../../../third_party/icu/source/samples/ucnv/data02.bin +FILE: ../../../third_party/icu/source/tools/tzcode/asctime.c +FILE: ../../../third_party/icu/source/tools/tzcode/ialloc.c +FILE: ../../../third_party/icu/source/tools/tzcode/localtime.c +FILE: ../../../third_party/icu/source/tools/tzcode/private.h +FILE: ../../../third_party/icu/source/tools/tzcode/scheck.c +FILE: ../../../third_party/icu/source/tools/tzcode/tzfile.h +FILE: ../../../third_party/icu/source/tools/tzcode/tzselect.ksh +FILE: ../../../third_party/icu/source/tools/tzcode/zdump.c +FILE: ../../../third_party/icu/source/tools/tzcode/zic.c +FILE: ../../../third_party/icu/windows/icudt.dll ---------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. +Copyright © 1991-2018 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in http://www.unicode.org/copyright.html. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolext-sse2-64.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jccolext-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jccolor-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jccolor-sse2.asm +LIBRARY: icu +ORIGIN: ../../../third_party/icu/fuzzers/icu_converter_fuzzer.cc + ../../../LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/fuzzers/icu_converter_fuzzer.cc +FILE: ../../../third_party/icu/fuzzers/icu_regex.dict +FILE: ../../../third_party/icu/fuzzers/icu_uregex_open_fuzzer.cc ---------------------------------------------------------------------------------------------------- -Copyright (C) 2009, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. +Copyright 2016 The Chromium Authors. All rights reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolext-sse2.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jccolext-sse2.asm +LIBRARY: icu +ORIGIN: ../../../third_party/icu/scripts/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/fuzzers/icu_unicode_string_codepage_create_fuzzer.cc +FILE: ../../../third_party/icu/scripts/accept_lang.list +FILE: ../../../third_party/icu/scripts/chrome_ui_languages.list +FILE: ../../../third_party/icu/scripts/currencies.list ---------------------------------------------------------------------------------------------------- -Copyright (C) 1999-2006, MIYASAKA Masaru. +Copyright 2015 The Chromium Authors. All rights reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolor-altivec.c -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jccolor-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jcgray-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctfst-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctint-altivec.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/common/unicode/appendable.h +TYPE: LicenseType.icu +FILE: ../../../third_party/icu/APIChangeReport.html +FILE: ../../../third_party/icu/source/Doxyfile.in +FILE: ../../../third_party/icu/source/common/appendable.cpp +FILE: ../../../third_party/icu/source/common/bmpset.cpp +FILE: ../../../third_party/icu/source/common/bmpset.h +FILE: ../../../third_party/icu/source/common/brkeng.cpp +FILE: ../../../third_party/icu/source/common/brkeng.h +FILE: ../../../third_party/icu/source/common/brkiter.cpp +FILE: ../../../third_party/icu/source/common/bytesinkutil.cpp +FILE: ../../../third_party/icu/source/common/bytesinkutil.h +FILE: ../../../third_party/icu/source/common/bytestream.cpp +FILE: ../../../third_party/icu/source/common/bytestrie.cpp +FILE: ../../../third_party/icu/source/common/bytestriebuilder.cpp +FILE: ../../../third_party/icu/source/common/bytestrieiterator.cpp +FILE: ../../../third_party/icu/source/common/caniter.cpp +FILE: ../../../third_party/icu/source/common/chariter.cpp +FILE: ../../../third_party/icu/source/common/charstr.cpp +FILE: ../../../third_party/icu/source/common/charstr.h +FILE: ../../../third_party/icu/source/common/cmemory.cpp +FILE: ../../../third_party/icu/source/common/cmemory.h +FILE: ../../../third_party/icu/source/common/common.rc +FILE: ../../../third_party/icu/source/common/cpputils.h +FILE: ../../../third_party/icu/source/common/cstr.cpp +FILE: ../../../third_party/icu/source/common/cstr.h +FILE: ../../../third_party/icu/source/common/cstring.cpp +FILE: ../../../third_party/icu/source/common/cstring.h +FILE: ../../../third_party/icu/source/common/cwchar.cpp +FILE: ../../../third_party/icu/source/common/cwchar.h +FILE: ../../../third_party/icu/source/common/dictbe.cpp +FILE: ../../../third_party/icu/source/common/dictbe.h +FILE: ../../../third_party/icu/source/common/dictionarydata.cpp +FILE: ../../../third_party/icu/source/common/dictionarydata.h +FILE: ../../../third_party/icu/source/common/dtintrv.cpp +FILE: ../../../third_party/icu/source/common/edits.cpp +FILE: ../../../third_party/icu/source/common/errorcode.cpp +FILE: ../../../third_party/icu/source/common/filteredbrk.cpp +FILE: ../../../third_party/icu/source/common/filterednormalizer2.cpp +FILE: ../../../third_party/icu/source/common/hash.h +FILE: ../../../third_party/icu/source/common/icudataver.cpp +FILE: ../../../third_party/icu/source/common/icuplug.cpp +FILE: ../../../third_party/icu/source/common/icuplugimp.h +FILE: ../../../third_party/icu/source/common/listformatter.cpp +FILE: ../../../third_party/icu/source/common/loadednormalizer2impl.cpp +FILE: ../../../third_party/icu/source/common/localsvc.h +FILE: ../../../third_party/icu/source/common/locavailable.cpp +FILE: ../../../third_party/icu/source/common/locbased.cpp +FILE: ../../../third_party/icu/source/common/locbased.h +FILE: ../../../third_party/icu/source/common/locdispnames.cpp +FILE: ../../../third_party/icu/source/common/locdspnm.cpp +FILE: ../../../third_party/icu/source/common/locid.cpp +FILE: ../../../third_party/icu/source/common/loclikely.cpp +FILE: ../../../third_party/icu/source/common/locmap.cpp +FILE: ../../../third_party/icu/source/common/locmap.h +FILE: ../../../third_party/icu/source/common/locresdata.cpp +FILE: ../../../third_party/icu/source/common/locutil.cpp +FILE: ../../../third_party/icu/source/common/locutil.h +FILE: ../../../third_party/icu/source/common/messageimpl.h +FILE: ../../../third_party/icu/source/common/messagepattern.cpp +FILE: ../../../third_party/icu/source/common/msvcres.h +FILE: ../../../third_party/icu/source/common/mutex.h +FILE: ../../../third_party/icu/source/common/norm2_nfc_data.h +FILE: ../../../third_party/icu/source/common/norm2allmodes.h +FILE: ../../../third_party/icu/source/common/normalizer2.cpp +FILE: ../../../third_party/icu/source/common/normalizer2impl.cpp +FILE: ../../../third_party/icu/source/common/normalizer2impl.h +FILE: ../../../third_party/icu/source/common/normlzr.cpp +FILE: ../../../third_party/icu/source/common/parsepos.cpp +FILE: ../../../third_party/icu/source/common/patternprops.cpp +FILE: ../../../third_party/icu/source/common/patternprops.h +FILE: ../../../third_party/icu/source/common/pluralmap.cpp +FILE: ../../../third_party/icu/source/common/pluralmap.h +FILE: ../../../third_party/icu/source/common/propname.cpp +FILE: ../../../third_party/icu/source/common/propname.h +FILE: ../../../third_party/icu/source/common/propname_data.h +FILE: ../../../third_party/icu/source/common/propsvec.cpp +FILE: ../../../third_party/icu/source/common/propsvec.h +FILE: ../../../third_party/icu/source/common/punycode.cpp +FILE: ../../../third_party/icu/source/common/punycode.h +FILE: ../../../third_party/icu/source/common/putil.cpp +FILE: ../../../third_party/icu/source/common/putilimp.h +FILE: ../../../third_party/icu/source/common/rbbi.cpp +FILE: ../../../third_party/icu/source/common/rbbi_cache.cpp +FILE: ../../../third_party/icu/source/common/rbbi_cache.h +FILE: ../../../third_party/icu/source/common/rbbidata.cpp +FILE: ../../../third_party/icu/source/common/rbbidata.h +FILE: ../../../third_party/icu/source/common/rbbinode.cpp +FILE: ../../../third_party/icu/source/common/rbbinode.h +FILE: ../../../third_party/icu/source/common/rbbirb.cpp +FILE: ../../../third_party/icu/source/common/rbbirb.h +FILE: ../../../third_party/icu/source/common/rbbirpt.h +FILE: ../../../third_party/icu/source/common/rbbiscan.cpp +FILE: ../../../third_party/icu/source/common/rbbiscan.h +FILE: ../../../third_party/icu/source/common/rbbisetb.cpp +FILE: ../../../third_party/icu/source/common/rbbisetb.h +FILE: ../../../third_party/icu/source/common/rbbistbl.cpp +FILE: ../../../third_party/icu/source/common/rbbitblb.cpp +FILE: ../../../third_party/icu/source/common/rbbitblb.h +FILE: ../../../third_party/icu/source/common/resbund.cpp +FILE: ../../../third_party/icu/source/common/resbund_cnv.cpp +FILE: ../../../third_party/icu/source/common/resource.cpp +FILE: ../../../third_party/icu/source/common/resource.h +FILE: ../../../third_party/icu/source/common/ruleiter.cpp +FILE: ../../../third_party/icu/source/common/ruleiter.h +FILE: ../../../third_party/icu/source/common/schriter.cpp +FILE: ../../../third_party/icu/source/common/serv.cpp +FILE: ../../../third_party/icu/source/common/serv.h +FILE: ../../../third_party/icu/source/common/servlk.cpp +FILE: ../../../third_party/icu/source/common/servlkf.cpp +FILE: ../../../third_party/icu/source/common/servloc.h +FILE: ../../../third_party/icu/source/common/servls.cpp +FILE: ../../../third_party/icu/source/common/servnotf.cpp +FILE: ../../../third_party/icu/source/common/servnotf.h +FILE: ../../../third_party/icu/source/common/servrbf.cpp +FILE: ../../../third_party/icu/source/common/servslkf.cpp +FILE: ../../../third_party/icu/source/common/sharedobject.cpp +FILE: ../../../third_party/icu/source/common/sharedobject.h +FILE: ../../../third_party/icu/source/common/simpleformatter.cpp +FILE: ../../../third_party/icu/source/common/sprpimpl.h +FILE: ../../../third_party/icu/source/common/static_unicode_sets.cpp +FILE: ../../../third_party/icu/source/common/static_unicode_sets.h +FILE: ../../../third_party/icu/source/common/stringpiece.cpp +FILE: ../../../third_party/icu/source/common/stringtriebuilder.cpp +FILE: ../../../third_party/icu/source/common/uarrsort.cpp +FILE: ../../../third_party/icu/source/common/uarrsort.h +FILE: ../../../third_party/icu/source/common/uassert.h +FILE: ../../../third_party/icu/source/common/ubidi.cpp +FILE: ../../../third_party/icu/source/common/ubidi_props.cpp +FILE: ../../../third_party/icu/source/common/ubidi_props.h +FILE: ../../../third_party/icu/source/common/ubidi_props_data.h +FILE: ../../../third_party/icu/source/common/ubidiimp.h +FILE: ../../../third_party/icu/source/common/ubidiln.cpp +FILE: ../../../third_party/icu/source/common/ubiditransform.cpp +FILE: ../../../third_party/icu/source/common/ubidiwrt.cpp +FILE: ../../../third_party/icu/source/common/ubrk.cpp +FILE: ../../../third_party/icu/source/common/ubrkimpl.h +FILE: ../../../third_party/icu/source/common/ucase.cpp +FILE: ../../../third_party/icu/source/common/ucase.h +FILE: ../../../third_party/icu/source/common/ucase_props_data.h +FILE: ../../../third_party/icu/source/common/ucasemap.cpp +FILE: ../../../third_party/icu/source/common/ucasemap_imp.h +FILE: ../../../third_party/icu/source/common/ucasemap_titlecase_brkiter.cpp +FILE: ../../../third_party/icu/source/common/ucat.cpp +FILE: ../../../third_party/icu/source/common/uchar.cpp +FILE: ../../../third_party/icu/source/common/uchar_props_data.h +FILE: ../../../third_party/icu/source/common/ucharstrie.cpp +FILE: ../../../third_party/icu/source/common/ucharstriebuilder.cpp +FILE: ../../../third_party/icu/source/common/ucharstrieiterator.cpp +FILE: ../../../third_party/icu/source/common/uchriter.cpp +FILE: ../../../third_party/icu/source/common/ucln.h +FILE: ../../../third_party/icu/source/common/ucln_cmn.cpp +FILE: ../../../third_party/icu/source/common/ucln_cmn.h +FILE: ../../../third_party/icu/source/common/ucln_imp.h +FILE: ../../../third_party/icu/source/common/ucmndata.cpp +FILE: ../../../third_party/icu/source/common/ucmndata.h +FILE: ../../../third_party/icu/source/common/ucnv.cpp +FILE: ../../../third_party/icu/source/common/ucnv2022.cpp +FILE: ../../../third_party/icu/source/common/ucnv_bld.cpp +FILE: ../../../third_party/icu/source/common/ucnv_bld.h +FILE: ../../../third_party/icu/source/common/ucnv_cb.cpp +FILE: ../../../third_party/icu/source/common/ucnv_cnv.cpp +FILE: ../../../third_party/icu/source/common/ucnv_cnv.h +FILE: ../../../third_party/icu/source/common/ucnv_ct.cpp +FILE: ../../../third_party/icu/source/common/ucnv_err.cpp +FILE: ../../../third_party/icu/source/common/ucnv_ext.cpp +FILE: ../../../third_party/icu/source/common/ucnv_ext.h +FILE: ../../../third_party/icu/source/common/ucnv_imp.h +FILE: ../../../third_party/icu/source/common/ucnv_io.cpp +FILE: ../../../third_party/icu/source/common/ucnv_io.h +FILE: ../../../third_party/icu/source/common/ucnv_lmb.cpp +FILE: ../../../third_party/icu/source/common/ucnv_set.cpp +FILE: ../../../third_party/icu/source/common/ucnv_u16.cpp +FILE: ../../../third_party/icu/source/common/ucnv_u32.cpp +FILE: ../../../third_party/icu/source/common/ucnv_u7.cpp +FILE: ../../../third_party/icu/source/common/ucnv_u8.cpp +FILE: ../../../third_party/icu/source/common/ucnvbocu.cpp +FILE: ../../../third_party/icu/source/common/ucnvdisp.cpp +FILE: ../../../third_party/icu/source/common/ucnvhz.cpp +FILE: ../../../third_party/icu/source/common/ucnvisci.cpp +FILE: ../../../third_party/icu/source/common/ucnvlat1.cpp +FILE: ../../../third_party/icu/source/common/ucnvmbcs.cpp +FILE: ../../../third_party/icu/source/common/ucnvmbcs.h +FILE: ../../../third_party/icu/source/common/ucnvscsu.cpp +FILE: ../../../third_party/icu/source/common/ucnvsel.cpp +FILE: ../../../third_party/icu/source/common/ucol_data.h +FILE: ../../../third_party/icu/source/common/ucol_swp.cpp +FILE: ../../../third_party/icu/source/common/ucol_swp.h +FILE: ../../../third_party/icu/source/common/ucurr.cpp +FILE: ../../../third_party/icu/source/common/ucurrimp.h +FILE: ../../../third_party/icu/source/common/udata.cpp +FILE: ../../../third_party/icu/source/common/udatamem.cpp +FILE: ../../../third_party/icu/source/common/udatamem.h +FILE: ../../../third_party/icu/source/common/udataswp.cpp +FILE: ../../../third_party/icu/source/common/udataswp.h +FILE: ../../../third_party/icu/source/common/uelement.h +FILE: ../../../third_party/icu/source/common/uenum.cpp +FILE: ../../../third_party/icu/source/common/uenumimp.h +FILE: ../../../third_party/icu/source/common/uhash.cpp +FILE: ../../../third_party/icu/source/common/uhash.h +FILE: ../../../third_party/icu/source/common/uhash_us.cpp +FILE: ../../../third_party/icu/source/common/uidna.cpp +FILE: ../../../third_party/icu/source/common/uinit.cpp +FILE: ../../../third_party/icu/source/common/uinvchar.cpp +FILE: ../../../third_party/icu/source/common/uinvchar.h +FILE: ../../../third_party/icu/source/common/uiter.cpp +FILE: ../../../third_party/icu/source/common/ulist.cpp +FILE: ../../../third_party/icu/source/common/ulist.h +FILE: ../../../third_party/icu/source/common/ulistformatter.cpp +FILE: ../../../third_party/icu/source/common/uloc.cpp +FILE: ../../../third_party/icu/source/common/uloc_keytype.cpp +FILE: ../../../third_party/icu/source/common/uloc_tag.cpp +FILE: ../../../third_party/icu/source/common/ulocimp.h +FILE: ../../../third_party/icu/source/common/umapfile.cpp +FILE: ../../../third_party/icu/source/common/umapfile.h +FILE: ../../../third_party/icu/source/common/umath.cpp +FILE: ../../../third_party/icu/source/common/umutex.cpp +FILE: ../../../third_party/icu/source/common/umutex.h +FILE: ../../../third_party/icu/source/common/unames.cpp +FILE: ../../../third_party/icu/source/common/unicode/appendable.h +FILE: ../../../third_party/icu/source/common/unicode/brkiter.h +FILE: ../../../third_party/icu/source/common/unicode/bytestream.h +FILE: ../../../third_party/icu/source/common/unicode/bytestrie.h +FILE: ../../../third_party/icu/source/common/unicode/bytestriebuilder.h +FILE: ../../../third_party/icu/source/common/unicode/caniter.h +FILE: ../../../third_party/icu/source/common/unicode/casemap.h +FILE: ../../../third_party/icu/source/common/unicode/char16ptr.h +FILE: ../../../third_party/icu/source/common/unicode/chariter.h +FILE: ../../../third_party/icu/source/common/unicode/dbbi.h +FILE: ../../../third_party/icu/source/common/unicode/docmain.h +FILE: ../../../third_party/icu/source/common/unicode/dtintrv.h +FILE: ../../../third_party/icu/source/common/unicode/edits.h +FILE: ../../../third_party/icu/source/common/unicode/enumset.h +FILE: ../../../third_party/icu/source/common/unicode/errorcode.h +FILE: ../../../third_party/icu/source/common/unicode/filteredbrk.h +FILE: ../../../third_party/icu/source/common/unicode/icudataver.h +FILE: ../../../third_party/icu/source/common/unicode/icuplug.h +FILE: ../../../third_party/icu/source/common/unicode/idna.h +FILE: ../../../third_party/icu/source/common/unicode/listformatter.h +FILE: ../../../third_party/icu/source/common/unicode/localpointer.h +FILE: ../../../third_party/icu/source/common/unicode/locdspnm.h +FILE: ../../../third_party/icu/source/common/unicode/locid.h +FILE: ../../../third_party/icu/source/common/unicode/messagepattern.h +FILE: ../../../third_party/icu/source/common/unicode/normalizer2.h +FILE: ../../../third_party/icu/source/common/unicode/normlzr.h +FILE: ../../../third_party/icu/source/common/unicode/parseerr.h +FILE: ../../../third_party/icu/source/common/unicode/parsepos.h +FILE: ../../../third_party/icu/source/common/unicode/platform.h +FILE: ../../../third_party/icu/source/common/unicode/ptypes.h +FILE: ../../../third_party/icu/source/common/unicode/putil.h +FILE: ../../../third_party/icu/source/common/unicode/rbbi.h +FILE: ../../../third_party/icu/source/common/unicode/rep.h +FILE: ../../../third_party/icu/source/common/unicode/resbund.h +FILE: ../../../third_party/icu/source/common/unicode/schriter.h +FILE: ../../../third_party/icu/source/common/unicode/simpleformatter.h +FILE: ../../../third_party/icu/source/common/unicode/std_string.h +FILE: ../../../third_party/icu/source/common/unicode/strenum.h +FILE: ../../../third_party/icu/source/common/unicode/stringoptions.h +FILE: ../../../third_party/icu/source/common/unicode/stringpiece.h +FILE: ../../../third_party/icu/source/common/unicode/stringtriebuilder.h +FILE: ../../../third_party/icu/source/common/unicode/symtable.h +FILE: ../../../third_party/icu/source/common/unicode/ubidi.h +FILE: ../../../third_party/icu/source/common/unicode/ubiditransform.h +FILE: ../../../third_party/icu/source/common/unicode/ubrk.h +FILE: ../../../third_party/icu/source/common/unicode/ucasemap.h +FILE: ../../../third_party/icu/source/common/unicode/ucat.h +FILE: ../../../third_party/icu/source/common/unicode/uchar.h +FILE: ../../../third_party/icu/source/common/unicode/ucharstrie.h +FILE: ../../../third_party/icu/source/common/unicode/ucharstriebuilder.h +FILE: ../../../third_party/icu/source/common/unicode/uchriter.h +FILE: ../../../third_party/icu/source/common/unicode/uclean.h +FILE: ../../../third_party/icu/source/common/unicode/ucnv.h +FILE: ../../../third_party/icu/source/common/unicode/ucnv_cb.h +FILE: ../../../third_party/icu/source/common/unicode/ucnv_err.h +FILE: ../../../third_party/icu/source/common/unicode/ucnvsel.h +FILE: ../../../third_party/icu/source/common/unicode/uconfig.h +FILE: ../../../third_party/icu/source/common/unicode/ucurr.h +FILE: ../../../third_party/icu/source/common/unicode/udata.h +FILE: ../../../third_party/icu/source/common/unicode/udisplaycontext.h +FILE: ../../../third_party/icu/source/common/unicode/uenum.h +FILE: ../../../third_party/icu/source/common/unicode/uidna.h +FILE: ../../../third_party/icu/source/common/unicode/uiter.h +FILE: ../../../third_party/icu/source/common/unicode/uldnames.h +FILE: ../../../third_party/icu/source/common/unicode/ulistformatter.h +FILE: ../../../third_party/icu/source/common/unicode/uloc.h +FILE: ../../../third_party/icu/source/common/unicode/umachine.h +FILE: ../../../third_party/icu/source/common/unicode/umisc.h +FILE: ../../../third_party/icu/source/common/unicode/unifilt.h +FILE: ../../../third_party/icu/source/common/unicode/unifunct.h +FILE: ../../../third_party/icu/source/common/unicode/unimatch.h +FILE: ../../../third_party/icu/source/common/unicode/uniset.h +FILE: ../../../third_party/icu/source/common/unicode/unistr.h +FILE: ../../../third_party/icu/source/common/unicode/unorm.h +FILE: ../../../third_party/icu/source/common/unicode/unorm2.h +FILE: ../../../third_party/icu/source/common/unicode/uobject.h +FILE: ../../../third_party/icu/source/common/unicode/urename.h +FILE: ../../../third_party/icu/source/common/unicode/urep.h +FILE: ../../../third_party/icu/source/common/unicode/ures.h +FILE: ../../../third_party/icu/source/common/unicode/uscript.h +FILE: ../../../third_party/icu/source/common/unicode/uset.h +FILE: ../../../third_party/icu/source/common/unicode/usetiter.h +FILE: ../../../third_party/icu/source/common/unicode/ushape.h +FILE: ../../../third_party/icu/source/common/unicode/usprep.h +FILE: ../../../third_party/icu/source/common/unicode/ustring.h +FILE: ../../../third_party/icu/source/common/unicode/ustringtrie.h +FILE: ../../../third_party/icu/source/common/unicode/utext.h +FILE: ../../../third_party/icu/source/common/unicode/utf.h +FILE: ../../../third_party/icu/source/common/unicode/utf16.h +FILE: ../../../third_party/icu/source/common/unicode/utf32.h +FILE: ../../../third_party/icu/source/common/unicode/utf8.h +FILE: ../../../third_party/icu/source/common/unicode/utf_old.h +FILE: ../../../third_party/icu/source/common/unicode/utrace.h +FILE: ../../../third_party/icu/source/common/unicode/utypes.h +FILE: ../../../third_party/icu/source/common/unicode/uvernum.h +FILE: ../../../third_party/icu/source/common/unicode/uversion.h +FILE: ../../../third_party/icu/source/common/unifiedcache.cpp +FILE: ../../../third_party/icu/source/common/unifiedcache.h +FILE: ../../../third_party/icu/source/common/unifilt.cpp +FILE: ../../../third_party/icu/source/common/unifunct.cpp +FILE: ../../../third_party/icu/source/common/uniset.cpp +FILE: ../../../third_party/icu/source/common/uniset_closure.cpp +FILE: ../../../third_party/icu/source/common/uniset_props.cpp +FILE: ../../../third_party/icu/source/common/unisetspan.cpp +FILE: ../../../third_party/icu/source/common/unisetspan.h +FILE: ../../../third_party/icu/source/common/unistr.cpp +FILE: ../../../third_party/icu/source/common/unistr_case.cpp +FILE: ../../../third_party/icu/source/common/unistr_case_locale.cpp +FILE: ../../../third_party/icu/source/common/unistr_cnv.cpp +FILE: ../../../third_party/icu/source/common/unistr_props.cpp +FILE: ../../../third_party/icu/source/common/unistr_titlecase_brkiter.cpp +FILE: ../../../third_party/icu/source/common/unistrappender.h +FILE: ../../../third_party/icu/source/common/unorm.cpp +FILE: ../../../third_party/icu/source/common/unormcmp.cpp +FILE: ../../../third_party/icu/source/common/unormimp.h +FILE: ../../../third_party/icu/source/common/uobject.cpp +FILE: ../../../third_party/icu/source/common/uposixdefs.h +FILE: ../../../third_party/icu/source/common/uprops.cpp +FILE: ../../../third_party/icu/source/common/uprops.h +FILE: ../../../third_party/icu/source/common/ures_cnv.cpp +FILE: ../../../third_party/icu/source/common/uresbund.cpp +FILE: ../../../third_party/icu/source/common/uresdata.cpp +FILE: ../../../third_party/icu/source/common/uresdata.h +FILE: ../../../third_party/icu/source/common/uresimp.h +FILE: ../../../third_party/icu/source/common/ureslocs.h +FILE: ../../../third_party/icu/source/common/usc_impl.cpp +FILE: ../../../third_party/icu/source/common/usc_impl.h +FILE: ../../../third_party/icu/source/common/uscript.cpp +FILE: ../../../third_party/icu/source/common/uscript_props.cpp +FILE: ../../../third_party/icu/source/common/uset.cpp +FILE: ../../../third_party/icu/source/common/uset_imp.h +FILE: ../../../third_party/icu/source/common/uset_props.cpp +FILE: ../../../third_party/icu/source/common/usetiter.cpp +FILE: ../../../third_party/icu/source/common/ushape.cpp +FILE: ../../../third_party/icu/source/common/usprep.cpp +FILE: ../../../third_party/icu/source/common/ustack.cpp +FILE: ../../../third_party/icu/source/common/ustr_cnv.cpp +FILE: ../../../third_party/icu/source/common/ustr_cnv.h +FILE: ../../../third_party/icu/source/common/ustr_imp.h +FILE: ../../../third_party/icu/source/common/ustr_titlecase_brkiter.cpp +FILE: ../../../third_party/icu/source/common/ustr_wcs.cpp +FILE: ../../../third_party/icu/source/common/ustrcase.cpp +FILE: ../../../third_party/icu/source/common/ustrcase_locale.cpp +FILE: ../../../third_party/icu/source/common/ustrenum.cpp +FILE: ../../../third_party/icu/source/common/ustrenum.h +FILE: ../../../third_party/icu/source/common/ustrfmt.cpp +FILE: ../../../third_party/icu/source/common/ustrfmt.h +FILE: ../../../third_party/icu/source/common/ustring.cpp +FILE: ../../../third_party/icu/source/common/ustrtrns.cpp +FILE: ../../../third_party/icu/source/common/utext.cpp +FILE: ../../../third_party/icu/source/common/utf_impl.cpp +FILE: ../../../third_party/icu/source/common/util.cpp +FILE: ../../../third_party/icu/source/common/util.h +FILE: ../../../third_party/icu/source/common/util_props.cpp +FILE: ../../../third_party/icu/source/common/utrace.cpp +FILE: ../../../third_party/icu/source/common/utracimp.h +FILE: ../../../third_party/icu/source/common/utrie.cpp +FILE: ../../../third_party/icu/source/common/utrie.h +FILE: ../../../third_party/icu/source/common/utrie2.cpp +FILE: ../../../third_party/icu/source/common/utrie2.h +FILE: ../../../third_party/icu/source/common/utrie2_builder.cpp +FILE: ../../../third_party/icu/source/common/utrie2_impl.h +FILE: ../../../third_party/icu/source/common/uts46.cpp +FILE: ../../../third_party/icu/source/common/utypeinfo.h +FILE: ../../../third_party/icu/source/common/utypes.cpp +FILE: ../../../third_party/icu/source/common/uvector.cpp +FILE: ../../../third_party/icu/source/common/uvector.h +FILE: ../../../third_party/icu/source/common/uvectr32.cpp +FILE: ../../../third_party/icu/source/common/uvectr32.h +FILE: ../../../third_party/icu/source/common/uvectr64.cpp +FILE: ../../../third_party/icu/source/common/uvectr64.h +FILE: ../../../third_party/icu/source/common/wintz.cpp +FILE: ../../../third_party/icu/source/common/wintz.h +FILE: ../../../third_party/icu/source/config/icu-config-bottom +FILE: ../../../third_party/icu/source/config/icu-config.1.in +FILE: ../../../third_party/icu/source/config/icu.pc.in +FILE: ../../../third_party/icu/source/config/make2sh.sed +FILE: ../../../third_party/icu/source/config/mh-aix-gcc +FILE: ../../../third_party/icu/source/config/mh-aix-va +FILE: ../../../third_party/icu/source/config/mh-alpha-linux-cc +FILE: ../../../third_party/icu/source/config/mh-alpha-linux-gcc +FILE: ../../../third_party/icu/source/config/mh-alpha-osf +FILE: ../../../third_party/icu/source/config/mh-beos +FILE: ../../../third_party/icu/source/config/mh-bsd-gcc +FILE: ../../../third_party/icu/source/config/mh-cygwin +FILE: ../../../third_party/icu/source/config/mh-cygwin-msvc +FILE: ../../../third_party/icu/source/config/mh-cygwin64 +FILE: ../../../third_party/icu/source/config/mh-darwin +FILE: ../../../third_party/icu/source/config/mh-haiku +FILE: ../../../third_party/icu/source/config/mh-hpux-acc +FILE: ../../../third_party/icu/source/config/mh-hpux-gcc +FILE: ../../../third_party/icu/source/config/mh-irix +FILE: ../../../third_party/icu/source/config/mh-linux +FILE: ../../../third_party/icu/source/config/mh-linux-va +FILE: ../../../third_party/icu/source/config/mh-mingw +FILE: ../../../third_party/icu/source/config/mh-mingw64 +FILE: ../../../third_party/icu/source/config/mh-mpras +FILE: ../../../third_party/icu/source/config/mh-msys-msvc +FILE: ../../../third_party/icu/source/config/mh-os390 +FILE: ../../../third_party/icu/source/config/mh-os400 +FILE: ../../../third_party/icu/source/config/mh-qnx +FILE: ../../../third_party/icu/source/config/mh-solaris +FILE: ../../../third_party/icu/source/config/mh-solaris-gcc +FILE: ../../../third_party/icu/source/config/mh-unknown +FILE: ../../../third_party/icu/source/config/windows-update.sed.in +FILE: ../../../third_party/icu/source/data/build.xml +FILE: ../../../third_party/icu/source/data/icu-coll-deprecates.xml +FILE: ../../../third_party/icu/source/data/icu-config.xml +FILE: ../../../third_party/icu/source/data/icu-locale-deprecates.xml +FILE: ../../../third_party/icu/source/data/icu-rbnf-deprecates.xml +FILE: ../../../third_party/icu/source/data/icupkg.inc.in +FILE: ../../../third_party/icu/source/data/makedata.mak +FILE: ../../../third_party/icu/source/data/mappings/cns-11643-1992.ucm +FILE: ../../../third_party/icu/source/data/mappings/ebcdic-xml-us.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-jp-2007.ucm +FILE: ../../../third_party/icu/source/data/mappings/euc-tw-2014.ucm +FILE: ../../../third_party/icu/source/data/mappings/gsm-03.38-2009.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1006_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1025_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1026_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1047_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1051_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1089_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1097_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1098_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1112_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1122_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1123_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1124_P100-1996.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1125_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1129_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1130_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1131_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1132_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1133_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1137_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1140_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1141_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1142_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1143_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1144_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1145_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1146_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1147_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1148_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1149_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1153_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1154_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1155_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1156_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1157_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1158_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1160_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1162_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1164_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1168_P100-2002.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1250_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1251_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1252_P100-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1253_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1254_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1255_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1256_P110-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1257_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1258_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-12712_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1276_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1363_P110-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1363_P11B-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1364_P110-2007.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1371_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1373_P100-2002.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1375_P100-2008.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1383_P110-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1386_P100-2001.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1388_P103-2001.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1390_P110-2003.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-1399_P110-2003.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-16684_P110-2003.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-16804_X110-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-273_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-277_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-278_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-280_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-284_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-285_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-290_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-297_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-33722_P120-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-33722_P12A_P12A-2004_U2.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-33722_P12A_P12A-2009_U2.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-37_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-420_X120-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-424_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-437_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-4517_P100-2005.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-4899_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-4909_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-4971_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-500_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5012_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5123_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5346_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5347_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5348_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5349_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5350_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5351_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5352_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5353_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5354_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5471_P100-2006.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-5478_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-720_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-737_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-775_P100-1996.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-803_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-813_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-838_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-8482_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-850_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-851_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-852_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-855_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-856_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-857_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-858_P100-1997.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-860_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-861_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-862_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-863_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-864_X110-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-865_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-866_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-867_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-868_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-869_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-870_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-871_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-874_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-875_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-878_P100-1996.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-9005_X110-2007.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-901_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-902_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-9067_X100-2005.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-912_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-913_P100-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-914_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-915_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-916_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-918_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-920_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-921_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-922_P100-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-923_P100-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-930_P120-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-933_P110-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-935_P110-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-937_P110-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-939_P120-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-942_P12A-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-943_P130-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-943_P15A-2003.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-9447_P100-2002.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-9448_X100-2005.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-9449_P100-2002.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-949_P110-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-949_P11A-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-950_P110-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-954_P101-2007.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-964_P110-1999.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-970_P110_P110-2006_U2.ucm +FILE: ../../../third_party/icu/source/data/mappings/ibm-971_P100-1995.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-25546.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d1.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d2.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d3.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d4.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d5.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d6.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-d7.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-s1.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-s2.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-s3.ucm +FILE: ../../../third_party/icu/source/data/mappings/icu-internal-compound-t.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859_10-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859_11-2001.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-8859_14-1998.ucm +FILE: ../../../third_party/icu/source/data/mappings/iso-ir-165.ucm +FILE: ../../../third_party/icu/source/data/mappings/jisx-212.ucm +FILE: ../../../third_party/icu/source/data/mappings/lmb-excp.ucm +FILE: ../../../third_party/icu/source/data/mappings/macos-0_2-10.2.ucm +FILE: ../../../third_party/icu/source/data/mappings/macos-29-10.2.ucm +FILE: ../../../third_party/icu/source/data/mappings/macos-35-10.2.ucm +FILE: ../../../third_party/icu/source/data/mappings/macos-6_2-10.4.ucm +FILE: ../../../third_party/icu/source/data/mappings/macos-7_3-10.2.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-874-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-949-2000.ucm +FILE: ../../../third_party/icu/source/data/mappings/windows-950-2000.ucm +FILE: ../../../third_party/icu/source/data/misc/icudata.rc +FILE: ../../../third_party/icu/source/extra/scrptrun/scrptrun.cpp +FILE: ../../../third_party/icu/source/extra/scrptrun/scrptrun.h +FILE: ../../../third_party/icu/source/extra/scrptrun/srtest.cpp +FILE: ../../../third_party/icu/source/extra/uconv/makedata.mak +FILE: ../../../third_party/icu/source/extra/uconv/pkgdata.inc.in +FILE: ../../../third_party/icu/source/extra/uconv/uconv.1.in +FILE: ../../../third_party/icu/source/extra/uconv/uconv.cpp +FILE: ../../../third_party/icu/source/extra/uconv/unicode/uwmsg.h +FILE: ../../../third_party/icu/source/extra/uconv/uwmsg.c +FILE: ../../../third_party/icu/source/i18n/alphaindex.cpp +FILE: ../../../third_party/icu/source/i18n/anytrans.cpp +FILE: ../../../third_party/icu/source/i18n/anytrans.h +FILE: ../../../third_party/icu/source/i18n/astro.cpp +FILE: ../../../third_party/icu/source/i18n/astro.h +FILE: ../../../third_party/icu/source/i18n/basictz.cpp +FILE: ../../../third_party/icu/source/i18n/bocsu.cpp +FILE: ../../../third_party/icu/source/i18n/bocsu.h +FILE: ../../../third_party/icu/source/i18n/brktrans.cpp +FILE: ../../../third_party/icu/source/i18n/brktrans.h +FILE: ../../../third_party/icu/source/i18n/buddhcal.cpp +FILE: ../../../third_party/icu/source/i18n/buddhcal.h +FILE: ../../../third_party/icu/source/i18n/calendar.cpp +FILE: ../../../third_party/icu/source/i18n/casetrn.cpp +FILE: ../../../third_party/icu/source/i18n/casetrn.h +FILE: ../../../third_party/icu/source/i18n/cecal.cpp +FILE: ../../../third_party/icu/source/i18n/cecal.h +FILE: ../../../third_party/icu/source/i18n/chnsecal.cpp +FILE: ../../../third_party/icu/source/i18n/chnsecal.h +FILE: ../../../third_party/icu/source/i18n/choicfmt.cpp +FILE: ../../../third_party/icu/source/i18n/coleitr.cpp +FILE: ../../../third_party/icu/source/i18n/coll.cpp +FILE: ../../../third_party/icu/source/i18n/collation.cpp +FILE: ../../../third_party/icu/source/i18n/collation.h +FILE: ../../../third_party/icu/source/i18n/collationbuilder.cpp +FILE: ../../../third_party/icu/source/i18n/collationbuilder.h +FILE: ../../../third_party/icu/source/i18n/collationcompare.cpp +FILE: ../../../third_party/icu/source/i18n/collationcompare.h +FILE: ../../../third_party/icu/source/i18n/collationdata.cpp +FILE: ../../../third_party/icu/source/i18n/collationdata.h +FILE: ../../../third_party/icu/source/i18n/collationdatabuilder.cpp +FILE: ../../../third_party/icu/source/i18n/collationdatabuilder.h +FILE: ../../../third_party/icu/source/i18n/collationdatareader.cpp +FILE: ../../../third_party/icu/source/i18n/collationdatareader.h +FILE: ../../../third_party/icu/source/i18n/collationdatawriter.cpp +FILE: ../../../third_party/icu/source/i18n/collationdatawriter.h +FILE: ../../../third_party/icu/source/i18n/collationfastlatin.cpp +FILE: ../../../third_party/icu/source/i18n/collationfastlatin.h +FILE: ../../../third_party/icu/source/i18n/collationfastlatinbuilder.cpp +FILE: ../../../third_party/icu/source/i18n/collationfastlatinbuilder.h +FILE: ../../../third_party/icu/source/i18n/collationfcd.cpp +FILE: ../../../third_party/icu/source/i18n/collationfcd.h +FILE: ../../../third_party/icu/source/i18n/collationiterator.cpp +FILE: ../../../third_party/icu/source/i18n/collationiterator.h +FILE: ../../../third_party/icu/source/i18n/collationkeys.cpp +FILE: ../../../third_party/icu/source/i18n/collationkeys.h +FILE: ../../../third_party/icu/source/i18n/collationroot.cpp +FILE: ../../../third_party/icu/source/i18n/collationroot.h +FILE: ../../../third_party/icu/source/i18n/collationrootelements.cpp +FILE: ../../../third_party/icu/source/i18n/collationrootelements.h +FILE: ../../../third_party/icu/source/i18n/collationruleparser.cpp +FILE: ../../../third_party/icu/source/i18n/collationruleparser.h +FILE: ../../../third_party/icu/source/i18n/collationsets.cpp +FILE: ../../../third_party/icu/source/i18n/collationsets.h +FILE: ../../../third_party/icu/source/i18n/collationsettings.cpp +FILE: ../../../third_party/icu/source/i18n/collationsettings.h +FILE: ../../../third_party/icu/source/i18n/collationtailoring.cpp +FILE: ../../../third_party/icu/source/i18n/collationtailoring.h +FILE: ../../../third_party/icu/source/i18n/collationweights.cpp +FILE: ../../../third_party/icu/source/i18n/collationweights.h +FILE: ../../../third_party/icu/source/i18n/collunsafe.h +FILE: ../../../third_party/icu/source/i18n/compactdecimalformat.cpp +FILE: ../../../third_party/icu/source/i18n/coptccal.cpp +FILE: ../../../third_party/icu/source/i18n/coptccal.h +FILE: ../../../third_party/icu/source/i18n/cpdtrans.cpp +FILE: ../../../third_party/icu/source/i18n/cpdtrans.h +FILE: ../../../third_party/icu/source/i18n/csdetect.cpp +FILE: ../../../third_party/icu/source/i18n/csdetect.h +FILE: ../../../third_party/icu/source/i18n/csmatch.cpp +FILE: ../../../third_party/icu/source/i18n/csmatch.h +FILE: ../../../third_party/icu/source/i18n/csr2022.cpp +FILE: ../../../third_party/icu/source/i18n/csr2022.h +FILE: ../../../third_party/icu/source/i18n/csrecog.cpp +FILE: ../../../third_party/icu/source/i18n/csrecog.h +FILE: ../../../third_party/icu/source/i18n/csrmbcs.cpp +FILE: ../../../third_party/icu/source/i18n/csrmbcs.h +FILE: ../../../third_party/icu/source/i18n/csrsbcs.cpp +FILE: ../../../third_party/icu/source/i18n/csrsbcs.h +FILE: ../../../third_party/icu/source/i18n/csrucode.cpp +FILE: ../../../third_party/icu/source/i18n/csrucode.h +FILE: ../../../third_party/icu/source/i18n/csrutf8.cpp +FILE: ../../../third_party/icu/source/i18n/csrutf8.h +FILE: ../../../third_party/icu/source/i18n/curramt.cpp +FILE: ../../../third_party/icu/source/i18n/currfmt.cpp +FILE: ../../../third_party/icu/source/i18n/currfmt.h +FILE: ../../../third_party/icu/source/i18n/currpinf.cpp +FILE: ../../../third_party/icu/source/i18n/currunit.cpp +FILE: ../../../third_party/icu/source/i18n/dangical.cpp +FILE: ../../../third_party/icu/source/i18n/dangical.h +FILE: ../../../third_party/icu/source/i18n/datefmt.cpp +FILE: ../../../third_party/icu/source/i18n/dayperiodrules.cpp +FILE: ../../../third_party/icu/source/i18n/dayperiodrules.h +FILE: ../../../third_party/icu/source/i18n/dcfmtsym.cpp +FILE: ../../../third_party/icu/source/i18n/decContext.cpp +FILE: ../../../third_party/icu/source/i18n/decContext.h +FILE: ../../../third_party/icu/source/i18n/decNumber.cpp +FILE: ../../../third_party/icu/source/i18n/decNumber.h +FILE: ../../../third_party/icu/source/i18n/decNumberLocal.h +FILE: ../../../third_party/icu/source/i18n/decimfmt.cpp +FILE: ../../../third_party/icu/source/i18n/double-conversion-bignum-dtoa.cpp +FILE: ../../../third_party/icu/source/i18n/double-conversion-bignum-dtoa.h +FILE: ../../../third_party/icu/source/i18n/double-conversion-bignum.cpp +FILE: ../../../third_party/icu/source/i18n/double-conversion-bignum.h +FILE: ../../../third_party/icu/source/i18n/double-conversion-cached-powers.cpp +FILE: ../../../third_party/icu/source/i18n/double-conversion-cached-powers.h +FILE: ../../../third_party/icu/source/i18n/double-conversion-diy-fp.cpp +FILE: ../../../third_party/icu/source/i18n/double-conversion-diy-fp.h +FILE: ../../../third_party/icu/source/i18n/double-conversion-fast-dtoa.cpp +FILE: ../../../third_party/icu/source/i18n/double-conversion-fast-dtoa.h +FILE: ../../../third_party/icu/source/i18n/double-conversion-ieee.h +FILE: ../../../third_party/icu/source/i18n/double-conversion-strtod.cpp +FILE: ../../../third_party/icu/source/i18n/double-conversion-strtod.h +FILE: ../../../third_party/icu/source/i18n/double-conversion-utils.h +FILE: ../../../third_party/icu/source/i18n/double-conversion.cpp +FILE: ../../../third_party/icu/source/i18n/double-conversion.h +FILE: ../../../third_party/icu/source/i18n/dt_impl.h +FILE: ../../../third_party/icu/source/i18n/dtfmtsym.cpp +FILE: ../../../third_party/icu/source/i18n/dtitv_impl.h +FILE: ../../../third_party/icu/source/i18n/dtitvfmt.cpp +FILE: ../../../third_party/icu/source/i18n/dtitvinf.cpp +FILE: ../../../third_party/icu/source/i18n/dtptngen.cpp +FILE: ../../../third_party/icu/source/i18n/dtptngen_impl.h +FILE: ../../../third_party/icu/source/i18n/dtrule.cpp +FILE: ../../../third_party/icu/source/i18n/esctrn.cpp +FILE: ../../../third_party/icu/source/i18n/esctrn.h +FILE: ../../../third_party/icu/source/i18n/ethpccal.cpp +FILE: ../../../third_party/icu/source/i18n/ethpccal.h +FILE: ../../../third_party/icu/source/i18n/fmtable.cpp +FILE: ../../../third_party/icu/source/i18n/fmtable_cnv.cpp +FILE: ../../../third_party/icu/source/i18n/fmtableimp.h +FILE: ../../../third_party/icu/source/i18n/format.cpp +FILE: ../../../third_party/icu/source/i18n/fphdlimp.cpp +FILE: ../../../third_party/icu/source/i18n/fphdlimp.h +FILE: ../../../third_party/icu/source/i18n/fpositer.cpp +FILE: ../../../third_party/icu/source/i18n/funcrepl.cpp +FILE: ../../../third_party/icu/source/i18n/funcrepl.h +FILE: ../../../third_party/icu/source/i18n/gender.cpp +FILE: ../../../third_party/icu/source/i18n/gregocal.cpp +FILE: ../../../third_party/icu/source/i18n/gregoimp.cpp +FILE: ../../../third_party/icu/source/i18n/gregoimp.h +FILE: ../../../third_party/icu/source/i18n/hebrwcal.cpp +FILE: ../../../third_party/icu/source/i18n/hebrwcal.h +FILE: ../../../third_party/icu/source/i18n/i18n.rc +FILE: ../../../third_party/icu/source/i18n/indiancal.cpp +FILE: ../../../third_party/icu/source/i18n/indiancal.h +FILE: ../../../third_party/icu/source/i18n/inputext.cpp +FILE: ../../../third_party/icu/source/i18n/inputext.h +FILE: ../../../third_party/icu/source/i18n/islamcal.cpp +FILE: ../../../third_party/icu/source/i18n/islamcal.h +FILE: ../../../third_party/icu/source/i18n/japancal.cpp +FILE: ../../../third_party/icu/source/i18n/japancal.h +FILE: ../../../third_party/icu/source/i18n/measfmt.cpp +FILE: ../../../third_party/icu/source/i18n/measunit.cpp +FILE: ../../../third_party/icu/source/i18n/measure.cpp +FILE: ../../../third_party/icu/source/i18n/msgfmt.cpp +FILE: ../../../third_party/icu/source/i18n/msgfmt_impl.h +FILE: ../../../third_party/icu/source/i18n/name2uni.cpp +FILE: ../../../third_party/icu/source/i18n/name2uni.h +FILE: ../../../third_party/icu/source/i18n/nfrlist.h +FILE: ../../../third_party/icu/source/i18n/nfrs.cpp +FILE: ../../../third_party/icu/source/i18n/nfrs.h +FILE: ../../../third_party/icu/source/i18n/nfrule.cpp +FILE: ../../../third_party/icu/source/i18n/nfrule.h +FILE: ../../../third_party/icu/source/i18n/nfsubs.cpp +FILE: ../../../third_party/icu/source/i18n/nfsubs.h +FILE: ../../../third_party/icu/source/i18n/nortrans.cpp +FILE: ../../../third_party/icu/source/i18n/nortrans.h +FILE: ../../../third_party/icu/source/i18n/nounit.cpp +FILE: ../../../third_party/icu/source/i18n/nultrans.cpp +FILE: ../../../third_party/icu/source/i18n/nultrans.h +FILE: ../../../third_party/icu/source/i18n/number_affixutils.cpp +FILE: ../../../third_party/icu/source/i18n/number_affixutils.h +FILE: ../../../third_party/icu/source/i18n/number_asformat.cpp +FILE: ../../../third_party/icu/source/i18n/number_asformat.h +FILE: ../../../third_party/icu/source/i18n/number_capi.cpp +FILE: ../../../third_party/icu/source/i18n/number_compact.cpp +FILE: ../../../third_party/icu/source/i18n/number_compact.h +FILE: ../../../third_party/icu/source/i18n/number_currencysymbols.cpp +FILE: ../../../third_party/icu/source/i18n/number_currencysymbols.h +FILE: ../../../third_party/icu/source/i18n/number_decimalquantity.cpp +FILE: ../../../third_party/icu/source/i18n/number_decimalquantity.h +FILE: ../../../third_party/icu/source/i18n/number_decimfmtprops.cpp +FILE: ../../../third_party/icu/source/i18n/number_decimfmtprops.h +FILE: ../../../third_party/icu/source/i18n/number_decnum.h +FILE: ../../../third_party/icu/source/i18n/number_fluent.cpp +FILE: ../../../third_party/icu/source/i18n/number_formatimpl.cpp +FILE: ../../../third_party/icu/source/i18n/number_formatimpl.h +FILE: ../../../third_party/icu/source/i18n/number_grouping.cpp +FILE: ../../../third_party/icu/source/i18n/number_integerwidth.cpp +FILE: ../../../third_party/icu/source/i18n/number_longnames.cpp +FILE: ../../../third_party/icu/source/i18n/number_longnames.h +FILE: ../../../third_party/icu/source/i18n/number_mapper.cpp +FILE: ../../../third_party/icu/source/i18n/number_mapper.h +FILE: ../../../third_party/icu/source/i18n/number_microprops.h +FILE: ../../../third_party/icu/source/i18n/number_modifiers.cpp +FILE: ../../../third_party/icu/source/i18n/number_modifiers.h +FILE: ../../../third_party/icu/source/i18n/number_multiplier.cpp +FILE: ../../../third_party/icu/source/i18n/number_multiplier.h +FILE: ../../../third_party/icu/source/i18n/number_notation.cpp +FILE: ../../../third_party/icu/source/i18n/number_padding.cpp +FILE: ../../../third_party/icu/source/i18n/number_patternmodifier.cpp +FILE: ../../../third_party/icu/source/i18n/number_patternmodifier.h +FILE: ../../../third_party/icu/source/i18n/number_patternstring.cpp +FILE: ../../../third_party/icu/source/i18n/number_patternstring.h +FILE: ../../../third_party/icu/source/i18n/number_rounding.cpp +FILE: ../../../third_party/icu/source/i18n/number_roundingutils.h +FILE: ../../../third_party/icu/source/i18n/number_scientific.cpp +FILE: ../../../third_party/icu/source/i18n/number_scientific.h +FILE: ../../../third_party/icu/source/i18n/number_skeletons.cpp +FILE: ../../../third_party/icu/source/i18n/number_skeletons.h +FILE: ../../../third_party/icu/source/i18n/number_stringbuilder.cpp +FILE: ../../../third_party/icu/source/i18n/number_stringbuilder.h +FILE: ../../../third_party/icu/source/i18n/number_types.h +FILE: ../../../third_party/icu/source/i18n/number_utils.cpp +FILE: ../../../third_party/icu/source/i18n/number_utils.h +FILE: ../../../third_party/icu/source/i18n/number_utypes.h +FILE: ../../../third_party/icu/source/i18n/numfmt.cpp +FILE: ../../../third_party/icu/source/i18n/numparse_affixes.cpp +FILE: ../../../third_party/icu/source/i18n/numparse_affixes.h +FILE: ../../../third_party/icu/source/i18n/numparse_compositions.cpp +FILE: ../../../third_party/icu/source/i18n/numparse_compositions.h +FILE: ../../../third_party/icu/source/i18n/numparse_currency.cpp +FILE: ../../../third_party/icu/source/i18n/numparse_currency.h +FILE: ../../../third_party/icu/source/i18n/numparse_decimal.cpp +FILE: ../../../third_party/icu/source/i18n/numparse_decimal.h +FILE: ../../../third_party/icu/source/i18n/numparse_impl.cpp +FILE: ../../../third_party/icu/source/i18n/numparse_impl.h +FILE: ../../../third_party/icu/source/i18n/numparse_parsednumber.cpp +FILE: ../../../third_party/icu/source/i18n/numparse_scientific.cpp +FILE: ../../../third_party/icu/source/i18n/numparse_scientific.h +FILE: ../../../third_party/icu/source/i18n/numparse_stringsegment.cpp +FILE: ../../../third_party/icu/source/i18n/numparse_stringsegment.h +FILE: ../../../third_party/icu/source/i18n/numparse_symbols.cpp +FILE: ../../../third_party/icu/source/i18n/numparse_symbols.h +FILE: ../../../third_party/icu/source/i18n/numparse_types.h +FILE: ../../../third_party/icu/source/i18n/numparse_utils.h +FILE: ../../../third_party/icu/source/i18n/numparse_validators.cpp +FILE: ../../../third_party/icu/source/i18n/numparse_validators.h +FILE: ../../../third_party/icu/source/i18n/numsys.cpp +FILE: ../../../third_party/icu/source/i18n/numsys_impl.h +FILE: ../../../third_party/icu/source/i18n/olsontz.cpp +FILE: ../../../third_party/icu/source/i18n/olsontz.h +FILE: ../../../third_party/icu/source/i18n/persncal.cpp +FILE: ../../../third_party/icu/source/i18n/persncal.h +FILE: ../../../third_party/icu/source/i18n/plurfmt.cpp +FILE: ../../../third_party/icu/source/i18n/plurrule.cpp +FILE: ../../../third_party/icu/source/i18n/plurrule_impl.h +FILE: ../../../third_party/icu/source/i18n/quant.cpp +FILE: ../../../third_party/icu/source/i18n/quant.h +FILE: ../../../third_party/icu/source/i18n/quantityformatter.cpp +FILE: ../../../third_party/icu/source/i18n/quantityformatter.h +FILE: ../../../third_party/icu/source/i18n/rbnf.cpp +FILE: ../../../third_party/icu/source/i18n/rbt.cpp +FILE: ../../../third_party/icu/source/i18n/rbt.h +FILE: ../../../third_party/icu/source/i18n/rbt_data.cpp +FILE: ../../../third_party/icu/source/i18n/rbt_data.h +FILE: ../../../third_party/icu/source/i18n/rbt_pars.cpp +FILE: ../../../third_party/icu/source/i18n/rbt_pars.h +FILE: ../../../third_party/icu/source/i18n/rbt_rule.cpp +FILE: ../../../third_party/icu/source/i18n/rbt_rule.h +FILE: ../../../third_party/icu/source/i18n/rbt_set.cpp +FILE: ../../../third_party/icu/source/i18n/rbt_set.h +FILE: ../../../third_party/icu/source/i18n/rbtz.cpp +FILE: ../../../third_party/icu/source/i18n/regexcmp.cpp +FILE: ../../../third_party/icu/source/i18n/regexcmp.h +FILE: ../../../third_party/icu/source/i18n/regexcst.h +FILE: ../../../third_party/icu/source/i18n/regeximp.cpp +FILE: ../../../third_party/icu/source/i18n/regeximp.h +FILE: ../../../third_party/icu/source/i18n/regexst.cpp +FILE: ../../../third_party/icu/source/i18n/regexst.h +FILE: ../../../third_party/icu/source/i18n/regextxt.cpp +FILE: ../../../third_party/icu/source/i18n/regextxt.h +FILE: ../../../third_party/icu/source/i18n/region.cpp +FILE: ../../../third_party/icu/source/i18n/region_impl.h +FILE: ../../../third_party/icu/source/i18n/reldatefmt.cpp +FILE: ../../../third_party/icu/source/i18n/reldtfmt.cpp +FILE: ../../../third_party/icu/source/i18n/reldtfmt.h +FILE: ../../../third_party/icu/source/i18n/rematch.cpp +FILE: ../../../third_party/icu/source/i18n/remtrans.cpp +FILE: ../../../third_party/icu/source/i18n/remtrans.h +FILE: ../../../third_party/icu/source/i18n/repattrn.cpp +FILE: ../../../third_party/icu/source/i18n/rulebasedcollator.cpp +FILE: ../../../third_party/icu/source/i18n/scientificnumberformatter.cpp +FILE: ../../../third_party/icu/source/i18n/scriptset.cpp +FILE: ../../../third_party/icu/source/i18n/scriptset.h +FILE: ../../../third_party/icu/source/i18n/search.cpp +FILE: ../../../third_party/icu/source/i18n/selfmt.cpp +FILE: ../../../third_party/icu/source/i18n/selfmtimpl.h +FILE: ../../../third_party/icu/source/i18n/sharedbreakiterator.cpp +FILE: ../../../third_party/icu/source/i18n/sharedbreakiterator.h +FILE: ../../../third_party/icu/source/i18n/sharedcalendar.h +FILE: ../../../third_party/icu/source/i18n/shareddateformatsymbols.h +FILE: ../../../third_party/icu/source/i18n/sharednumberformat.h +FILE: ../../../third_party/icu/source/i18n/sharedpluralrules.h +FILE: ../../../third_party/icu/source/i18n/simpletz.cpp +FILE: ../../../third_party/icu/source/i18n/smpdtfmt.cpp +FILE: ../../../third_party/icu/source/i18n/smpdtfst.cpp +FILE: ../../../third_party/icu/source/i18n/smpdtfst.h +FILE: ../../../third_party/icu/source/i18n/sortkey.cpp +FILE: ../../../third_party/icu/source/i18n/standardplural.cpp +FILE: ../../../third_party/icu/source/i18n/standardplural.h +FILE: ../../../third_party/icu/source/i18n/strmatch.cpp +FILE: ../../../third_party/icu/source/i18n/strmatch.h +FILE: ../../../third_party/icu/source/i18n/strrepl.cpp +FILE: ../../../third_party/icu/source/i18n/strrepl.h +FILE: ../../../third_party/icu/source/i18n/stsearch.cpp +FILE: ../../../third_party/icu/source/i18n/taiwncal.cpp +FILE: ../../../third_party/icu/source/i18n/taiwncal.h +FILE: ../../../third_party/icu/source/i18n/timezone.cpp +FILE: ../../../third_party/icu/source/i18n/titletrn.cpp +FILE: ../../../third_party/icu/source/i18n/titletrn.h +FILE: ../../../third_party/icu/source/i18n/tmunit.cpp +FILE: ../../../third_party/icu/source/i18n/tmutamt.cpp +FILE: ../../../third_party/icu/source/i18n/tmutfmt.cpp +FILE: ../../../third_party/icu/source/i18n/tolowtrn.cpp +FILE: ../../../third_party/icu/source/i18n/tolowtrn.h +FILE: ../../../third_party/icu/source/i18n/toupptrn.cpp +FILE: ../../../third_party/icu/source/i18n/toupptrn.h +FILE: ../../../third_party/icu/source/i18n/translit.cpp +FILE: ../../../third_party/icu/source/i18n/transreg.cpp +FILE: ../../../third_party/icu/source/i18n/transreg.h +FILE: ../../../third_party/icu/source/i18n/tridpars.cpp +FILE: ../../../third_party/icu/source/i18n/tridpars.h +FILE: ../../../third_party/icu/source/i18n/tzfmt.cpp +FILE: ../../../third_party/icu/source/i18n/tzgnames.cpp +FILE: ../../../third_party/icu/source/i18n/tzgnames.h +FILE: ../../../third_party/icu/source/i18n/tznames.cpp +FILE: ../../../third_party/icu/source/i18n/tznames_impl.cpp +FILE: ../../../third_party/icu/source/i18n/tznames_impl.h +FILE: ../../../third_party/icu/source/i18n/tzrule.cpp +FILE: ../../../third_party/icu/source/i18n/tztrans.cpp +FILE: ../../../third_party/icu/source/i18n/ucal.cpp +FILE: ../../../third_party/icu/source/i18n/ucln_in.cpp +FILE: ../../../third_party/icu/source/i18n/ucln_in.h +FILE: ../../../third_party/icu/source/i18n/ucol.cpp +FILE: ../../../third_party/icu/source/i18n/ucol_imp.h +FILE: ../../../third_party/icu/source/i18n/ucol_res.cpp +FILE: ../../../third_party/icu/source/i18n/ucol_sit.cpp +FILE: ../../../third_party/icu/source/i18n/ucoleitr.cpp +FILE: ../../../third_party/icu/source/i18n/ucsdet.cpp +FILE: ../../../third_party/icu/source/i18n/udat.cpp +FILE: ../../../third_party/icu/source/i18n/udateintervalformat.cpp +FILE: ../../../third_party/icu/source/i18n/udatpg.cpp +FILE: ../../../third_party/icu/source/i18n/ufieldpositer.cpp +FILE: ../../../third_party/icu/source/i18n/uitercollationiterator.cpp +FILE: ../../../third_party/icu/source/i18n/uitercollationiterator.h +FILE: ../../../third_party/icu/source/i18n/ulocdata.cpp +FILE: ../../../third_party/icu/source/i18n/umsg.cpp +FILE: ../../../third_party/icu/source/i18n/umsg_imp.h +FILE: ../../../third_party/icu/source/i18n/unesctrn.cpp +FILE: ../../../third_party/icu/source/i18n/unesctrn.h +FILE: ../../../third_party/icu/source/i18n/uni2name.cpp +FILE: ../../../third_party/icu/source/i18n/uni2name.h +FILE: ../../../third_party/icu/source/i18n/unicode/alphaindex.h +FILE: ../../../third_party/icu/source/i18n/unicode/basictz.h +FILE: ../../../third_party/icu/source/i18n/unicode/calendar.h +FILE: ../../../third_party/icu/source/i18n/unicode/choicfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/coleitr.h +FILE: ../../../third_party/icu/source/i18n/unicode/coll.h +FILE: ../../../third_party/icu/source/i18n/unicode/compactdecimalformat.h +FILE: ../../../third_party/icu/source/i18n/unicode/curramt.h +FILE: ../../../third_party/icu/source/i18n/unicode/currpinf.h +FILE: ../../../third_party/icu/source/i18n/unicode/currunit.h +FILE: ../../../third_party/icu/source/i18n/unicode/datefmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/dcfmtsym.h +FILE: ../../../third_party/icu/source/i18n/unicode/decimfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/dtfmtsym.h +FILE: ../../../third_party/icu/source/i18n/unicode/dtitvfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/dtitvinf.h +FILE: ../../../third_party/icu/source/i18n/unicode/dtptngen.h +FILE: ../../../third_party/icu/source/i18n/unicode/dtrule.h +FILE: ../../../third_party/icu/source/i18n/unicode/fieldpos.h +FILE: ../../../third_party/icu/source/i18n/unicode/fmtable.h +FILE: ../../../third_party/icu/source/i18n/unicode/format.h +FILE: ../../../third_party/icu/source/i18n/unicode/fpositer.h +FILE: ../../../third_party/icu/source/i18n/unicode/gender.h +FILE: ../../../third_party/icu/source/i18n/unicode/gregocal.h +FILE: ../../../third_party/icu/source/i18n/unicode/measfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/measunit.h +FILE: ../../../third_party/icu/source/i18n/unicode/measure.h +FILE: ../../../third_party/icu/source/i18n/unicode/msgfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/nounit.h +FILE: ../../../third_party/icu/source/i18n/unicode/numberformatter.h +FILE: ../../../third_party/icu/source/i18n/unicode/numfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/numsys.h +FILE: ../../../third_party/icu/source/i18n/unicode/plurfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/plurrule.h +FILE: ../../../third_party/icu/source/i18n/unicode/rbnf.h +FILE: ../../../third_party/icu/source/i18n/unicode/rbtz.h +FILE: ../../../third_party/icu/source/i18n/unicode/regex.h +FILE: ../../../third_party/icu/source/i18n/unicode/region.h +FILE: ../../../third_party/icu/source/i18n/unicode/reldatefmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/scientificnumberformatter.h +FILE: ../../../third_party/icu/source/i18n/unicode/search.h +FILE: ../../../third_party/icu/source/i18n/unicode/selfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/simpletz.h +FILE: ../../../third_party/icu/source/i18n/unicode/smpdtfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/sortkey.h +FILE: ../../../third_party/icu/source/i18n/unicode/stsearch.h +FILE: ../../../third_party/icu/source/i18n/unicode/tblcoll.h +FILE: ../../../third_party/icu/source/i18n/unicode/timezone.h +FILE: ../../../third_party/icu/source/i18n/unicode/tmunit.h +FILE: ../../../third_party/icu/source/i18n/unicode/tmutamt.h +FILE: ../../../third_party/icu/source/i18n/unicode/tmutfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/translit.h +FILE: ../../../third_party/icu/source/i18n/unicode/tzfmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/tznames.h +FILE: ../../../third_party/icu/source/i18n/unicode/tzrule.h +FILE: ../../../third_party/icu/source/i18n/unicode/tztrans.h +FILE: ../../../third_party/icu/source/i18n/unicode/ucal.h +FILE: ../../../third_party/icu/source/i18n/unicode/ucol.h +FILE: ../../../third_party/icu/source/i18n/unicode/ucoleitr.h +FILE: ../../../third_party/icu/source/i18n/unicode/ucsdet.h +FILE: ../../../third_party/icu/source/i18n/unicode/udat.h +FILE: ../../../third_party/icu/source/i18n/unicode/udateintervalformat.h +FILE: ../../../third_party/icu/source/i18n/unicode/udatpg.h +FILE: ../../../third_party/icu/source/i18n/unicode/ufieldpositer.h +FILE: ../../../third_party/icu/source/i18n/unicode/uformattable.h +FILE: ../../../third_party/icu/source/i18n/unicode/ugender.h +FILE: ../../../third_party/icu/source/i18n/unicode/ulocdata.h +FILE: ../../../third_party/icu/source/i18n/unicode/umsg.h +FILE: ../../../third_party/icu/source/i18n/unicode/unirepl.h +FILE: ../../../third_party/icu/source/i18n/unicode/unum.h +FILE: ../../../third_party/icu/source/i18n/unicode/unumberformatter.h +FILE: ../../../third_party/icu/source/i18n/unicode/unumsys.h +FILE: ../../../third_party/icu/source/i18n/unicode/upluralrules.h +FILE: ../../../third_party/icu/source/i18n/unicode/uregex.h +FILE: ../../../third_party/icu/source/i18n/unicode/uregion.h +FILE: ../../../third_party/icu/source/i18n/unicode/ureldatefmt.h +FILE: ../../../third_party/icu/source/i18n/unicode/usearch.h +FILE: ../../../third_party/icu/source/i18n/unicode/uspoof.h +FILE: ../../../third_party/icu/source/i18n/unicode/utmscale.h +FILE: ../../../third_party/icu/source/i18n/unicode/utrans.h +FILE: ../../../third_party/icu/source/i18n/unicode/vtzone.h +FILE: ../../../third_party/icu/source/i18n/unum.cpp +FILE: ../../../third_party/icu/source/i18n/unumsys.cpp +FILE: ../../../third_party/icu/source/i18n/upluralrules.cpp +FILE: ../../../third_party/icu/source/i18n/uregex.cpp +FILE: ../../../third_party/icu/source/i18n/uregexc.cpp +FILE: ../../../third_party/icu/source/i18n/uregion.cpp +FILE: ../../../third_party/icu/source/i18n/usearch.cpp +FILE: ../../../third_party/icu/source/i18n/uspoof.cpp +FILE: ../../../third_party/icu/source/i18n/uspoof_build.cpp +FILE: ../../../third_party/icu/source/i18n/uspoof_conf.cpp +FILE: ../../../third_party/icu/source/i18n/uspoof_conf.h +FILE: ../../../third_party/icu/source/i18n/uspoof_impl.cpp +FILE: ../../../third_party/icu/source/i18n/uspoof_impl.h +FILE: ../../../third_party/icu/source/i18n/usrchimp.h +FILE: ../../../third_party/icu/source/i18n/utf16collationiterator.cpp +FILE: ../../../third_party/icu/source/i18n/utf16collationiterator.h +FILE: ../../../third_party/icu/source/i18n/utf8collationiterator.cpp +FILE: ../../../third_party/icu/source/i18n/utf8collationiterator.h +FILE: ../../../third_party/icu/source/i18n/utmscale.cpp +FILE: ../../../third_party/icu/source/i18n/utrans.cpp +FILE: ../../../third_party/icu/source/i18n/vtzone.cpp +FILE: ../../../third_party/icu/source/i18n/vzone.cpp +FILE: ../../../third_party/icu/source/i18n/vzone.h +FILE: ../../../third_party/icu/source/i18n/windtfmt.cpp +FILE: ../../../third_party/icu/source/i18n/windtfmt.h +FILE: ../../../third_party/icu/source/i18n/winnmfmt.cpp +FILE: ../../../third_party/icu/source/i18n/winnmfmt.h +FILE: ../../../third_party/icu/source/i18n/wintzimpl.cpp +FILE: ../../../third_party/icu/source/i18n/wintzimpl.h +FILE: ../../../third_party/icu/source/i18n/zonemeta.cpp +FILE: ../../../third_party/icu/source/i18n/zonemeta.h +FILE: ../../../third_party/icu/source/i18n/zrule.cpp +FILE: ../../../third_party/icu/source/i18n/zrule.h +FILE: ../../../third_party/icu/source/i18n/ztrans.cpp +FILE: ../../../third_party/icu/source/i18n/ztrans.h +FILE: ../../../third_party/icu/source/icudefs.mk.in +FILE: ../../../third_party/icu/source/io/io.rc +FILE: ../../../third_party/icu/source/io/locbund.cpp +FILE: ../../../third_party/icu/source/io/locbund.h +FILE: ../../../third_party/icu/source/io/sprintf.cpp +FILE: ../../../third_party/icu/source/io/sscanf.cpp +FILE: ../../../third_party/icu/source/io/ucln_io.cpp +FILE: ../../../third_party/icu/source/io/ucln_io.h +FILE: ../../../third_party/icu/source/io/ufile.cpp +FILE: ../../../third_party/icu/source/io/ufile.h +FILE: ../../../third_party/icu/source/io/ufmt_cmn.cpp +FILE: ../../../third_party/icu/source/io/ufmt_cmn.h +FILE: ../../../third_party/icu/source/io/unicode/ustdio.h +FILE: ../../../third_party/icu/source/io/unicode/ustream.h +FILE: ../../../third_party/icu/source/io/uprintf.cpp +FILE: ../../../third_party/icu/source/io/uprintf.h +FILE: ../../../third_party/icu/source/io/uprntf_p.cpp +FILE: ../../../third_party/icu/source/io/uscanf.cpp +FILE: ../../../third_party/icu/source/io/uscanf.h +FILE: ../../../third_party/icu/source/io/uscanf_p.cpp +FILE: ../../../third_party/icu/source/io/ustdio.cpp +FILE: ../../../third_party/icu/source/io/ustream.cpp +FILE: ../../../third_party/icu/source/samples/break/break.cpp +FILE: ../../../third_party/icu/source/samples/break/ubreak.c +FILE: ../../../third_party/icu/source/samples/cal/cal.c +FILE: ../../../third_party/icu/source/samples/cal/uprint.c +FILE: ../../../third_party/icu/source/samples/cal/uprint.h +FILE: ../../../third_party/icu/source/samples/case/case.cpp +FILE: ../../../third_party/icu/source/samples/case/ucase.c +FILE: ../../../third_party/icu/source/samples/citer/citer.cpp +FILE: ../../../third_party/icu/source/samples/coll/coll.cpp +FILE: ../../../third_party/icu/source/samples/csdet/csdet.c +FILE: ../../../third_party/icu/source/samples/date/date.c +FILE: ../../../third_party/icu/source/samples/date/uprint.c +FILE: ../../../third_party/icu/source/samples/date/uprint.h +FILE: ../../../third_party/icu/source/samples/datecal/cal.cpp +FILE: ../../../third_party/icu/source/samples/datecal/ccal.c +FILE: ../../../third_party/icu/source/samples/datefmt/answers/main_0.cpp +FILE: ../../../third_party/icu/source/samples/datefmt/answers/main_1.cpp +FILE: ../../../third_party/icu/source/samples/datefmt/answers/main_2.cpp +FILE: ../../../third_party/icu/source/samples/datefmt/answers/main_3.cpp +FILE: ../../../third_party/icu/source/samples/datefmt/main.cpp +FILE: ../../../third_party/icu/source/samples/datefmt/util.cpp +FILE: ../../../third_party/icu/source/samples/datefmt/util.h +FILE: ../../../third_party/icu/source/samples/dtitvfmtsample/dtitvfmtsample.cpp +FILE: ../../../third_party/icu/source/samples/dtptngsample/dtptngsample.cpp +FILE: ../../../third_party/icu/source/samples/layout/FontMap.GDI +FILE: ../../../third_party/icu/source/samples/layout/FontMap.Gnome +FILE: ../../../third_party/icu/source/samples/layout/FontMap.cpp +FILE: ../../../third_party/icu/source/samples/layout/FontMap.h +FILE: ../../../third_party/icu/source/samples/layout/FontTableCache.cpp +FILE: ../../../third_party/icu/source/samples/layout/FontTableCache.h +FILE: ../../../third_party/icu/source/samples/layout/GDIFontInstance.cpp +FILE: ../../../third_party/icu/source/samples/layout/GDIFontInstance.h +FILE: ../../../third_party/icu/source/samples/layout/GDIFontMap.cpp +FILE: ../../../third_party/icu/source/samples/layout/GDIFontMap.h +FILE: ../../../third_party/icu/source/samples/layout/GDIGUISupport.cpp +FILE: ../../../third_party/icu/source/samples/layout/GDIGUISupport.h +FILE: ../../../third_party/icu/source/samples/layout/GUISupport.h +FILE: ../../../third_party/icu/source/samples/layout/GnomeFontInstance.cpp +FILE: ../../../third_party/icu/source/samples/layout/GnomeFontInstance.h +FILE: ../../../third_party/icu/source/samples/layout/GnomeFontMap.cpp +FILE: ../../../third_party/icu/source/samples/layout/GnomeFontMap.h +FILE: ../../../third_party/icu/source/samples/layout/GnomeGUISupport.cpp +FILE: ../../../third_party/icu/source/samples/layout/GnomeGUISupport.h +FILE: ../../../third_party/icu/source/samples/layout/LayoutSample.rc +FILE: ../../../third_party/icu/source/samples/layout/LayoutSample.rc +FILE: ../../../third_party/icu/source/samples/layout/RenderingSurface.h +FILE: ../../../third_party/icu/source/samples/layout/ScriptCompositeFontInstance.cpp +FILE: ../../../third_party/icu/source/samples/layout/ScriptCompositeFontInstance.h +FILE: ../../../third_party/icu/source/samples/layout/Surface.cpp +FILE: ../../../third_party/icu/source/samples/layout/Surface.h +FILE: ../../../third_party/icu/source/samples/layout/UnicodeReader.cpp +FILE: ../../../third_party/icu/source/samples/layout/UnicodeReader.h +FILE: ../../../third_party/icu/source/samples/layout/arraymem.h +FILE: ../../../third_party/icu/source/samples/layout/cgnomelayout.c +FILE: ../../../third_party/icu/source/samples/layout/clayout.c +FILE: ../../../third_party/icu/source/samples/layout/cmaps.cpp +FILE: ../../../third_party/icu/source/samples/layout/cmaps.h +FILE: ../../../third_party/icu/source/samples/layout/gdiglue.cpp +FILE: ../../../third_party/icu/source/samples/layout/gdiglue.h +FILE: ../../../third_party/icu/source/samples/layout/gnomeglue.cpp +FILE: ../../../third_party/icu/source/samples/layout/gnomeglue.h +FILE: ../../../third_party/icu/source/samples/layout/gnomelayout.cpp +FILE: ../../../third_party/icu/source/samples/layout/gsupport.h +FILE: ../../../third_party/icu/source/samples/layout/layout.cpp +FILE: ../../../third_party/icu/source/samples/layout/paragraph.cpp +FILE: ../../../third_party/icu/source/samples/layout/paragraph.h +FILE: ../../../third_party/icu/source/samples/layout/pflow.c +FILE: ../../../third_party/icu/source/samples/layout/pflow.h +FILE: ../../../third_party/icu/source/samples/layout/resource.h +FILE: ../../../third_party/icu/source/samples/layout/rsurface.cpp +FILE: ../../../third_party/icu/source/samples/layout/rsurface.h +FILE: ../../../third_party/icu/source/samples/layout/sfnt.h +FILE: ../../../third_party/icu/source/samples/layout/ucreader.cpp +FILE: ../../../third_party/icu/source/samples/layout/ucreader.h +FILE: ../../../third_party/icu/source/samples/legacy/legacy.cpp +FILE: ../../../third_party/icu/source/samples/legacy/newcol.cpp +FILE: ../../../third_party/icu/source/samples/legacy/oldcol.cpp +FILE: ../../../third_party/icu/source/samples/msgfmt/answers/main_0.cpp +FILE: ../../../third_party/icu/source/samples/msgfmt/answers/main_1.cpp +FILE: ../../../third_party/icu/source/samples/msgfmt/answers/main_2.cpp +FILE: ../../../third_party/icu/source/samples/msgfmt/answers/main_3.cpp +FILE: ../../../third_party/icu/source/samples/msgfmt/main.cpp +FILE: ../../../third_party/icu/source/samples/msgfmt/util.cpp +FILE: ../../../third_party/icu/source/samples/msgfmt/util.h +FILE: ../../../third_party/icu/source/samples/numfmt/capi.c +FILE: ../../../third_party/icu/source/samples/numfmt/main.cpp +FILE: ../../../third_party/icu/source/samples/numfmt/util.cpp +FILE: ../../../third_party/icu/source/samples/numfmt/util.h +FILE: ../../../third_party/icu/source/samples/plurfmtsample/plurfmtsample.cpp +FILE: ../../../third_party/icu/source/samples/props/props.cpp +FILE: ../../../third_party/icu/source/samples/strsrch/strsrch.cpp +FILE: ../../../third_party/icu/source/samples/translit/answers/main_1.cpp +FILE: ../../../third_party/icu/source/samples/translit/answers/main_2.cpp +FILE: ../../../third_party/icu/source/samples/translit/answers/main_3.cpp +FILE: ../../../third_party/icu/source/samples/translit/answers/main_4.cpp +FILE: ../../../third_party/icu/source/samples/translit/answers/unaccent.cpp +FILE: ../../../third_party/icu/source/samples/translit/answers/unaccent.h +FILE: ../../../third_party/icu/source/samples/translit/main.cpp +FILE: ../../../third_party/icu/source/samples/translit/unaccent.cpp +FILE: ../../../third_party/icu/source/samples/translit/unaccent.h +FILE: ../../../third_party/icu/source/samples/translit/util.cpp +FILE: ../../../third_party/icu/source/samples/translit/util.h +FILE: ../../../third_party/icu/source/samples/uciter8/uciter8.c +FILE: ../../../third_party/icu/source/samples/uciter8/uit_len8.c +FILE: ../../../third_party/icu/source/samples/uciter8/uit_len8.h +FILE: ../../../third_party/icu/source/samples/ucnv/convsamp.cpp +FILE: ../../../third_party/icu/source/samples/ucnv/flagcb.c +FILE: ../../../third_party/icu/source/samples/ucnv/flagcb.h +FILE: ../../../third_party/icu/source/samples/udata/reader.c +FILE: ../../../third_party/icu/source/samples/udata/writer.c +FILE: ../../../third_party/icu/source/samples/ufortune/resources/fortune_resources.mak +FILE: ../../../third_party/icu/source/samples/ufortune/ufortune.c +FILE: ../../../third_party/icu/source/samples/ugrep/ugrep.cpp +FILE: ../../../third_party/icu/source/samples/uresb/resources.mak +FILE: ../../../third_party/icu/source/samples/uresb/uresb.c +FILE: ../../../third_party/icu/source/samples/ustring/ustring.cpp +FILE: ../../../third_party/icu/source/stubdata/stubdata.cpp +FILE: ../../../third_party/icu/source/tools/ctestfw/ctest.c +FILE: ../../../third_party/icu/source/tools/ctestfw/datamap.cpp +FILE: ../../../third_party/icu/source/tools/ctestfw/testdata.cpp +FILE: ../../../third_party/icu/source/tools/ctestfw/tstdtmod.cpp +FILE: ../../../third_party/icu/source/tools/ctestfw/ucln_ct.c +FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/ctest.h +FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/datamap.h +FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/testdata.h +FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/testlog.h +FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/testtype.h +FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/tstdtmod.h +FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/uperf.h +FILE: ../../../third_party/icu/source/tools/ctestfw/unicode/utimer.h +FILE: ../../../third_party/icu/source/tools/ctestfw/uperf.cpp +FILE: ../../../third_party/icu/source/tools/escapesrc/cptbl.h +FILE: ../../../third_party/icu/source/tools/escapesrc/escapesrc.cpp +FILE: ../../../third_party/icu/source/tools/escapesrc/expect-simple.cpp +FILE: ../../../third_party/icu/source/tools/escapesrc/tblgen.cpp +FILE: ../../../third_party/icu/source/tools/escapesrc/test-nochange.cpp +FILE: ../../../third_party/icu/source/tools/escapesrc/test-simple.cpp +FILE: ../../../third_party/icu/source/tools/genbrk/genbrk.1.in +FILE: ../../../third_party/icu/source/tools/genbrk/genbrk.cpp +FILE: ../../../third_party/icu/source/tools/genccode/genccode.8.in +FILE: ../../../third_party/icu/source/tools/genccode/genccode.c +FILE: ../../../third_party/icu/source/tools/gencfu/gencfu.1.in +FILE: ../../../third_party/icu/source/tools/gencfu/gencfu.cpp +FILE: ../../../third_party/icu/source/tools/gencmn/gencmn.8.in +FILE: ../../../third_party/icu/source/tools/gencmn/gencmn.c +FILE: ../../../third_party/icu/source/tools/gencnval/gencnval.1.in +FILE: ../../../third_party/icu/source/tools/gencnval/gencnval.c +FILE: ../../../third_party/icu/source/tools/gencolusb/extract_unsafe_backwards.cpp +FILE: ../../../third_party/icu/source/tools/gencolusb/verify_uset.cpp +FILE: ../../../third_party/icu/source/tools/gendict/gendict.1.in +FILE: ../../../third_party/icu/source/tools/gendict/gendict.cpp +FILE: ../../../third_party/icu/source/tools/gennorm2/extradata.cpp +FILE: ../../../third_party/icu/source/tools/gennorm2/extradata.h +FILE: ../../../third_party/icu/source/tools/gennorm2/gennorm2.cpp +FILE: ../../../third_party/icu/source/tools/gennorm2/n2builder.cpp +FILE: ../../../third_party/icu/source/tools/gennorm2/n2builder.h +FILE: ../../../third_party/icu/source/tools/gennorm2/norms.cpp +FILE: ../../../third_party/icu/source/tools/gennorm2/norms.h +FILE: ../../../third_party/icu/source/tools/genrb/derb.1.in +FILE: ../../../third_party/icu/source/tools/genrb/derb.cpp +FILE: ../../../third_party/icu/source/tools/genrb/errmsg.c +FILE: ../../../third_party/icu/source/tools/genrb/errmsg.h +FILE: ../../../third_party/icu/source/tools/genrb/genrb.1.in +FILE: ../../../third_party/icu/source/tools/genrb/genrb.cpp +FILE: ../../../third_party/icu/source/tools/genrb/genrb.h +FILE: ../../../third_party/icu/source/tools/genrb/parse.cpp +FILE: ../../../third_party/icu/source/tools/genrb/parse.h +FILE: ../../../third_party/icu/source/tools/genrb/prscmnts.cpp +FILE: ../../../third_party/icu/source/tools/genrb/prscmnts.h +FILE: ../../../third_party/icu/source/tools/genrb/rbutil.c +FILE: ../../../third_party/icu/source/tools/genrb/rbutil.h +FILE: ../../../third_party/icu/source/tools/genrb/read.c +FILE: ../../../third_party/icu/source/tools/genrb/read.h +FILE: ../../../third_party/icu/source/tools/genrb/reslist.cpp +FILE: ../../../third_party/icu/source/tools/genrb/reslist.h +FILE: ../../../third_party/icu/source/tools/genrb/rle.c +FILE: ../../../third_party/icu/source/tools/genrb/rle.h +FILE: ../../../third_party/icu/source/tools/genrb/ustr.c +FILE: ../../../third_party/icu/source/tools/genrb/ustr.h +FILE: ../../../third_party/icu/source/tools/genrb/wrtjava.cpp +FILE: ../../../third_party/icu/source/tools/genrb/wrtxml.cpp +FILE: ../../../third_party/icu/source/tools/gensprep/gensprep.8.in +FILE: ../../../third_party/icu/source/tools/gensprep/gensprep.c +FILE: ../../../third_party/icu/source/tools/gensprep/gensprep.h +FILE: ../../../third_party/icu/source/tools/gensprep/store.c +FILE: ../../../third_party/icu/source/tools/gentest/genres32.c +FILE: ../../../third_party/icu/source/tools/gentest/gentest.c +FILE: ../../../third_party/icu/source/tools/gentest/gentest.h +FILE: ../../../third_party/icu/source/tools/icuinfo/icuinfo.cpp +FILE: ../../../third_party/icu/source/tools/icuinfo/testplug.c +FILE: ../../../third_party/icu/source/tools/icupkg/icupkg.8.in +FILE: ../../../third_party/icu/source/tools/icupkg/icupkg.cpp +FILE: ../../../third_party/icu/source/tools/icuswap/icuswap.cpp +FILE: ../../../third_party/icu/source/tools/makeconv/gencnvex.c +FILE: ../../../third_party/icu/source/tools/makeconv/genmbcs.cpp +FILE: ../../../third_party/icu/source/tools/makeconv/genmbcs.h +FILE: ../../../third_party/icu/source/tools/makeconv/makeconv.1.in +FILE: ../../../third_party/icu/source/tools/makeconv/makeconv.cpp +FILE: ../../../third_party/icu/source/tools/makeconv/makeconv.h +FILE: ../../../third_party/icu/source/tools/makeconv/ucnvstat.c +FILE: ../../../third_party/icu/source/tools/pkgdata/pkgdata.1.in +FILE: ../../../third_party/icu/source/tools/pkgdata/pkgdata.cpp +FILE: ../../../third_party/icu/source/tools/pkgdata/pkgtypes.c +FILE: ../../../third_party/icu/source/tools/pkgdata/pkgtypes.h +FILE: ../../../third_party/icu/source/tools/toolutil/collationinfo.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/collationinfo.h +FILE: ../../../third_party/icu/source/tools/toolutil/dbgutil.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/dbgutil.h +FILE: ../../../third_party/icu/source/tools/toolutil/denseranges.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/denseranges.h +FILE: ../../../third_party/icu/source/tools/toolutil/filestrm.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/filestrm.h +FILE: ../../../third_party/icu/source/tools/toolutil/filetools.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/filetools.h +FILE: ../../../third_party/icu/source/tools/toolutil/flagparser.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/flagparser.h +FILE: ../../../third_party/icu/source/tools/toolutil/package.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/package.h +FILE: ../../../third_party/icu/source/tools/toolutil/pkg_genc.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/pkg_genc.h +FILE: ../../../third_party/icu/source/tools/toolutil/pkg_gencmn.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/pkg_gencmn.h +FILE: ../../../third_party/icu/source/tools/toolutil/pkg_icu.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/pkg_icu.h +FILE: ../../../third_party/icu/source/tools/toolutil/pkg_imp.h +FILE: ../../../third_party/icu/source/tools/toolutil/pkgitems.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/ppucd.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/ppucd.h +FILE: ../../../third_party/icu/source/tools/toolutil/swapimpl.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/swapimpl.h +FILE: ../../../third_party/icu/source/tools/toolutil/toolutil.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/toolutil.h +FILE: ../../../third_party/icu/source/tools/toolutil/ucbuf.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/ucbuf.h +FILE: ../../../third_party/icu/source/tools/toolutil/ucln_tu.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/ucm.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/ucm.h +FILE: ../../../third_party/icu/source/tools/toolutil/ucmstate.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/udbgutil.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/udbgutil.h +FILE: ../../../third_party/icu/source/tools/toolutil/unewdata.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/unewdata.h +FILE: ../../../third_party/icu/source/tools/toolutil/uoptions.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/uoptions.h +FILE: ../../../third_party/icu/source/tools/toolutil/uparse.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/uparse.h +FILE: ../../../third_party/icu/source/tools/toolutil/writesrc.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/writesrc.h +FILE: ../../../third_party/icu/source/tools/toolutil/xmlparser.cpp +FILE: ../../../third_party/icu/source/tools/toolutil/xmlparser.h +FILE: ../../../third_party/icu/source/tools/tzcode/icuregions +FILE: ../../../third_party/icu/source/tools/tzcode/icuzdump.cpp +FILE: ../../../third_party/icu/source/tools/tzcode/icuzones +FILE: ../../../third_party/icu/source/tools/tzcode/tz2icu.cpp +FILE: ../../../third_party/icu/source/tools/tzcode/tz2icu.h ---------------------------------------------------------------------------------------------------- -Copyright (C) 2014, D. R. Commander. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. - -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Unicode® Terms of Use +For the general privacy policy governing access to this site, see the Unicode Privacy Policy. For trademark usage, see the Unicode® Consortium Name and Trademark Usage Policy. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +A. Unicode Copyright. +1. Copyright © 1991-2017 Unicode, Inc. All rights reserved. +2. Certain documents and files on this website contain a legend indicating that "Modification is permitted." Any person is hereby authorized, without fee, to modify such documents and files to create derivative works conforming to the Unicode® Standard, subject to Terms and Conditions herein. +3. Any person is hereby authorized, without fee, to view, use, reproduce, and distribute all documents and files solely for informational purposes and in the creation of products supporting the Unicode Standard, subject to the Terms and Conditions herein. +4. Further specifications of rights and restrictions pertaining to the use of the particular set of data files known as the "Unicode Character Database" can be found in the License. +5. Each version of the Unicode Standard has further specifications of rights and restrictions of use. For the book editions (Unicode 5.0 and earlier), these are found on the back of the title page. The online code charts carry specific restrictions. All other files, including online documentation of the core specification for Unicode 6.0 and later, are covered under these general Terms of Use. +6. No license is granted to "mirror" the Unicode website where a fee is charged for access to the "mirror" site. +7. Modification is not permitted with respect to this document. All copies of this document must be verbatim. +B. Restricted Rights Legend. Any technical data or software which is licensed to the United States of America, its agencies and/or instrumentalities under this Agreement is commercial technical data or commercial computer software developed exclusively at private expense as defined in FAR 2.101, or DFARS 252.227-7014 (June 1995), as applicable. For technical data, use, duplication, or disclosure by the Government is subject to restrictions as set forth in DFARS 202.227-7015 Technical Data, Commercial and Items (Nov 1995) and this Agreement. For Software, in accordance with FAR 12-212 or DFARS 227-7202, as applicable, use, duplication or disclosure by the Government is subject to the restrictions set forth in this Agreement. +C. Warranties and Disclaimers. +1. This publication and/or website may include technical or typographical errors or other inaccuracies . Changes are periodically added to the information herein; these changes will be incorporated in new editions of the publication and/or website. Unicode may make improvements and/or changes in the product(s) and/or program(s) described in this publication and/or website at any time. +2. If this file has been purchased on magnetic or optical media from Unicode, Inc. the sole and exclusive remedy for any claim will be exchange of the defective media within ninety (90) days of original purchase. +3. EXCEPT AS PROVIDED IN SECTION C.2, THIS PUBLICATION AND/OR SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND EITHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. UNICODE AND ITS LICENSORS ASSUME NO RESPONSIBILITY FOR ERRORS OR OMISSIONS IN THIS PUBLICATION AND/OR SOFTWARE OR OTHER DOCUMENTS WHICH ARE REFERENCED BY OR LINKED TO THIS PUBLICATION OR THE UNICODE WEBSITE. +D. Waiver of Damages. In no event shall Unicode or its licensors be liable for any special, incidental, indirect or consequential damages of any kind, or any damages whatsoever, whether or not Unicode was advised of the possibility of the damage, including, without limitation, those resulting from the following: loss of use, data or profits, in connection with the use, modification or distribution of this information or its derivatives. +E. Trademarks & Logos. +1. The Unicode Word Mark and the Unicode Logo are trademarks of Unicode, Inc. “The Unicode Consortium” and “Unicode, Inc.” are trade names of Unicode, Inc. Use of the information and materials found on this website indicates your acknowledgement of Unicode, Inc.’s exclusive worldwide rights in the Unicode Word Mark, the Unicode Logo, and the Unicode trade names. +2. The Unicode Consortium Name and Trademark Usage Policy (“Trademark Policy”) are incorporated herein by reference and you agree to abide by the provisions of the Trademark Policy, which may be changed from time to time in the sole discretion of Unicode, Inc. +3. All third party trademarks referenced herein are the property of their respective owners. +F. Miscellaneous. +1. Jurisdiction and Venue. This server is operated from a location in the State of California, United States of America. Unicode makes no representation that the materials are appropriate for use in other locations. If you access this server from other locations, you are responsible for compliance with local laws. This Agreement, all use of this site and any claims and damages resulting from use of this site are governed solely by the laws of the State of California without regard to any principles which would apply the laws of a different jurisdiction. The user agrees that any disputes regarding this site shall be resolved solely in the courts located in Santa Clara County, California. The user agrees said courts have personal jurisdiction and agree to waive any right to transfer the dispute to any other forum. +2. Modification by Unicode Unicode shall have the right to modify this Agreement at any time by posting it to this site. The user may not assign any part of this Agreement without Unicode’s prior written consent. +3. Taxes. The user agrees to pay any taxes arising from access to this website or use of the information herein, except for those based on Unicode’s net income. +4. Severability. If any provision of this Agreement is declared invalid or unenforceable, the remaining provisions of this Agreement shall remain in effect. +5. Entire Agreement. This Agreement constitutes the entire agreement between the parties. -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolor-mmx.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jccolor-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jcsample-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdcolor-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdcolor-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdcolor-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdmerge-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdmerge-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdmerge-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdsample-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctflt-sse-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctfst-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jfdctint-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctflt-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctfst-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctint-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jidctred-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jquantf-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jquanti-sse2-64.asm ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009, D. R. Commander. +EXHIBIT 1 +UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. +Unicode Data Files include all data files under the directories +http://www.unicode.org/Public/, http://www.unicode.org/reports/, +http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and +http://www.unicode.org/utility/trac/browser/. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Unicode Data Files do not include PDF online code charts under the +directory http://www.unicode.org/Public/. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Software includes any source code published in the Unicode Standard +or under the directories +http://www.unicode.org/Public/, http://www.unicode.org/reports/, +http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and +http://www.unicode.org/utility/trac/browser/. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +NOTICE TO USER: Carefully read the following legal agreement. +BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S +DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), +YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. +IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE +THE DATA FILES OR SOFTWARE. -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jcgray-mmx.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jcgray-mmx.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jcgryext-mmx.asm ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2011, D. R. Commander. +COPYRIGHT AND PERMISSION NOTICE -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. +Copyright © 1991-2017 Unicode, Inc. All rights reserved. +Distributed under the Terms of Use in http://www.unicode.org/copyright.html. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Unicode data files and any associated documentation +(the "Data Files") or Unicode software and any associated documentation +(the "Software") to deal in the Data Files or Software +without restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, and/or sell copies of +the Data Files or Software, and to permit persons to whom the Data Files +or Software are furnished to do so, provided that either +(a) this copyright and permission notice appear with all copies +of the Data Files or Software, or +(b) this copyright and permission notice appear in associated +Documentation. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF +ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT OF THIRD PARTY RIGHTS. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS +NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL +DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, +DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THE DATA FILES OR SOFTWARE. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Except as contained in this notice, the name of a copyright holder +shall not be used in advertising or otherwise to promote the sale, +use or other dealings in these Data Files or Software without prior +written authorization of the copyright holder. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jcgray-sse2-64.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jcgray-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jcgray-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jcgryext-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jcgryext-sse2.asm +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/iso-8859_10-1998.ucm +TYPE: LicenseType.unknown +FILE: ../../../third_party/icu/source/data/mappings/iso-8859_10-1998.ucm ---------------------------------------------------------------------------------------------------- -Copyright (C) 2011, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Copyright (c) 1999 Unicode, Inc. All Rights reserved. + Copyright (C) 2002-2005, International Business Machines + Corporation and others. All Rights Reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +This file is provided as-is by Unicode, Inc. (The Unicode Consortium). +No claims are made as to fitness for any particular purpose. No +warranties of any kind are expressed or implied. The recipient +agrees to determine applicability of information provided. If this +file has been provided on optical media by Unicode, Inc., the sole +remedy for any claim will be exchange of defective media within 90 +days of receipt. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Unicode, Inc. hereby grants the right to freely use the information +supplied in this file in the creation of products supporting the +Unicode Standard, and to make copies of this file in any form for +internal or external distribution as long as this notice remains +attached. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jchuff-sse2-64.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jchuff-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jchuff-sse2.asm +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/iso-8859_11-2001.ucm +TYPE: LicenseType.unknown +FILE: ../../../third_party/icu/source/data/mappings/iso-8859_11-2001.ucm ---------------------------------------------------------------------------------------------------- -Copyright (C) 2009-2011, 2014-2016, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Copyright (c) 2002 Unicode, Inc. All Rights reserved. + Copyright (C) 2002-2005, International Business Machines + Corporation and others. All Rights Reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +This file is provided as-is by Unicode, Inc. (The Unicode Consortium). +No claims are made as to fitness for any particular purpose. No +warranties of any kind are expressed or implied. The recipient +agrees to determine applicability of information provided. If this +file has been provided on optical media by Unicode, Inc., the sole +remedy for any claim will be exchange of defective media within 90 +days of receipt. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Unicode, Inc. hereby grants the right to freely use the information +supplied in this file in the creation of products supporting the +Unicode Standard, and to make copies of this file in any form for +internal or external distribution as long as this notice remains +attached. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jcsample-altivec.c -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jcsample-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jdcolext-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jdcolor-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jdmerge-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jdmrgext-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jdsample-altivec.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/data/mappings/iso-8859_14-1998.ucm +TYPE: LicenseType.unknown +FILE: ../../../third_party/icu/source/data/mappings/iso-8859_14-1998.ucm ---------------------------------------------------------------------------------------------------- -Copyright (C) 2015, D. R. Commander. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Copyright (c) 1998 - 1999 Unicode, Inc. All Rights reserved. + Copyright (C) 2002-2005, International Business Machines + Corporation and others. All Rights Reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +This file is provided as-is by Unicode, Inc. (The Unicode Consortium). +No claims are made as to fitness for any particular purpose. No +warranties of any kind are expressed or implied. The recipient +agrees to determine applicability of information provided. If this +file has been provided on optical media by Unicode, Inc., the sole +remedy for any claim will be exchange of defective media within 90 +days of receipt. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +Unicode, Inc. hereby grants the right to freely use the information +supplied in this file in the creation of products supporting the +Unicode Standard, and to make copies of this file in any form for +internal or external distribution as long as this notice remains +attached. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jdcolext-sse2-64.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jdcolext-sse2-64.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdmrgext-sse2-64.asm +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/decContext.cpp + ../../../third_party/dart/runtime/third_party/double-conversion/COPYING +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/decContext.cpp ---------------------------------------------------------------------------------------------------- -Copyright 2009, 2012 Pierre Ossman for Cendio AB -Copyright (C) 2009, 2012, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. +Copyright (c) IBM Corporation, 2000-2012. All rights reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jdcolext-sse2.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jdcolext-sse2.asm -FILE: ../../../third_party/libjpeg-turbo/simd/jdmrgext-sse2.asm +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/decContext.h + ../../../third_party/dart/runtime/third_party/double-conversion/COPYING +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/decContext.h ---------------------------------------------------------------------------------------------------- -Copyright 2009, 2012 Pierre Ossman for Cendio AB -Copyright (C) 2012, D. R. Commander. - -Based on the x86 SIMD extension for IJG JPEG library -Copyright (C) 1999-2006, MIYASAKA Masaru. +Copyright (c) IBM Corporation, 2000-2011. All rights reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jidctfst-altivec.c -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jidctfst-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jidctint-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jquanti-altivec.c -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_altivec.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/decNumber.cpp + ../../../third_party/dart/runtime/third_party/double-conversion/COPYING +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/decNumber.cpp ---------------------------------------------------------------------------------------------------- -Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Copyright (c) IBM Corporation, 2000-2014. All rights reserved. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd.h + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd.h +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/decNumber.h + ../../../third_party/dart/runtime/third_party/double-conversion/COPYING +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/decNumber.h ---------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2011, 2014-2016, D. R. Commander. -Copyright (C) 2013-2014, MIPS Technologies, Inc., California. -Copyright (C) 2014, Linaro Limited. -Copyright (C) 2015-2016, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. +Copyright (c) IBM Corporation, 2000-2010. All rights reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_arm.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_arm.c -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_arm64.c +LIBRARY: icu +ORIGIN: ../../../third_party/icu/source/i18n/decNumberLocal.h + ../../../third_party/dart/runtime/third_party/double-conversion/COPYING +TYPE: LicenseType.bsd +FILE: ../../../third_party/icu/source/i18n/decNumberLocal.h ---------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2013-2014, 2016, D. R. Commander. -Copyright (C) 2015-2016, Matthieu Darbois. - -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. +Copyright (c) IBM Corporation, 2000-2016. All rights reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_arm64_neon.S -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_arm64_neon.S +ORIGIN: ../../../third_party/libjpeg-turbo/README.ijg +TYPE: LicenseType.ijg +FILE: ../../../third_party/libjpeg-turbo/cderror.h +FILE: ../../../third_party/libjpeg-turbo/cdjpeg.c +FILE: ../../../third_party/libjpeg-turbo/cdjpeg.h +FILE: ../../../third_party/libjpeg-turbo/cjpeg.c +FILE: ../../../third_party/libjpeg-turbo/djpeg.c +FILE: ../../../third_party/libjpeg-turbo/jaricom.c +FILE: ../../../third_party/libjpeg-turbo/jcapimin.c +FILE: ../../../third_party/libjpeg-turbo/jcapistd.c +FILE: ../../../third_party/libjpeg-turbo/jcarith.c +FILE: ../../../third_party/libjpeg-turbo/jccoefct.c +FILE: ../../../third_party/libjpeg-turbo/jccolext.c +FILE: ../../../third_party/libjpeg-turbo/jccolor.c +FILE: ../../../third_party/libjpeg-turbo/jcdctmgr.c +FILE: ../../../third_party/libjpeg-turbo/jchuff.c +FILE: ../../../third_party/libjpeg-turbo/jchuff.h +FILE: ../../../third_party/libjpeg-turbo/jcinit.c +FILE: ../../../third_party/libjpeg-turbo/jcmainct.c +FILE: ../../../third_party/libjpeg-turbo/jcmarker.c +FILE: ../../../third_party/libjpeg-turbo/jcmaster.c +FILE: ../../../third_party/libjpeg-turbo/jcomapi.c +FILE: ../../../third_party/libjpeg-turbo/jconfig.h +FILE: ../../../third_party/libjpeg-turbo/jconfig.h +FILE: ../../../third_party/libjpeg-turbo/jconfig.h.in +FILE: ../../../third_party/libjpeg-turbo/jconfig.h.in +FILE: ../../../third_party/libjpeg-turbo/jconfigint.h +FILE: ../../../third_party/libjpeg-turbo/jconfigint.h +FILE: ../../../third_party/libjpeg-turbo/jconfigint.h.in +FILE: ../../../third_party/libjpeg-turbo/jconfigint.h.in +FILE: ../../../third_party/libjpeg-turbo/jcparam.c +FILE: ../../../third_party/libjpeg-turbo/jcphuff.c +FILE: ../../../third_party/libjpeg-turbo/jcprepct.c +FILE: ../../../third_party/libjpeg-turbo/jcsample.c +FILE: ../../../third_party/libjpeg-turbo/jctrans.c +FILE: ../../../third_party/libjpeg-turbo/jdapimin.c +FILE: ../../../third_party/libjpeg-turbo/jdapistd.c +FILE: ../../../third_party/libjpeg-turbo/jdarith.c +FILE: ../../../third_party/libjpeg-turbo/jdatadst-tj.c +FILE: ../../../third_party/libjpeg-turbo/jdatadst.c +FILE: ../../../third_party/libjpeg-turbo/jdatasrc-tj.c +FILE: ../../../third_party/libjpeg-turbo/jdatasrc.c +FILE: ../../../third_party/libjpeg-turbo/jdcoefct.c +FILE: ../../../third_party/libjpeg-turbo/jdcoefct.h +FILE: ../../../third_party/libjpeg-turbo/jdcol565.c +FILE: ../../../third_party/libjpeg-turbo/jdcolext.c +FILE: ../../../third_party/libjpeg-turbo/jdcolor.c +FILE: ../../../third_party/libjpeg-turbo/jdct.h +FILE: ../../../third_party/libjpeg-turbo/jddctmgr.c +FILE: ../../../third_party/libjpeg-turbo/jdhuff.c +FILE: ../../../third_party/libjpeg-turbo/jdhuff.h +FILE: ../../../third_party/libjpeg-turbo/jdinput.c +FILE: ../../../third_party/libjpeg-turbo/jdmainct.c +FILE: ../../../third_party/libjpeg-turbo/jdmainct.h +FILE: ../../../third_party/libjpeg-turbo/jdmarker.c +FILE: ../../../third_party/libjpeg-turbo/jdmaster.c +FILE: ../../../third_party/libjpeg-turbo/jdmaster.h +FILE: ../../../third_party/libjpeg-turbo/jdmerge.c +FILE: ../../../third_party/libjpeg-turbo/jdmrg565.c +FILE: ../../../third_party/libjpeg-turbo/jdmrgext.c +FILE: ../../../third_party/libjpeg-turbo/jdphuff.c +FILE: ../../../third_party/libjpeg-turbo/jdpostct.c +FILE: ../../../third_party/libjpeg-turbo/jdsample.c +FILE: ../../../third_party/libjpeg-turbo/jdsample.h +FILE: ../../../third_party/libjpeg-turbo/jdtrans.c +FILE: ../../../third_party/libjpeg-turbo/jerror.c +FILE: ../../../third_party/libjpeg-turbo/jerror.h +FILE: ../../../third_party/libjpeg-turbo/jfdctflt.c +FILE: ../../../third_party/libjpeg-turbo/jfdctfst.c +FILE: ../../../third_party/libjpeg-turbo/jfdctint.c +FILE: ../../../third_party/libjpeg-turbo/jidctflt.c +FILE: ../../../third_party/libjpeg-turbo/jidctfst.c +FILE: ../../../third_party/libjpeg-turbo/jidctint.c +FILE: ../../../third_party/libjpeg-turbo/jidctred.c +FILE: ../../../third_party/libjpeg-turbo/jinclude.h +FILE: ../../../third_party/libjpeg-turbo/jmemmgr.c +FILE: ../../../third_party/libjpeg-turbo/jmemnobs.c +FILE: ../../../third_party/libjpeg-turbo/jmemsys.h +FILE: ../../../third_party/libjpeg-turbo/jmorecfg.h +FILE: ../../../third_party/libjpeg-turbo/jpeg_nbits_table.h +FILE: ../../../third_party/libjpeg-turbo/jpeg_nbits_table.h +FILE: ../../../third_party/libjpeg-turbo/jpegcomp.h +FILE: ../../../third_party/libjpeg-turbo/jpegint.h +FILE: ../../../third_party/libjpeg-turbo/jpeglib.h +FILE: ../../../third_party/libjpeg-turbo/jpegtran.c +FILE: ../../../third_party/libjpeg-turbo/jquant1.c +FILE: ../../../third_party/libjpeg-turbo/jquant2.c +FILE: ../../../third_party/libjpeg-turbo/jstdhuff.c +FILE: ../../../third_party/libjpeg-turbo/jutils.c +FILE: ../../../third_party/libjpeg-turbo/jversion.h +FILE: ../../../third_party/libjpeg-turbo/libjpeg.map.in +FILE: ../../../third_party/libjpeg-turbo/libjpeg.map.in +FILE: ../../../third_party/libjpeg-turbo/rdbmp.c +FILE: ../../../third_party/libjpeg-turbo/rdcolmap.c +FILE: ../../../third_party/libjpeg-turbo/rdgif.c +FILE: ../../../third_party/libjpeg-turbo/rdjpgcom.c +FILE: ../../../third_party/libjpeg-turbo/rdppm.c +FILE: ../../../third_party/libjpeg-turbo/rdrle.c +FILE: ../../../third_party/libjpeg-turbo/rdswitch.c +FILE: ../../../third_party/libjpeg-turbo/rdtarga.c +FILE: ../../../third_party/libjpeg-turbo/simd/jcsample.h +FILE: ../../../third_party/libjpeg-turbo/simd/jpeg_nbits_table.inc +FILE: ../../../third_party/libjpeg-turbo/simd/jpeg_nbits_table.inc +FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc +FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc +FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc.h +FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc.h +FILE: ../../../third_party/libjpeg-turbo/transupp.c +FILE: ../../../third_party/libjpeg-turbo/transupp.h +FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile +FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile +FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile.jni +FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile.jni +FILE: ../../../third_party/libjpeg-turbo/wrbmp.c +FILE: ../../../third_party/libjpeg-turbo/wrgif.c +FILE: ../../../third_party/libjpeg-turbo/wrjpgcom.c +FILE: ../../../third_party/libjpeg-turbo/wrppm.c +FILE: ../../../third_party/libjpeg-turbo/wrppm.h +FILE: ../../../third_party/libjpeg-turbo/wrrle.c +FILE: ../../../third_party/libjpeg-turbo/wrtarga.c ---------------------------------------------------------------------------------------------------- -Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). -All Rights Reserved. -Author: Siarhei Siamashka -Copyright (C) 2013-2014, Linaro Limited. All Rights Reserved. -Author: Ragesh Radhakrishnan -Copyright (C) 2014-2016, D. R. Commander. All Rights Reserved. -Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. -Copyright (C) 2016, Siarhei Siamashka. All Rights Reserved. - -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +libjpeg-turbo note: This file has been modified by The libjpeg-turbo Project +to include only information relevant to libjpeg-turbo, to wordsmith certain +sections, and to remove impolitic language that existed in the libjpeg v8 +README. It is included only for reference. Please see README.md for +information specific to libjpeg-turbo. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +The Independent JPEG Group's JPEG software +========================================== -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +This distribution contains a release of the Independent JPEG Group's free JPEG +software. You are welcome to redistribute this software and to use it for any +purpose, subject to the conditions under LEGAL ISSUES, below. -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_arm_neon.S -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_arm_neon.S ----------------------------------------------------------------------------------------------------- -Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). -All Rights Reserved. -Author: Siarhei Siamashka -Copyright (C) 2014, Siarhei Siamashka. All Rights Reserved. -Copyright (C) 2014, Linaro Limited. All Rights Reserved. -Copyright (C) 2015, D. R. Commander. All Rights Reserved. -Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. +This software is the work of Tom Lane, Guido Vollbeding, Philip Gladstone, +Bill Allombert, Jim Boucher, Lee Crocker, Bob Friesenhahn, Ben Jackson, +Julian Minguillon, Luis Ortiz, George Phillips, Davide Rossi, Ge' Weijers, +and other members of the Independent JPEG Group. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +IJG is not affiliated with the ISO/IEC JTC1/SC29/WG1 standards committee +(also known as JPEG, together with ITU-T SG16). -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +DOCUMENTATION ROADMAP +===================== -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +This file contains the following sections: -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_i386.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_i386.c ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2013-2014, 2016, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. +OVERVIEW General description of JPEG and the IJG software. +LEGAL ISSUES Copyright, lack of warranty, terms of distribution. +REFERENCES Where to learn more about JPEG. +ARCHIVE LOCATIONS Where to find newer versions of this software. +FILE FORMAT WARS Software *not* to get. +TO DO Plans for future IJG releases. -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. +Other documentation files in the distribution are: -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +User documentation: + usage.txt Usage instructions for cjpeg, djpeg, jpegtran, + rdjpgcom, and wrjpgcom. + *.1 Unix-style man pages for programs (same info as usage.txt). + wizard.txt Advanced usage instructions for JPEG wizards only. + change.log Version-to-version change highlights. +Programmer and internal documentation: + libjpeg.txt How to use the JPEG library in your own programs. + example.c Sample code for calling the JPEG library. + structure.txt Overview of the JPEG library's internal structure. + coderules.txt Coding style rules --- please read if you contribute code. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +Please read at least usage.txt. Some information can also be found in the JPEG +FAQ (Frequently Asked Questions) article. See ARCHIVE LOCATIONS below to find +out where to obtain the FAQ article. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +If you want to understand how the JPEG code works, we suggest reading one or +more of the REFERENCES, then looking at the documentation files (in roughly +the order listed) before diving into the code. -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_mips.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_mips.c ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2014, D. R. Commander. -Copyright (C) 2013-2014, MIPS Technologies, Inc., California. -Copyright (C) 2015, Matthieu Darbois. +OVERVIEW +======== -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. +This package contains C software to implement JPEG image encoding, decoding, +and transcoding. JPEG (pronounced "jay-peg") is a standardized compression +method for full-color and grayscale images. JPEG's strong suit is compressing +photographic images or other types of images that have smooth color and +brightness transitions between neighboring pixels. Images with sharp lines or +other abrupt features may not compress well with JPEG, and a higher JPEG +quality may have to be used to avoid visible compression artifacts with such +images. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +JPEG is lossy, meaning that the output pixels are not necessarily identical to +the input pixels. However, on photographic content and other "smooth" images, +very good compression ratios can be obtained with no visible compression +artifacts, and extremely high compression ratios are possible if you are +willing to sacrifice image quality (by reducing the "quality" setting in the +compressor.) -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +This software implements JPEG baseline, extended-sequential, and progressive +compression processes. Provision is made for supporting all variants of these +processes, although some uncommon parameter settings aren't implemented yet. +We have made no provision for supporting the hierarchical or lossless +processes defined in the standard. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +We provide a set of library routines for reading and writing JPEG image files, +plus two sample applications "cjpeg" and "djpeg", which use the library to +perform conversion between JPEG and some other popular image file formats. +The library is intended to be reused in other applications. -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_mips_dspr2.S -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_mips_dspr2.S ----------------------------------------------------------------------------------------------------- -Copyright (C) 2013-2014, MIPS Technologies, Inc., California. -All Rights Reserved. -Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) - Darko Laus (darko.laus@imgtec.com) -Copyright (C) 2015, D. R. Commander. All Rights Reserved. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +In order to support file conversion and viewing software, we have included +considerable functionality beyond the bare JPEG coding/decoding capability; +for example, the color quantization modules are not strictly part of JPEG +decoding, but they are essential for output to colormapped file formats or +colormapped displays. These extra functions can be compiled out of the +library if not required for a particular application. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +We have also included "jpegtran", a utility for lossless transcoding between +different JPEG processes, and "rdjpgcom" and "wrjpgcom", two simple +applications for inserting and extracting textual comments in JFIF files. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +The emphasis in designing this software has been on achieving portability and +flexibility, while also making it fast enough to be useful. In particular, +the software is not intended to be read as a tutorial on JPEG. (See the +REFERENCES section for introductory material.) Rather, it is intended to +be reliable, portable, industrial-strength code. We do not claim to have +achieved that goal in every aspect of the software, but we strive for it. -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_mips_dspr2_asm.h -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_mips_dspr2_asm.h ----------------------------------------------------------------------------------------------------- -Copyright (C) 2013, MIPS Technologies, Inc., California. -All Rights Reserved. -Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) - Darko Laus (darko.laus@imgtec.com) -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +We welcome the use of this software as a component of commercial products. +No royalty is required, but we do ask for an acknowledgement in product +documentation, as described under LEGAL ISSUES. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +LEGAL ISSUES +============ -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +In plain English: -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_powerpc.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_powerpc.c ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2014-2015, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. +1. We don't promise that this software works. (But if you find any bugs, + please let us know!) +2. You can use this software for whatever you want. You don't have to pay us. +3. You may not pretend that you wrote this software. If you use it in a + program, you must acknowledge somewhere in your documentation that + you've used the IJG code. -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. +In legalese: -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +The authors make NO WARRANTY or representation, either express or implied, +with respect to this software, its quality, accuracy, merchantability, or +fitness for a particular purpose. This software is provided "AS IS", and you, +its user, assume the entire risk as to its quality and accuracy. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +This software is copyright (C) 1991-2016, Thomas G. Lane, Guido Vollbeding. +All Rights Reserved except as specified below. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +Permission is hereby granted to use, copy, modify, and distribute this +software (or portions thereof) for any purpose, without fee, subject to these +conditions: +(1) If any part of the source code for this software is distributed, then this +README file must be included, with this copyright and no-warranty notice +unaltered; and any additions, deletions, or changes to the original files +must be clearly indicated in accompanying documentation. +(2) If only executable code is distributed, then the accompanying +documentation must state that "this software is based in part on the work of +the Independent JPEG Group". +(3) Permission for use of this software is granted only if the user accepts +full responsibility for any undesirable consequences; the authors accept +NO LIABILITY for damages of any kind. -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_x86_64.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_x86_64.c ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2009-2011, 2014, 2016, D. R. Commander. -Copyright (C) 2015, Matthieu Darbois. +These conditions apply to any software derived from or based on the IJG code, +not just to the unmodified library. If you use our work, you ought to +acknowledge us. -Based on the x86 SIMD extension for IJG JPEG library, -Copyright (C) 1999-2006, MIYASAKA Masaru. +Permission is NOT granted for the use of any IJG author's name or company name +in advertising or publicity relating to this software or products derived from +it. This software may be referred to only as "the Independent JPEG Group's +software". -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +We specifically permit and encourage the use of this software as the basis of +commercial products, provided that all warranty or liability claims are +assumed by the product vendor. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +The Unix configuration script "configure" was produced with GNU Autoconf. +It is copyright by the Free Software Foundation but is freely distributable. +The same holds for its supporting scripts (config.guess, config.sub, +ltmain.sh). Another support script, install-sh, is copyright by X Consortium +but is also freely distributable. -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +The IJG distribution formerly included code to read and write GIF files. +To avoid entanglement with the Unisys LZW patent (now expired), GIF reading +support has been removed altogether, and the GIF writer has been simplified +to produce "uncompressed GIFs". This technique does not use the LZW +algorithm; the resulting GIF files are larger than usual, but are readable +by all standard GIF decoders. -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -TYPE: LicenseType.zlib -FILE: ../../../third_party/libjpeg-turbo/jconfig.h -FILE: ../../../third_party/libjpeg-turbo/jconfig.h.in -FILE: ../../../third_party/libjpeg-turbo/jconfigint.h -FILE: ../../../third_party/libjpeg-turbo/jconfigint.h.in -FILE: ../../../third_party/libjpeg-turbo/jpeg_nbits_table.h -FILE: ../../../third_party/libjpeg-turbo/libjpeg.map.in -FILE: ../../../third_party/libjpeg-turbo/simd/jpeg_nbits_table.inc -FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc -FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc.h -FILE: ../../../third_party/libjpeg-turbo/simd/jsimdext.inc -FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile -FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile.jni ----------------------------------------------------------------------------------------------------- -Copyright 2009 Pierre Ossman for Cendio AB -Copyright (C) 2010, D. R. Commander. +We are required to state that + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." -Based on the x86 SIMD extension for IJG JPEG library - version 1.02 +REFERENCES +========== -Copyright (C) 1999-2006, MIYASAKA Masaru. +We recommend reading one or more of these references before trying to +understand the innards of the JPEG software. -This software is provided 'as-is', without any express or implied -warranty. In no event will the authors be held liable for any damages -arising from the use of this software. +The best short technical introduction to the JPEG compression algorithm is + Wallace, Gregory K. "The JPEG Still Picture Compression Standard", + Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44. +(Adjacent articles in that issue discuss MPEG motion picture compression, +applications of JPEG, and related topics.) If you don't have the CACM issue +handy, a PDF file containing a revised version of Wallace's article is +available at http://www.ijg.org/files/Wallace.JPEG.pdf. The file (actually +a preprint for an article that appeared in IEEE Trans. Consumer Electronics) +omits the sample images that appeared in CACM, but it includes corrections +and some added material. Note: the Wallace article is copyright ACM and IEEE, +and it may not be used for commercial purposes. -Permission is granted to anyone to use this software for any purpose, -including commercial applications, and to alter it and redistribute it -freely, subject to the following restrictions: +A somewhat less technical, more leisurely introduction to JPEG can be found in +"The Data Compression Book" by Mark Nelson and Jean-loup Gailly, published by +M&T Books (New York), 2nd ed. 1996, ISBN 1-55851-434-1. This book provides +good explanations and example C code for a multitude of compression methods +including JPEG. It is an excellent source if you are comfortable reading C +code but don't know much about data compression in general. The book's JPEG +sample code is far from industrial-strength, but when you are ready to look +at a full implementation, you've got one here... -1. The origin of this software must not be misrepresented; you must not - claim that you wrote the original software. If you use this software - in a product, an acknowledgment in the product documentation would be - appreciated but is not required. -2. Altered source versions must be plainly marked as such, and must not be - misrepresented as being the original software. -3. This notice may not be removed or altered from any source distribution. -==================================================================================================== +The best currently available description of JPEG is the textbook "JPEG Still +Image Data Compression Standard" by William B. Pennebaker and Joan L. +Mitchell, published by Van Nostrand Reinhold, 1993, ISBN 0-442-01272-1. +Price US$59.95, 638 pp. The book includes the complete text of the ISO JPEG +standards (DIS 10918-1 and draft DIS 10918-2). -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/tjunittest.c -TYPE: LicenseType.bsd -FILE: ../../../third_party/libjpeg-turbo/tjunittest.c ----------------------------------------------------------------------------------------------------- -Copyright (C)2009-2014 D. R. Commander. All Rights Reserved. +The original JPEG standard is divided into two parts, Part 1 being the actual +specification, while Part 2 covers compliance testing methods. Part 1 is +titled "Digital Compression and Coding of Continuous-tone Still Images, +Part 1: Requirements and guidelines" and has document numbers ISO/IEC IS +10918-1, ITU-T T.81. Part 2 is titled "Digital Compression and Coding of +Continuous-tone Still Images, Part 2: Compliance testing" and has document +numbers ISO/IEC IS 10918-2, ITU-T T.83. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +The JPEG standard does not specify all details of an interchangeable file +format. For the omitted details we follow the "JFIF" conventions, revision +1.02. JFIF 1.02 has been adopted as an Ecma International Technical Report +and thus received a formal publication status. It is available as a free +download in PDF format from +http://www.ecma-international.org/publications/techreports/E-TR-098.htm. +A PostScript version of the JFIF document is available at +http://www.ijg.org/files/jfif.ps.gz. There is also a plain text version at +http://www.ijg.org/files/jfif.txt.gz, but it is missing the figures. -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. +The TIFF 6.0 file format specification can be obtained by FTP from +ftp://ftp.sgi.com/graphics/tiff/TIFF6.ps.gz. The JPEG incorporation scheme +found in the TIFF 6.0 spec of 3-June-92 has a number of serious problems. +IJG does not recommend use of the TIFF 6.0 design (TIFF Compression tag 6). +Instead, we recommend the JPEG design proposed by TIFF Technical Note #2 +(Compression tag 7). Copies of this Note can be obtained from +http://www.ijg.org/files/. It is expected that the next revision +of the TIFF spec will replace the 6.0 JPEG design with the Note's design. +Although IJG's own code does not support TIFF/JPEG, the free libtiff library +uses our library to implement TIFF/JPEG per the Note. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +ARCHIVE LOCATIONS +================= -==================================================================================================== -LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/turbojpeg-jni.c -TYPE: LicenseType.bsd -FILE: ../../../third_party/libjpeg-turbo/turbojpeg-jni.c ----------------------------------------------------------------------------------------------------- -Copyright (C)2011-2016 D. R. Commander. All Rights Reserved. +The "official" archive site for this software is www.ijg.org. +The most recent released version can always be found there in +directory "files". -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +The JPEG FAQ (Frequently Asked Questions) article is a source of some +general information about JPEG. +It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq +and other news.answers archive sites, including the official news.answers +archive at rtfm.mit.edu: ftp://rtfm.mit.edu/pub/usenet/news.answers/jpeg-faq/. +If you don't have Web or FTP access, send e-mail to mail-server@rtfm.mit.edu +with body + send usenet/news.answers/jpeg-faq/part1 + send usenet/news.answers/jpeg-faq/part2 -- Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -- Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -- Neither the name of the libjpeg-turbo Project nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission. +FILE FORMAT WARS +================ -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF -SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS -INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN -CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) -ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. +The ISO/IEC JTC1/SC29/WG1 standards committee (also known as JPEG, together +with ITU-T SG16) currently promotes different formats containing the name +"JPEG" which are incompatible with original DCT-based JPEG. IJG therefore does +not support these formats (see REFERENCES). Indeed, one of the original +reasons for developing this free software was to help force convergence on +common, interoperable format standards for JPEG files. +Don't use an incompatible file format! +(In any case, our decoder will remain capable of reading existing JPEG +image files indefinitely.) + +TO DO +===== + +Please send bug reports, offers of help, etc. to jpeg-info@jpegclub.org. ==================================================================================================== ==================================================================================================== LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/turbojpeg.c +ORIGIN: ../../../third_party/libjpeg-turbo/bmp.c TYPE: LicenseType.bsd -FILE: ../../../third_party/libjpeg-turbo/jconfig.h -FILE: ../../../third_party/libjpeg-turbo/jconfig.h.in -FILE: ../../../third_party/libjpeg-turbo/jconfigint.h -FILE: ../../../third_party/libjpeg-turbo/jconfigint.h.in -FILE: ../../../third_party/libjpeg-turbo/jpeg_nbits_table.h -FILE: ../../../third_party/libjpeg-turbo/libjpeg.map.in -FILE: ../../../third_party/libjpeg-turbo/simd/jpeg_nbits_table.inc -FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc -FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc.h -FILE: ../../../third_party/libjpeg-turbo/tjbench.c -FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile -FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile.jni -FILE: ../../../third_party/libjpeg-turbo/turbojpeg.c +FILE: ../../../third_party/libjpeg-turbo/bmp.c ---------------------------------------------------------------------------------------------------- -Copyright (C)2009-2016 D. R. Commander. All Rights Reserved. +Copyright (C)2011, 2015 D. R. Commander. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -13907,11 +13347,14 @@ POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: libjpeg-turbo -ORIGIN: ../../../third_party/libjpeg-turbo/turbojpeg.h +ORIGIN: ../../../third_party/libjpeg-turbo/bmp.h TYPE: LicenseType.bsd -FILE: ../../../third_party/libjpeg-turbo/turbojpeg.h +FILE: ../../../third_party/libjpeg-turbo/bmp.h +FILE: ../../../third_party/libjpeg-turbo/jcstest.c +FILE: ../../../third_party/libjpeg-turbo/tjutil.c +FILE: ../../../third_party/libjpeg-turbo/tjutil.h ---------------------------------------------------------------------------------------------------- -Copyright (C)2009-2015 D. R. Commander. All Rights Reserved. +Copyright (C)2011 D. R. Commander. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -13939,2839 +13382,1271 @@ POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: libpng -ORIGIN: ../../../third_party/libpng/LICENSE -TYPE: LicenseType.libpng -FILE: ../../../third_party/libpng/contrib/intel/intel_sse.patch -FILE: ../../../third_party/libpng/pngprefix.h ----------------------------------------------------------------------------------------------------- - -==================================================================================================== - -==================================================================================================== -LIBRARY: libpng -ORIGIN: ../../../third_party/libpng/png.h -TYPE: LicenseType.libpng -FILE: ../../../third_party/libpng/arm/arm_init.c -FILE: ../../../third_party/libpng/arm/filter_neon.S -FILE: ../../../third_party/libpng/arm/filter_neon_intrinsics.c -FILE: ../../../third_party/libpng/contrib/intel/filter_sse2_intrinsics.c -FILE: ../../../third_party/libpng/contrib/intel/intel_init.c -FILE: ../../../third_party/libpng/contrib/intel/intel_sse.patch -FILE: ../../../third_party/libpng/png.c -FILE: ../../../third_party/libpng/pngconf.h -FILE: ../../../third_party/libpng/pngdebug.h -FILE: ../../../third_party/libpng/pngerror.c -FILE: ../../../third_party/libpng/pngget.c -FILE: ../../../third_party/libpng/pnginfo.h -FILE: ../../../third_party/libpng/pnglibconf.h -FILE: ../../../third_party/libpng/pngmem.c -FILE: ../../../third_party/libpng/pngpread.c -FILE: ../../../third_party/libpng/pngpriv.h -FILE: ../../../third_party/libpng/pngread.c -FILE: ../../../third_party/libpng/pngrio.c -FILE: ../../../third_party/libpng/pngrtran.c -FILE: ../../../third_party/libpng/pngrutil.c -FILE: ../../../third_party/libpng/pngset.c -FILE: ../../../third_party/libpng/pngstruct.h -FILE: ../../../third_party/libpng/pngtest.c -FILE: ../../../third_party/libpng/pngtrans.c -FILE: ../../../third_party/libpng/pngwio.c -FILE: ../../../third_party/libpng/pngwrite.c -FILE: ../../../third_party/libpng/pngwtran.c -FILE: ../../../third_party/libpng/pngwutil.c ----------------------------------------------------------------------------------------------------- - -==================================================================================================== - -==================================================================================================== -LIBRARY: libsdl -LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/AndroidCodecBench.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/AndroidCodecBench.cpp -FILE: ../../../third_party/skia/bench/AndroidCodecBench.h -FILE: ../../../third_party/skia/bench/BlurOccludedRRectBench.cpp -FILE: ../../../third_party/skia/bench/ColorCodecBench.cpp -FILE: ../../../third_party/skia/bench/ColorCodecBench.h -FILE: ../../../third_party/skia/bench/DrawLatticeBench.cpp -FILE: ../../../third_party/skia/bench/EncoderBench.cpp -FILE: ../../../third_party/skia/bench/GrMipMapBench.cpp -FILE: ../../../third_party/skia/bench/HardStopGradientBench_ScaleNumColors.cpp -FILE: ../../../third_party/skia/bench/HardStopGradientBench_ScaleNumHardStops.cpp -FILE: ../../../third_party/skia/bench/HardStopGradientBench_SpecialHardStops.cpp -FILE: ../../../third_party/skia/bench/ImageCacheBudgetBench.cpp -FILE: ../../../third_party/skia/bench/PDFBench.cpp -FILE: ../../../third_party/skia/bench/QuickRejectBench.cpp -FILE: ../../../third_party/skia/bench/ShapesBench.cpp -FILE: ../../../third_party/skia/bench/SkRasterPipelineBench.cpp -FILE: ../../../third_party/skia/bench/StreamBench.cpp -FILE: ../../../third_party/skia/bench/SwizzleBench.cpp -FILE: ../../../third_party/skia/bench/TileImageFilterBench.cpp -FILE: ../../../third_party/skia/bench/pack_int_uint16_t_Bench.cpp -FILE: ../../../third_party/skia/debugger/QT/SkRasterWidget.h -FILE: ../../../third_party/skia/experimental/svg/model/SkPEG.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGAttribute.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGAttribute.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGAttributeParser.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGAttributeParser.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGCircle.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGCircle.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGClipPath.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGClipPath.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGContainer.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGContainer.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGDOM.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGDOM.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGDefs.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGEllipse.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGEllipse.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGG.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGHiddenContainer.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGIDMapper.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGLine.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGLine.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGLinearGradient.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGLinearGradient.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGNode.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGNode.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGPath.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGPath.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGPoly.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGPoly.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGRect.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGRect.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGRenderContext.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGRenderContext.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGSVG.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGSVG.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGShape.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGShape.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGStop.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGStop.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGTransformableNode.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGTransformableNode.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGTypes.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGValue.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGValue.h -FILE: ../../../third_party/skia/experimental/tools/generate-unicode-test-txt -FILE: ../../../third_party/skia/experimental/xps_to_png/xps_to_png.cs -FILE: ../../../third_party/skia/fuzz/Fuzz.h -FILE: ../../../third_party/skia/fuzz/FuzzGradients.cpp -FILE: ../../../third_party/skia/fuzz/FuzzParsePath.cpp -FILE: ../../../third_party/skia/fuzz/FuzzPathop.cpp -FILE: ../../../third_party/skia/fuzz/fuzz.cpp -FILE: ../../../third_party/skia/gm/OverStroke.cpp -FILE: ../../../third_party/skia/gm/animatedGif.cpp -FILE: ../../../third_party/skia/gm/animatedimageblurs.cpp -FILE: ../../../third_party/skia/gm/arcto.cpp -FILE: ../../../third_party/skia/gm/bigrect.cpp -FILE: ../../../third_party/skia/gm/bitmapimage.cpp -FILE: ../../../third_party/skia/gm/blurcircles2.cpp -FILE: ../../../third_party/skia/gm/bug5252.cpp -FILE: ../../../third_party/skia/gm/bug530095.cpp -FILE: ../../../third_party/skia/gm/bug615686.cpp -FILE: ../../../third_party/skia/gm/circulararcs.cpp -FILE: ../../../third_party/skia/gm/clip_error.cpp -FILE: ../../../third_party/skia/gm/colorfilteralpha8.cpp -FILE: ../../../third_party/skia/gm/colorspacexform.cpp -FILE: ../../../third_party/skia/gm/complexclip4.cpp -FILE: ../../../third_party/skia/gm/complexclip_blur_tiled.cpp -FILE: ../../../third_party/skia/gm/croppedrects.cpp -FILE: ../../../third_party/skia/gm/dashcircle.cpp -FILE: ../../../third_party/skia/gm/drawregion.cpp -FILE: ../../../third_party/skia/gm/drawregionmodes.cpp -FILE: ../../../third_party/skia/gm/encode-platform.cpp -FILE: ../../../third_party/skia/gm/encode-srgb.cpp -FILE: ../../../third_party/skia/gm/filterbug.cpp -FILE: ../../../third_party/skia/gm/gamut.cpp -FILE: ../../../third_party/skia/gm/hardstop_gradients.cpp -FILE: ../../../third_party/skia/gm/imagemakewithfilter.cpp -FILE: ../../../third_party/skia/gm/imagemasksubset.cpp -FILE: ../../../third_party/skia/gm/lattice.cpp -FILE: ../../../third_party/skia/gm/occludedrrectblur.cpp -FILE: ../../../third_party/skia/gm/overdrawcolorfilter.cpp -FILE: ../../../third_party/skia/gm/pathmaskcache.cpp -FILE: ../../../third_party/skia/gm/readpixels.cpp -FILE: ../../../third_party/skia/gm/rectangletexture.cpp -FILE: ../../../third_party/skia/gm/reveal.cpp -FILE: ../../../third_party/skia/gm/rrectclipdrawpaint.cpp -FILE: ../../../third_party/skia/gm/shapes.cpp -FILE: ../../../third_party/skia/gm/showmiplevels.cpp -FILE: ../../../third_party/skia/gm/simplerect.cpp -FILE: ../../../third_party/skia/gm/skbug_4868.cpp -FILE: ../../../third_party/skia/gm/skbug_5321.cpp -FILE: ../../../third_party/skia/gm/stroke_rect_shader.cpp -FILE: ../../../third_party/skia/gm/strokedlines.cpp -FILE: ../../../third_party/skia/gm/subsetshader.cpp -FILE: ../../../third_party/skia/gm/textblobblockreordering.cpp -FILE: ../../../third_party/skia/gm/windowrectangles.cpp -FILE: ../../../third_party/skia/include/codec/SkCodecAnimation.h -FILE: ../../../third_party/skia/include/core/SkBlendMode.h -FILE: ../../../third_party/skia/include/core/SkClipOp.h -FILE: ../../../third_party/skia/include/core/SkColorSpace.h -FILE: ../../../third_party/skia/include/core/SkColorSpaceXform.h -FILE: ../../../third_party/skia/include/core/SkICC.h -FILE: ../../../third_party/skia/include/core/SkMilestone.h -FILE: ../../../third_party/skia/include/core/SkOverdrawCanvas.h -FILE: ../../../third_party/skia/include/core/SkRasterHandleAllocator.h -FILE: ../../../third_party/skia/include/core/SkSwizzle.h -FILE: ../../../third_party/skia/include/core/SkYUVSizeInfo.h -FILE: ../../../third_party/skia/include/effects/SkArithmeticImageFilter.h -FILE: ../../../third_party/skia/include/effects/SkOverdrawColorFilter.h -FILE: ../../../third_party/skia/include/effects/SkPaintImageFilter.h -FILE: ../../../third_party/skia/include/effects/SkRRectsGaussianEdgeMaskFilter.h -FILE: ../../../third_party/skia/include/gpu/vk/GrVkBackendContext.h -FILE: ../../../third_party/skia/include/gpu/vk/GrVkDefines.h -FILE: ../../../third_party/skia/include/gpu/vk/GrVkTypes.h -FILE: ../../../third_party/skia/include/ports/SkFontMgr_FontConfigInterface.h -FILE: ../../../third_party/skia/include/private/GrAuditTrail.h -FILE: ../../../third_party/skia/include/private/GrOpList.h -FILE: ../../../third_party/skia/include/private/GrRenderTargetProxy.h -FILE: ../../../third_party/skia/include/private/GrSingleOwner.h -FILE: ../../../third_party/skia/include/private/GrSurfaceProxy.h -FILE: ../../../third_party/skia/include/private/GrSwizzle.h -FILE: ../../../third_party/skia/include/private/GrTextureProxy.h -FILE: ../../../third_party/skia/include/private/SkBitmaskEnum.h -FILE: ../../../third_party/skia/include/private/SkEncodedInfo.h -FILE: ../../../third_party/skia/include/private/SkLeanWindows.h -FILE: ../../../third_party/skia/include/private/SkSafe_math.h -FILE: ../../../third_party/skia/include/utils/SkNoDrawCanvas.h -FILE: ../../../third_party/skia/samplecode/DecodeFile.h -FILE: ../../../third_party/skia/samplecode/SampleAndroidShadows.cpp -FILE: ../../../third_party/skia/samplecode/SampleCode.cpp -FILE: ../../../third_party/skia/samplecode/SampleMegaStroke.cpp -FILE: ../../../third_party/skia/samplecode/SamplePathOverstroke.cpp -FILE: ../../../third_party/skia/samplecode/SampleSVGFile.cpp -FILE: ../../../third_party/skia/samplecode/SampleSVGPong.cpp -FILE: ../../../third_party/skia/src/codec/SkCodecAnimationPriv.h -FILE: ../../../third_party/skia/src/codec/SkRawAdapterCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkRawAdapterCodec.h -FILE: ../../../third_party/skia/src/codec/SkRawCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkRawCodec.h -FILE: ../../../third_party/skia/src/codec/SkStreamBuffer.cpp -FILE: ../../../third_party/skia/src/codec/SkStreamBuffer.h -FILE: ../../../third_party/skia/src/core/Sk4x4f.h -FILE: ../../../third_party/skia/src/core/SkATrace.cpp -FILE: ../../../third_party/skia/src/core/SkATrace.h -FILE: ../../../third_party/skia/src/core/SkAnnotationKeys.h -FILE: ../../../third_party/skia/src/core/SkArenaAlloc.cpp -FILE: ../../../third_party/skia/src/core/SkArenaAlloc.h -FILE: ../../../third_party/skia/src/core/SkAutoMalloc.h -FILE: ../../../third_party/skia/src/core/SkAutoPixmapStorage.cpp -FILE: ../../../third_party/skia/src/core/SkAutoPixmapStorage.h -FILE: ../../../third_party/skia/src/core/SkBlendModePriv.h -FILE: ../../../third_party/skia/src/core/SkClipOpPriv.h -FILE: ../../../third_party/skia/src/core/SkColorLookUpTable.cpp -FILE: ../../../third_party/skia/src/core/SkColorLookUpTable.h -FILE: ../../../third_party/skia/src/core/SkColorMatrixFilterRowMajor255.h -FILE: ../../../third_party/skia/src/core/SkColorSpace.cpp -FILE: ../../../third_party/skia/src/core/SkColorSpacePriv.h -FILE: ../../../third_party/skia/src/core/SkColorSpaceXform.cpp -FILE: ../../../third_party/skia/src/core/SkColorSpaceXformPriv.h -FILE: ../../../third_party/skia/src/core/SkColorSpaceXform_A2B.cpp -FILE: ../../../third_party/skia/src/core/SkColorSpaceXform_A2B.h -FILE: ../../../third_party/skia/src/core/SkColorSpaceXform_Base.h -FILE: ../../../third_party/skia/src/core/SkColorSpace_A2B.cpp -FILE: ../../../third_party/skia/src/core/SkColorSpace_A2B.h -FILE: ../../../third_party/skia/src/core/SkColorSpace_ICC.cpp -FILE: ../../../third_party/skia/src/core/SkColorSpace_XYZ.cpp -FILE: ../../../third_party/skia/src/core/SkColorSpace_XYZ.h -FILE: ../../../third_party/skia/src/core/SkCpu.cpp -FILE: ../../../third_party/skia/src/core/SkCpu.h -FILE: ../../../third_party/skia/src/core/SkDeduper.h -FILE: ../../../third_party/skia/src/core/SkExchange.h -FILE: ../../../third_party/skia/src/core/SkFixed15.h -FILE: ../../../third_party/skia/src/core/SkFuzzLogging.h -FILE: ../../../third_party/skia/src/core/SkGammas.h -FILE: ../../../third_party/skia/src/core/SkGlobalInitialization_core.cpp -FILE: ../../../third_party/skia/src/core/SkICC.cpp -FILE: ../../../third_party/skia/src/core/SkICCPriv.h -FILE: ../../../third_party/skia/src/core/SkImageFilterCache.cpp -FILE: ../../../third_party/skia/src/core/SkImageFilterCache.h -FILE: ../../../third_party/skia/src/core/SkLRUCache.h -FILE: ../../../third_party/skia/src/core/SkLiteDL.cpp -FILE: ../../../third_party/skia/src/core/SkLiteDL.h -FILE: ../../../third_party/skia/src/core/SkLiteRecorder.cpp -FILE: ../../../third_party/skia/src/core/SkLiteRecorder.h -FILE: ../../../third_party/skia/src/core/SkMSAN.h -FILE: ../../../third_party/skia/src/core/SkMakeUnique.h -FILE: ../../../third_party/skia/src/core/SkMatrixPriv.h -FILE: ../../../third_party/skia/src/core/SkModeColorFilter.h -FILE: ../../../third_party/skia/src/core/SkOverdrawCanvas.cpp -FILE: ../../../third_party/skia/src/core/SkPM4f.h -FILE: ../../../third_party/skia/src/core/SkPM4fPriv.h -FILE: ../../../third_party/skia/src/core/SkPathMeasurePriv.h -FILE: ../../../third_party/skia/src/core/SkPipe.h -FILE: ../../../third_party/skia/src/core/SkRasterPipeline.cpp -FILE: ../../../third_party/skia/src/core/SkRasterPipeline.h -FILE: ../../../third_party/skia/src/core/SkRasterPipelineBlitter.cpp -FILE: ../../../third_party/skia/src/core/SkRecordedDrawable.cpp -FILE: ../../../third_party/skia/src/core/SkRecordedDrawable.h -FILE: ../../../third_party/skia/src/core/SkSRGB.cpp -FILE: ../../../third_party/skia/src/core/SkSRGB.h -FILE: ../../../third_party/skia/src/core/SkScaleToSides.h -FILE: ../../../third_party/skia/src/core/SkScopeExit.h -FILE: ../../../third_party/skia/src/core/SkSinglyLinkedList.h -FILE: ../../../third_party/skia/src/core/SkSpecialImage.cpp -FILE: ../../../third_party/skia/src/core/SkSpecialImage.h -FILE: ../../../third_party/skia/src/core/SkSpecialSurface.cpp -FILE: ../../../third_party/skia/src/core/SkSpecialSurface.h -FILE: ../../../third_party/skia/src/core/SkSwizzle.cpp -FILE: ../../../third_party/skia/src/effects/SkArithmeticImageFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkOverdrawColorFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkPaintImageFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkRRectsGaussianEdgeMaskFilter.cpp -FILE: ../../../third_party/skia/src/gpu/GrAppliedClip.h -FILE: ../../../third_party/skia/src/gpu/GrAuditTrail.cpp -FILE: ../../../third_party/skia/src/gpu/GrBitmapTextureMaker.cpp -FILE: ../../../third_party/skia/src/gpu/GrBitmapTextureMaker.h -FILE: ../../../third_party/skia/src/gpu/GrBuffer.cpp -FILE: ../../../third_party/skia/src/gpu/GrBuffer.h -FILE: ../../../third_party/skia/src/gpu/GrClipStackClip.cpp -FILE: ../../../third_party/skia/src/gpu/GrClipStackClip.h -FILE: ../../../third_party/skia/src/gpu/GrColorSpaceXform.cpp -FILE: ../../../third_party/skia/src/gpu/GrColorSpaceXform.h -FILE: ../../../third_party/skia/src/gpu/GrContextPriv.h -FILE: ../../../third_party/skia/src/gpu/GrFixedClip.h -FILE: ../../../third_party/skia/src/gpu/GrGpuCommandBuffer.cpp -FILE: ../../../third_party/skia/src/gpu/GrGpuCommandBuffer.h -FILE: ../../../third_party/skia/src/gpu/GrImageTextureMaker.cpp -FILE: ../../../third_party/skia/src/gpu/GrImageTextureMaker.h -FILE: ../../../third_party/skia/src/gpu/GrOpList.cpp -FILE: ../../../third_party/skia/src/gpu/GrProgramDesc.cpp -FILE: ../../../third_party/skia/src/gpu/GrReducedClip.cpp -FILE: ../../../third_party/skia/src/gpu/GrReducedClip.h -FILE: ../../../third_party/skia/src/gpu/GrRenderTargetContextPriv.h -FILE: ../../../third_party/skia/src/gpu/GrRenderTargetProxy.cpp -FILE: ../../../third_party/skia/src/gpu/GrResourceHandle.h -FILE: ../../../third_party/skia/src/gpu/GrScissorState.h -FILE: ../../../third_party/skia/src/gpu/GrShaderVar.cpp -FILE: ../../../third_party/skia/src/gpu/GrShaderVar.h -FILE: ../../../third_party/skia/src/gpu/GrShape.cpp -FILE: ../../../third_party/skia/src/gpu/GrShape.h -FILE: ../../../third_party/skia/src/gpu/GrStencilSettings.h -FILE: ../../../third_party/skia/src/gpu/GrStyle.cpp -FILE: ../../../third_party/skia/src/gpu/GrStyle.h -FILE: ../../../third_party/skia/src/gpu/GrSurfaceContext.cpp -FILE: ../../../third_party/skia/src/gpu/GrSurfaceContext.h -FILE: ../../../third_party/skia/src/gpu/GrSurfaceContextPriv.h -FILE: ../../../third_party/skia/src/gpu/GrSurfaceProxy.cpp -FILE: ../../../third_party/skia/src/gpu/GrTextureAdjuster.cpp -FILE: ../../../third_party/skia/src/gpu/GrTextureAdjuster.h -FILE: ../../../third_party/skia/src/gpu/GrTextureContext.cpp -FILE: ../../../third_party/skia/src/gpu/GrTextureContext.h -FILE: ../../../third_party/skia/src/gpu/GrTextureMaker.cpp -FILE: ../../../third_party/skia/src/gpu/GrTextureMaker.h -FILE: ../../../third_party/skia/src/gpu/GrTextureOpList.cpp -FILE: ../../../third_party/skia/src/gpu/GrTextureOpList.h -FILE: ../../../third_party/skia/src/gpu/GrTextureProducer.cpp -FILE: ../../../third_party/skia/src/gpu/GrTextureProducer.h -FILE: ../../../third_party/skia/src/gpu/GrTextureProxy.cpp -FILE: ../../../third_party/skia/src/gpu/GrTextureRenderTargetProxy.cpp -FILE: ../../../third_party/skia/src/gpu/GrTextureRenderTargetProxy.h -FILE: ../../../third_party/skia/src/gpu/GrUserStencilSettings.h -FILE: ../../../third_party/skia/src/gpu/GrWindowRectangles.h -FILE: ../../../third_party/skia/src/gpu/GrWindowRectsState.h -FILE: ../../../third_party/skia/src/gpu/effects/GrSRGBEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrSRGBEffect.h -FILE: ../../../third_party/skia/src/gpu/effects/GrShadowGeoProc.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrShadowGeoProc.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLBuffer.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLBuffer.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLGpuCommandBuffer.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLTestInterface.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLTestInterface.h -FILE: ../../../third_party/skia/src/gpu/gl/glfw/GrGLMakeNativeInterface_glfw.cpp -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLColorSpaceXformHelper.h -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLProgramDataManager.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrClearStencilClipOp.h -FILE: ../../../third_party/skia/src/gpu/ops/GrMSAAPathRenderer.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrPathStencilSettings.h -FILE: ../../../third_party/skia/src/gpu/ops/GrRegionOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrRegionOp.h -FILE: ../../../third_party/skia/src/gpu/ops/GrShadowRRectOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrShadowRRectOp.h -FILE: ../../../third_party/skia/src/gpu/text/GrAtlasTextBlobVertexRegenerator.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkCopyManager.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkCopyManager.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkCopyPipeline.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkCopyPipeline.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkDescriptorPool.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkDescriptorPool.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkDescriptorSet.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkDescriptorSet.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkDescriptorSetManager.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkDescriptorSetManager.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkExtensions.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkExtensions.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkFramebuffer.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkFramebuffer.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkGpuCommandBuffer.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkGpuCommandBuffer.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkImageView.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkImageView.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipeline.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipeline.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipelineState.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipelineState.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipelineStateBuilder.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipelineStateBuilder.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipelineStateCache.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipelineStateDataManager.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkPipelineStateDataManager.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkResourceProvider.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkResourceProvider.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkSampler.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkSampler.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkUniformHandler.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkUniformHandler.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkVaryingHandler.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkVaryingHandler.h -FILE: ../../../third_party/skia/src/images/SkImageEncoderPriv.h -FILE: ../../../third_party/skia/src/opts/SkChecksum_opts.h -FILE: ../../../third_party/skia/src/opts/SkOpts_avx.cpp -FILE: ../../../third_party/skia/src/opts/SkOpts_crc32.cpp -FILE: ../../../third_party/skia/src/opts/SkOpts_sse42.cpp -FILE: ../../../third_party/skia/src/opts/SkSwizzler_opts.h -FILE: ../../../third_party/skia/src/pdf/SkBitmapKey.h -FILE: ../../../third_party/skia/src/pdf/SkPDFConvertType1FontStream.h -FILE: ../../../third_party/skia/src/pdf/SkPDFDocument.h -FILE: ../../../third_party/skia/src/pdf/SkPDFMakeCIDGlyphWidthsArray.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFMakeCIDGlyphWidthsArray.h -FILE: ../../../third_party/skia/src/pdf/SkPDFMakeToUnicodeCmap.h -FILE: ../../../third_party/skia/src/pipe/SkPipeCanvas.cpp -FILE: ../../../third_party/skia/src/pipe/SkPipeCanvas.h -FILE: ../../../third_party/skia/src/pipe/SkPipeFormat.h -FILE: ../../../third_party/skia/src/pipe/SkPipeReader.cpp -FILE: ../../../third_party/skia/src/pipe/SkRefSet.h -FILE: ../../../third_party/skia/src/ports/SkFontConfigInterface.cpp -FILE: ../../../third_party/skia/src/ports/SkFontMgr_custom_empty_factory.cpp -FILE: ../../../third_party/skia/src/ports/SkImageGeneratorCG.cpp -FILE: ../../../third_party/skia/src/ports/SkImageGeneratorCG.h -FILE: ../../../third_party/skia/src/ports/SkImageGeneratorWIC.cpp -FILE: ../../../third_party/skia/src/ports/SkImageGeneratorWIC.h -FILE: ../../../third_party/skia/src/shaders/SkColorFilterShader.h -FILE: ../../../third_party/skia/src/shaders/SkColorShader.cpp -FILE: ../../../third_party/skia/src/shaders/gradients/Sk4fGradientBase.cpp -FILE: ../../../third_party/skia/src/shaders/gradients/Sk4fGradientBase.h -FILE: ../../../third_party/skia/src/shaders/gradients/Sk4fGradientPriv.h -FILE: ../../../third_party/skia/src/shaders/gradients/Sk4fLinearGradient.cpp -FILE: ../../../third_party/skia/src/shaders/gradients/Sk4fLinearGradient.h -FILE: ../../../third_party/skia/src/sksl/SkSLCFGGenerator.cpp -FILE: ../../../third_party/skia/src/sksl/SkSLCFGGenerator.h -FILE: ../../../third_party/skia/src/sksl/SkSLCPPCodeGenerator.cpp -FILE: ../../../third_party/skia/src/sksl/SkSLCodeGenerator.h -FILE: ../../../third_party/skia/src/sksl/SkSLCompiler.cpp -FILE: ../../../third_party/skia/src/sksl/SkSLCompiler.h -FILE: ../../../third_party/skia/src/sksl/SkSLContext.h -FILE: ../../../third_party/skia/src/sksl/SkSLErrorReporter.h -FILE: ../../../third_party/skia/src/sksl/SkSLGLSLCodeGenerator.cpp -FILE: ../../../third_party/skia/src/sksl/SkSLGLSLCodeGenerator.h -FILE: ../../../third_party/skia/src/sksl/SkSLHCodeGenerator.cpp -FILE: ../../../third_party/skia/src/sksl/SkSLIRGenerator.cpp -FILE: ../../../third_party/skia/src/sksl/SkSLIRGenerator.h -FILE: ../../../third_party/skia/src/sksl/SkSLMain.cpp -FILE: ../../../third_party/skia/src/sksl/SkSLMemoryLayout.h -FILE: ../../../third_party/skia/src/sksl/SkSLMetalCodeGenerator.cpp -FILE: ../../../third_party/skia/src/sksl/SkSLMetalCodeGenerator.h -FILE: ../../../third_party/skia/src/sksl/SkSLParser.cpp -FILE: ../../../third_party/skia/src/sksl/SkSLParser.h -FILE: ../../../third_party/skia/src/sksl/SkSLPosition.h -FILE: ../../../third_party/skia/src/sksl/SkSLSPIRVCodeGenerator.cpp -FILE: ../../../third_party/skia/src/sksl/SkSLSPIRVCodeGenerator.h -FILE: ../../../third_party/skia/src/sksl/SkSLUtil.cpp -FILE: ../../../third_party/skia/src/sksl/SkSLUtil.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTBinaryExpression.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTBlock.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTBoolLiteral.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTBreakStatement.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTCallSuffix.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTContinueStatement.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTDeclaration.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTDiscardStatement.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTDoStatement.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTExpression.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTExpressionStatement.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTExtension.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTFieldSuffix.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTFloatLiteral.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTForStatement.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTFunction.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTIdentifier.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTIfStatement.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTIndexSuffix.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTIntLiteral.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTInterfaceBlock.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTModifiersDeclaration.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTNode.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTParameter.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTPositionNode.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTPrecision.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTPrefixExpression.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTReturnStatement.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTSection.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTStatement.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTSuffix.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTSuffixExpression.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTTernaryExpression.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTType.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTVarDeclaration.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTVarDeclarationStatement.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTWhileStatement.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLBinaryExpression.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLBlock.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLBoolLiteral.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLBreakStatement.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLConstructor.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLContinueStatement.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLDiscardStatement.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLDoStatement.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLExpression.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLExpressionStatement.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLExtension.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLField.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLFieldAccess.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLFloatLiteral.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLForStatement.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLFunctionCall.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLFunctionDeclaration.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLFunctionDefinition.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLFunctionReference.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLIRNode.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLIfStatement.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLIndexExpression.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLIntLiteral.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLInterfaceBlock.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLLayout.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLModifiers.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLModifiersDeclaration.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLNop.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLPostfixExpression.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLPrefixExpression.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLProgram.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLProgramElement.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLReturnStatement.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLSection.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLSetting.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLStatement.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLSwizzle.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLSymbol.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLSymbolTable.cpp -FILE: ../../../third_party/skia/src/sksl/ir/SkSLSymbolTable.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLTernaryExpression.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLType.cpp -FILE: ../../../third_party/skia/src/sksl/ir/SkSLType.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLTypeReference.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLUnresolvedFunction.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLVarDeclarations.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLVarDeclarationsStatement.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLVariable.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLVariableReference.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLWhileStatement.h -FILE: ../../../third_party/skia/src/utils/SkMultiPictureDocument.cpp -FILE: ../../../third_party/skia/src/utils/SkMultiPictureDocument.h -FILE: ../../../third_party/skia/src/utils/SkMultiPictureDocumentPriv.h -FILE: ../../../third_party/skia/src/utils/SkOSPath.h -FILE: ../../../third_party/skia/third_party/libsdl/SDL_config_premake.h ----------------------------------------------------------------------------------------------------- -Copyright 2016 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: libwebp -ORIGIN: ../../../third_party/libwebp/COPYING -TYPE: LicenseType.bsd -FILE: ../../../third_party/libwebp/.mailmap -FILE: ../../../third_party/libwebp/Makefile.vc -FILE: ../../../third_party/libwebp/cmake/config.h.in -FILE: ../../../third_party/libwebp/doc/TODO -FILE: ../../../third_party/libwebp/doc/template.html -FILE: ../../../third_party/libwebp/extras/webp_quality.c -FILE: ../../../third_party/libwebp/gradle.properties -FILE: ../../../third_party/libwebp/makefile.unix -FILE: ../../../third_party/libwebp/src/demux/libwebpdemux.pc.in -FILE: ../../../third_party/libwebp/src/demux/libwebpdemux.rc -FILE: ../../../third_party/libwebp/src/libwebp.pc.in -FILE: ../../../third_party/libwebp/src/libwebp.rc -FILE: ../../../third_party/libwebp/src/libwebpdecoder.pc.in -FILE: ../../../third_party/libwebp/src/libwebpdecoder.rc -FILE: ../../../third_party/libwebp/src/mux/libwebpmux.pc.in -FILE: ../../../third_party/libwebp/src/mux/libwebpmux.rc ----------------------------------------------------------------------------------------------------- -Copyright (c) 2010, Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: libwebp -ORIGIN: ../../../third_party/libwebp/extras/extras.c + ../../../third_party/libwebp/COPYING -TYPE: LicenseType.bsd -FILE: ../../../third_party/libwebp/extras/extras.c -FILE: ../../../third_party/libwebp/extras/extras.h -FILE: ../../../third_party/libwebp/src/dec/common_dec.h -FILE: ../../../third_party/libwebp/src/demux/anim_decode.c -FILE: ../../../third_party/libwebp/src/dsp/alpha_processing_sse41.c -FILE: ../../../third_party/libwebp/src/dsp/cost_sse2.c -FILE: ../../../third_party/libwebp/src/dsp/dec_sse41.c -FILE: ../../../third_party/libwebp/src/dsp/enc_sse41.c -FILE: ../../../third_party/libwebp/src/dsp/filters_sse2.c -FILE: ../../../third_party/libwebp/src/dsp/lossless_enc.c -FILE: ../../../third_party/libwebp/src/dsp/lossless_enc_mips32.c -FILE: ../../../third_party/libwebp/src/dsp/lossless_enc_mips_dsp_r2.c -FILE: ../../../third_party/libwebp/src/dsp/lossless_enc_neon.c -FILE: ../../../third_party/libwebp/src/dsp/lossless_enc_sse2.c -FILE: ../../../third_party/libwebp/src/dsp/lossless_enc_sse41.c -FILE: ../../../third_party/libwebp/src/dsp/rescaler_neon.c -FILE: ../../../third_party/libwebp/src/dsp/rescaler_sse2.c -FILE: ../../../third_party/libwebp/src/enc/delta_palettization_enc.c -FILE: ../../../third_party/libwebp/src/enc/delta_palettization_enc.h +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/jsimd.h + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/jsimd.h ---------------------------------------------------------------------------------------------------- -Copyright 2015 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2011, 2014, D. R. Commander. +Copyright (C) 2015, Matthieu Darbois. - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Based on the x86 SIMD extension for IJG JPEG library, +Copyright (C) 1999-2006, MIYASAKA Masaru. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. ==================================================================================================== ==================================================================================================== -LIBRARY: libwebp -ORIGIN: ../../../third_party/libwebp/extras/get_disto.c + ../../../third_party/libwebp/COPYING -TYPE: LicenseType.bsd -FILE: ../../../third_party/libwebp/extras/get_disto.c -FILE: ../../../third_party/libwebp/extras/quality_estimate.c -FILE: ../../../third_party/libwebp/imageio/image_dec.c -FILE: ../../../third_party/libwebp/imageio/image_dec.h -FILE: ../../../third_party/libwebp/imageio/image_enc.c -FILE: ../../../third_party/libwebp/imageio/image_enc.h -FILE: ../../../third_party/libwebp/imageio/imageio_util.c -FILE: ../../../third_party/libwebp/imageio/imageio_util.h -FILE: ../../../third_party/libwebp/src/dsp/common_sse2.h -FILE: ../../../third_party/libwebp/src/dsp/dec_msa.c -FILE: ../../../third_party/libwebp/src/dsp/enc_msa.c -FILE: ../../../third_party/libwebp/src/dsp/filters_msa.c -FILE: ../../../third_party/libwebp/src/dsp/lossless_enc_msa.c -FILE: ../../../third_party/libwebp/src/dsp/lossless_msa.c -FILE: ../../../third_party/libwebp/src/dsp/msa_macro.h -FILE: ../../../third_party/libwebp/src/dsp/rescaler_msa.c -FILE: ../../../third_party/libwebp/src/dsp/upsampling_msa.c -FILE: ../../../third_party/libwebp/src/enc/predictor_enc.c -FILE: ../../../third_party/libwebp/src/mux/animi.h +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/jsimd_none.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/jsimd_none.c ---------------------------------------------------------------------------------------------------- -Copyright 2016 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2009-2011, 2014, D. R. Commander. +Copyright (C) 2015, Matthieu Darbois. - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Based on the x86 SIMD extension for IJG JPEG library, +Copyright (C) 1999-2006, MIYASAKA Masaru. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. ==================================================================================================== ==================================================================================================== -LIBRARY: libwebp -ORIGIN: ../../../third_party/libwebp/imageio/jpegdec.c + ../../../third_party/libwebp/COPYING -TYPE: LicenseType.bsd -FILE: ../../../third_party/libwebp/imageio/jpegdec.c -FILE: ../../../third_party/libwebp/imageio/jpegdec.h -FILE: ../../../third_party/libwebp/imageio/metadata.c -FILE: ../../../third_party/libwebp/imageio/metadata.h -FILE: ../../../third_party/libwebp/imageio/pngdec.c -FILE: ../../../third_party/libwebp/imageio/pngdec.h -FILE: ../../../third_party/libwebp/imageio/tiffdec.c -FILE: ../../../third_party/libwebp/imageio/tiffdec.h -FILE: ../../../third_party/libwebp/src/dec/vp8l_dec.c -FILE: ../../../third_party/libwebp/src/dec/vp8li_dec.h -FILE: ../../../third_party/libwebp/src/demux/demux.c -FILE: ../../../third_party/libwebp/src/dsp/dec_neon.c -FILE: ../../../third_party/libwebp/src/dsp/enc_neon.c -FILE: ../../../third_party/libwebp/src/dsp/lossless.c -FILE: ../../../third_party/libwebp/src/dsp/lossless.h -FILE: ../../../third_party/libwebp/src/dsp/lossless_common.h -FILE: ../../../third_party/libwebp/src/enc/backward_references_enc.c -FILE: ../../../third_party/libwebp/src/enc/backward_references_enc.h -FILE: ../../../third_party/libwebp/src/enc/histogram_enc.c -FILE: ../../../third_party/libwebp/src/enc/histogram_enc.h -FILE: ../../../third_party/libwebp/src/enc/vp8l_enc.c -FILE: ../../../third_party/libwebp/src/enc/vp8li_enc.h -FILE: ../../../third_party/libwebp/src/utils/color_cache_utils.c -FILE: ../../../third_party/libwebp/src/utils/color_cache_utils.h -FILE: ../../../third_party/libwebp/src/utils/huffman_utils.c -FILE: ../../../third_party/libwebp/src/utils/huffman_utils.h -FILE: ../../../third_party/libwebp/src/utils/rescaler_utils.c -FILE: ../../../third_party/libwebp/src/utils/rescaler_utils.h -FILE: ../../../third_party/libwebp/src/utils/utils.c -FILE: ../../../third_party/libwebp/src/utils/utils.h -FILE: ../../../third_party/libwebp/src/webp/demux.h -FILE: ../../../third_party/libwebp/src/webp/format_constants.h -FILE: ../../../third_party/libwebp/src/webp/mux_types.h +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/jsimddct.h + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/jsimddct.h ---------------------------------------------------------------------------------------------------- -Copyright 2012 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Copyright 2009 Pierre Ossman for Cendio AB - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Based on the x86 SIMD extension for IJG JPEG library, +Copyright (C) 1999-2006, MIYASAKA Masaru. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. ==================================================================================================== ==================================================================================================== -LIBRARY: libwebp -ORIGIN: ../../../third_party/libwebp/imageio/webpdec.c + ../../../third_party/libwebp/COPYING -TYPE: LicenseType.bsd -FILE: ../../../third_party/libwebp/imageio/webpdec.c -FILE: ../../../third_party/libwebp/imageio/webpdec.h -FILE: ../../../third_party/libwebp/src/dsp/alpha_processing_mips_dsp_r2.c -FILE: ../../../third_party/libwebp/src/dsp/alpha_processing_sse2.c -FILE: ../../../third_party/libwebp/src/dsp/argb.c -FILE: ../../../third_party/libwebp/src/dsp/argb_mips_dsp_r2.c -FILE: ../../../third_party/libwebp/src/dsp/argb_sse2.c -FILE: ../../../third_party/libwebp/src/dsp/cost.c -FILE: ../../../third_party/libwebp/src/dsp/cost_mips32.c -FILE: ../../../third_party/libwebp/src/dsp/cost_mips_dsp_r2.c -FILE: ../../../third_party/libwebp/src/dsp/dec_clip_tables.c -FILE: ../../../third_party/libwebp/src/dsp/dec_mips32.c -FILE: ../../../third_party/libwebp/src/dsp/dec_mips_dsp_r2.c -FILE: ../../../third_party/libwebp/src/dsp/enc_avx2.c -FILE: ../../../third_party/libwebp/src/dsp/enc_mips32.c -FILE: ../../../third_party/libwebp/src/dsp/enc_mips_dsp_r2.c -FILE: ../../../third_party/libwebp/src/dsp/filters_mips_dsp_r2.c -FILE: ../../../third_party/libwebp/src/dsp/lossless_mips_dsp_r2.c -FILE: ../../../third_party/libwebp/src/dsp/lossless_neon.c -FILE: ../../../third_party/libwebp/src/dsp/lossless_sse2.c -FILE: ../../../third_party/libwebp/src/dsp/mips_macro.h -FILE: ../../../third_party/libwebp/src/dsp/neon.h -FILE: ../../../third_party/libwebp/src/dsp/rescaler.c -FILE: ../../../third_party/libwebp/src/dsp/rescaler_mips32.c -FILE: ../../../third_party/libwebp/src/dsp/rescaler_mips_dsp_r2.c -FILE: ../../../third_party/libwebp/src/dsp/upsampling_mips_dsp_r2.c -FILE: ../../../third_party/libwebp/src/dsp/yuv_mips32.c -FILE: ../../../third_party/libwebp/src/dsp/yuv_mips_dsp_r2.c -FILE: ../../../third_party/libwebp/src/dsp/yuv_sse2.c -FILE: ../../../third_party/libwebp/src/enc/near_lossless_enc.c -FILE: ../../../third_party/libwebp/src/enc/picture_csp_enc.c -FILE: ../../../third_party/libwebp/src/enc/picture_psnr_enc.c -FILE: ../../../third_party/libwebp/src/enc/picture_rescale_enc.c -FILE: ../../../third_party/libwebp/src/enc/picture_tools_enc.c -FILE: ../../../third_party/libwebp/src/mux/anim_encode.c -FILE: ../../../third_party/libwebp/src/utils/bit_reader_inl_utils.h -FILE: ../../../third_party/libwebp/src/utils/endian_inl_utils.h +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolext-altivec.c +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jccolext-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jcgryext-altivec.c ---------------------------------------------------------------------------------------------------- -Copyright 2014 Google Inc. All Rights Reserved. +Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. +Copyright (C) 2014, Jay Foad. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolext-mmx.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jccolext-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jcolsamp.inc +FILE: ../../../third_party/libjpeg-turbo/simd/jcsample-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jcsample-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdcolext-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdct.inc +FILE: ../../../third_party/libjpeg-turbo/simd/jdmrgext-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdsample-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdsample-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctflt-3dn.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctflt-sse.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctfst-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctfst-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctint-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctint-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctflt-3dn.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctflt-sse.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctflt-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctfst-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctfst-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctint-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctint-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctred-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctred-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jquant-3dn.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jquant-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jquant-sse.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jquantf-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jquanti-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcpu.asm +---------------------------------------------------------------------------------------------------- +Copyright 2009 Pierre Ossman for Cendio AB -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Based on the x86 SIMD extension for IJG JPEG library +Copyright (C) 1999-2006, MIYASAKA Masaru. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. ==================================================================================================== ==================================================================================================== -LIBRARY: libwebp -ORIGIN: ../../../third_party/libwebp/imageio/wicdec.c + ../../../third_party/libwebp/COPYING -TYPE: LicenseType.bsd -FILE: ../../../third_party/libwebp/imageio/wicdec.c -FILE: ../../../third_party/libwebp/imageio/wicdec.h -FILE: ../../../third_party/libwebp/src/dec/alphai_dec.h -FILE: ../../../third_party/libwebp/src/dsp/alpha_processing.c -FILE: ../../../third_party/libwebp/src/utils/quant_levels_dec_utils.c -FILE: ../../../third_party/libwebp/src/utils/quant_levels_dec_utils.h -FILE: ../../../third_party/libwebp/src/utils/random_utils.c -FILE: ../../../third_party/libwebp/src/utils/random_utils.h +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolext-sse2-64.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jccolext-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jccolor-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jccolor-sse2.asm ---------------------------------------------------------------------------------------------------- -Copyright 2013 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Copyright (C) 2009, D. R. Commander. - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Based on the x86 SIMD extension for IJG JPEG library +Copyright (C) 1999-2006, MIYASAKA Masaru. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. ==================================================================================================== ==================================================================================================== -LIBRARY: libwebp -ORIGIN: ../../../third_party/libwebp/src/dec/alpha_dec.c + ../../../third_party/libwebp/COPYING -TYPE: LicenseType.bsd -FILE: ../../../third_party/libwebp/src/dec/alpha_dec.c -FILE: ../../../third_party/libwebp/src/dec/buffer_dec.c -FILE: ../../../third_party/libwebp/src/dec/idec_dec.c -FILE: ../../../third_party/libwebp/src/dec/io_dec.c -FILE: ../../../third_party/libwebp/src/dec/webpi_dec.h -FILE: ../../../third_party/libwebp/src/dsp/cpu.c -FILE: ../../../third_party/libwebp/src/dsp/dec_sse2.c -FILE: ../../../third_party/libwebp/src/dsp/dsp.h -FILE: ../../../third_party/libwebp/src/dsp/enc.c -FILE: ../../../third_party/libwebp/src/dsp/enc_sse2.c -FILE: ../../../third_party/libwebp/src/dsp/filters.c -FILE: ../../../third_party/libwebp/src/dsp/upsampling.c -FILE: ../../../third_party/libwebp/src/dsp/upsampling_neon.c -FILE: ../../../third_party/libwebp/src/dsp/upsampling_sse2.c -FILE: ../../../third_party/libwebp/src/enc/alpha_enc.c -FILE: ../../../third_party/libwebp/src/enc/analysis_enc.c -FILE: ../../../third_party/libwebp/src/enc/config_enc.c -FILE: ../../../third_party/libwebp/src/enc/cost_enc.c -FILE: ../../../third_party/libwebp/src/enc/cost_enc.h -FILE: ../../../third_party/libwebp/src/enc/filter_enc.c -FILE: ../../../third_party/libwebp/src/enc/frame_enc.c -FILE: ../../../third_party/libwebp/src/enc/iterator_enc.c -FILE: ../../../third_party/libwebp/src/enc/picture_enc.c -FILE: ../../../third_party/libwebp/src/enc/quant_enc.c -FILE: ../../../third_party/libwebp/src/enc/syntax_enc.c -FILE: ../../../third_party/libwebp/src/enc/token_enc.c -FILE: ../../../third_party/libwebp/src/enc/tree_enc.c -FILE: ../../../third_party/libwebp/src/enc/vp8i_enc.h -FILE: ../../../third_party/libwebp/src/enc/webp_enc.c -FILE: ../../../third_party/libwebp/src/mux/muxedit.c -FILE: ../../../third_party/libwebp/src/mux/muxi.h -FILE: ../../../third_party/libwebp/src/mux/muxinternal.c -FILE: ../../../third_party/libwebp/src/mux/muxread.c -FILE: ../../../third_party/libwebp/src/utils/bit_writer_utils.c -FILE: ../../../third_party/libwebp/src/utils/bit_writer_utils.h -FILE: ../../../third_party/libwebp/src/utils/filters_utils.c -FILE: ../../../third_party/libwebp/src/utils/filters_utils.h -FILE: ../../../third_party/libwebp/src/utils/huffman_encode_utils.c -FILE: ../../../third_party/libwebp/src/utils/huffman_encode_utils.h -FILE: ../../../third_party/libwebp/src/utils/quant_levels_utils.c -FILE: ../../../third_party/libwebp/src/utils/quant_levels_utils.h -FILE: ../../../third_party/libwebp/src/utils/thread_utils.c -FILE: ../../../third_party/libwebp/src/utils/thread_utils.h -FILE: ../../../third_party/libwebp/src/webp/encode.h -FILE: ../../../third_party/libwebp/src/webp/mux.h +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolext-sse2.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jccolext-sse2.asm ---------------------------------------------------------------------------------------------------- -Copyright 2011 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Copyright (C) 1999-2006, MIYASAKA Masaru. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. ==================================================================================================== ==================================================================================================== -LIBRARY: libwebp -ORIGIN: ../../../third_party/libwebp/src/dec/frame_dec.c + ../../../third_party/libwebp/COPYING -TYPE: LicenseType.bsd -FILE: ../../../third_party/libwebp/src/dec/frame_dec.c -FILE: ../../../third_party/libwebp/src/dec/quant_dec.c -FILE: ../../../third_party/libwebp/src/dec/tree_dec.c -FILE: ../../../third_party/libwebp/src/dec/vp8_dec.c -FILE: ../../../third_party/libwebp/src/dec/vp8_dec.h -FILE: ../../../third_party/libwebp/src/dec/vp8i_dec.h -FILE: ../../../third_party/libwebp/src/dec/webp_dec.c -FILE: ../../../third_party/libwebp/src/dsp/dec.c -FILE: ../../../third_party/libwebp/src/dsp/yuv.c -FILE: ../../../third_party/libwebp/src/dsp/yuv.h -FILE: ../../../third_party/libwebp/src/utils/bit_reader_utils.c -FILE: ../../../third_party/libwebp/src/utils/bit_reader_utils.h -FILE: ../../../third_party/libwebp/src/webp/decode.h -FILE: ../../../third_party/libwebp/src/webp/types.h +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolor-altivec.c +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jccolor-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jcgray-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctfst-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctint-altivec.c ---------------------------------------------------------------------------------------------------- -Copyright 2010 Google Inc. All Rights Reserved. +Copyright (C) 2014, D. R. Commander. All Rights Reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jccolor-mmx.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jccolor-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jcsample-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdcolor-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdcolor-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdcolor-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdmerge-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdmerge-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdmerge-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdsample-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctflt-sse-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctfst-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jfdctint-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctflt-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctfst-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctint-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jidctred-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jquantf-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jquanti-sse2-64.asm +---------------------------------------------------------------------------------------------------- +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2009, D. R. Commander. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Based on the x86 SIMD extension for IJG JPEG library +Copyright (C) 1999-2006, MIYASAKA Masaru. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. ==================================================================================================== ==================================================================================================== -LIBRARY: libwebp -ORIGIN: ../../../third_party/libwebp/src/dsp/alpha_processing_neon.c + ../../../third_party/libwebp/COPYING -TYPE: LicenseType.bsd -FILE: ../../../third_party/libwebp/src/dsp/alpha_processing_neon.c -FILE: ../../../third_party/libwebp/src/dsp/filters_neon.c +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jcgray-mmx.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jcgray-mmx.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jcgryext-mmx.asm ---------------------------------------------------------------------------------------------------- -Copyright 2017 Google Inc. All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2011, D. R. Commander. - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. +Based on the x86 SIMD extension for IJG JPEG library +Copyright (C) 1999-2006, MIYASAKA Masaru. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. - * Neither the name of Google nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -LIBRARY: pkg -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/instrumentation/file_instrumentation.dart + ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/instrumentation/file_instrumentation.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/plugin/command_line.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/plugin/options.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/plugin/resolver_provider.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/plugin/task.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/source/analysis_options_provider.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/source/embedder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/source/error_processor.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/source/path_filter.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/source/sdk_ext.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/context/cache.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/context/context.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/context/source.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/type_system.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/visitors.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/plugin/command_line_plugin.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/plugin/engine_plugin.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/plugin/options_plugin.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/plugin/plugin_configuration.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/services/lint.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/format.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/format.fbs -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/idl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/public_namespace_computer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/resynthesize.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/summarize_elements.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/summary_sdk.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/task/dart.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/task/dart_work_manager.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/task/driver.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/task/general.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/task/html.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/task/html_work_manager.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/task/incremental_element_builder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/task/inputs.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/task/manager.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/task/model.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/task/options.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/task/options_work_manager.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/task/strong/checker.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/task/strong_mode.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/util/absolute_path.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/util/asserts.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/util/glob.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/util/lru_map.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/util/yaml.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/task/dart.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/task/general.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/task/html.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/task/model.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/tool/summary/check_test.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/tool/summary/generate.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/tool/summary/idl_model.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/tool/task_dependency_graph/check_test.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/tool/task_dependency_graph/generate.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/tool/task_dependency_graph/tasks.dot -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/async_memoizer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/cancelable_operation.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/delegate/event_sink.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/delegate/future.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/delegate/sink.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/delegate/stream_consumer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/delegate/stream_sink.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/delegate/stream_subscription.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/future_group.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/lazy_stream.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/restartable_timer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/result/future.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/stream_completer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/stream_group.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/stream_queue.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/stream_splitter.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/subscription_stream.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charcode/.status -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/cli_util/.status -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/cli_util/lib/cli_util.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/comparators.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/convert/lib/convert.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/convert/lib/src/hex.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/convert/lib/src/hex/decoder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/convert/lib/src/hex/encoder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/convert/lib/src/percent.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/convert/lib/src/percent/decoder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/convert/lib/src/percent/encoder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/convert/lib/src/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/crypto/.status -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/crypto/example/hash.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/crypto/lib/src/digest.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/crypto/lib/src/digest_sink.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/crypto/lib/src/hash.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/crypto/lib/src/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/bin/format.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/example/format.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/fast_hash.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/line_splitting/line_splitter.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/line_splitting/rule_set.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/line_splitting/solve_state.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/line_splitting/solve_state_queue.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/nesting_builder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/nesting_level.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/rule/argument.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/rule/combinator.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/rule/metadata.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/rule/rule.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/rule/type_argument.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/tool/grind.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/initialize/lib/build/initializer_plugin.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/initialize/lib/build/loader_replacer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/initialize/lib/initialize.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/initialize/lib/src/init_method.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/initialize/lib/src/initialize_tracker.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/initialize/lib/src/initializer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/initialize/lib/src/mirror_loader.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/initialize/lib/src/static_loader.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/initialize/lib/transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/initialize/test_package/lib/bar.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/initialize/test_package/lib/foo.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/isolate/.status -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/isolate/example/http_server.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/isolate/example/runner_pool.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/isolate/lib/isolate.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/isolate/lib/isolate_runner.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/isolate/lib/load_balancer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/isolate/lib/ports.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/isolate/lib/registry.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/isolate/lib/runner.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/isolate/lib/src/errors.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/isolate/lib/src/lists.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/isolate/lib/src/raw_receive_port_multiplexer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/package_config/lib/discovery.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/package_config/lib/discovery_analysis.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/package_config/lib/packages.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/package_config/lib/packages_file.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/package_config/lib/src/packages_impl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/package_config/lib/src/packages_io_impl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/package_config/lib/src/util.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/plugin/lib/manager.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/plugin/lib/plugin.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/plugin/lib/src/plugin_impl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_span/lib/src/location_mixin.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/unparsed_frame.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/string_scanner/lib/src/eager_span_scanner.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/expected_function.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/group_context.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/example/example.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/example/example.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/utf/.status -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/utf/lib/src/shared.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/benchmark/path_set.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/lib/src/file_watcher.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/lib/src/file_watcher/native.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/lib/src/file_watcher/polling.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/benchmark/benchmark.dart -FILE: ../../../third_party/pkg/when/lib/when.dart +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jcgray-sse2-64.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jcgray-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jcgray-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jcgryext-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jcgryext-sse2.asm ---------------------------------------------------------------------------------------------------- -Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. +Copyright (C) 2011, D. R. Commander. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Based on the x86 SIMD extension for IJG JPEG library +Copyright (C) 1999-2006, MIYASAKA Masaru. - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -LIBRARY: skia -LIBRARY: vulkan -ORIGIN: ../../../flutter/third_party/txt/LICENSE -TYPE: LicenseType.apache -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/async.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/cache.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/check.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/collection.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/core.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/io.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/iterables.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/mirrors.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/pattern.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/collect.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/concat.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/countdown_timer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/enumerate.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/future_group.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/future_stream.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/iteration.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/metronome.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/stream_buffer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/async/stream_router.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/cache/cache.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/cache/map_cache.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/bimap.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/delegates/iterable.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/delegates/list.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/delegates/map.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/delegates/queue.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/delegates/set.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/lru_map.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/multimap.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/collection/treeset.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/core/hash.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/core/optional.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/concat.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/count.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/cycle.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/enumerate.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/generating_iterable.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/infinite_iterable.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/merge.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/min_max.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/partition.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/range.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/iterables/zip.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/pattern/glob.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/time/clock.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/src/time/duration_unit_constants.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/strings.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/quiver/lib/time.dart -FILE: ../../../third_party/skia/src/images/SkWebpEncoder.cpp -FILE: ../../../third_party/skia/third_party/vulkan/vulkan/vk_platform.h -FILE: ../../../third_party/skia/third_party/vulkan/vulkan/vulkan.h -FILE: ../../../third_party/vulkan/src/vulkan/vk_platform.h -FILE: ../../../third_party/vulkan/src/vulkan/vulkan.h +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jchuff-sse2-64.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jchuff-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jchuff-sse2.asm ---------------------------------------------------------------------------------------------------- -Apache License -Version 2.0, January 2004 -http://www.apache.org/licenses +Copyright (C) 2009-2011, 2014-2016, D. R. Commander. +Copyright (C) 2015, Matthieu Darbois. -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION +Based on the x86 SIMD extension for IJG JPEG library +Copyright (C) 1999-2006, MIYASAKA Masaru. -1. Definitions. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jcsample-altivec.c +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jcsample-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jdcolext-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jdcolor-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jdmerge-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jdmrgext-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jdsample-altivec.c +---------------------------------------------------------------------------------------------------- +Copyright (C) 2015, D. R. Commander. All Rights Reserved. - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jdcolext-sse2-64.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jdcolext-sse2-64.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdmrgext-sse2-64.asm +---------------------------------------------------------------------------------------------------- +Copyright 2009, 2012 Pierre Ossman for Cendio AB +Copyright (C) 2009, 2012, D. R. Commander. - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). +Based on the x86 SIMD extension for IJG JPEG library +Copyright (C) 1999-2006, MIYASAKA Masaru. - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jdcolext-sse2.asm + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jdcolext-sse2.asm +FILE: ../../../third_party/libjpeg-turbo/simd/jdmrgext-sse2.asm +---------------------------------------------------------------------------------------------------- +Copyright 2009, 2012 Pierre Ossman for Cendio AB +Copyright (C) 2012, D. R. Commander. -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. +Based on the x86 SIMD extension for IJG JPEG library +Copyright (C) 1999-2006, MIYASAKA Masaru. -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jidctfst-altivec.c +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jidctfst-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jidctint-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jquanti-altivec.c +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_altivec.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2014-2015, D. R. Commander. All Rights Reserved. - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd.h + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd.h +---------------------------------------------------------------------------------------------------- +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2011, 2014-2016, D. R. Commander. +Copyright (C) 2013-2014, MIPS Technologies, Inc., California. +Copyright (C) 2014, Linaro Limited. +Copyright (C) 2015-2016, Matthieu Darbois. -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. +Based on the x86 SIMD extension for IJG JPEG library, +Copyright (C) 1999-2006, MIYASAKA Masaru. -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: -END OF TERMS AND CONDITIONS +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== -APPENDIX: How to apply the Apache License to your work. +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_arm.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_arm.c +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_arm64.c +---------------------------------------------------------------------------------------------------- +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2009-2011, 2013-2014, 2016, D. R. Commander. +Copyright (C) 2015-2016, Matthieu Darbois. - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. +Based on the x86 SIMD extension for IJG JPEG library, +Copyright (C) 1999-2006, MIYASAKA Masaru. -Copyright [yyyy] [name of copyright owner] +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: - http://www.apache.org/licenses/LICENSE-2.0 +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. ==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_arm64_neon.S +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_arm64_neon.S +---------------------------------------------------------------------------------------------------- +Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). +All Rights Reserved. +Author: Siarhei Siamashka +Copyright (C) 2013-2014, Linaro Limited. All Rights Reserved. +Author: Ragesh Radhakrishnan +Copyright (C) 2014-2016, D. R. Commander. All Rights Reserved. +Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. +Copyright (C) 2016, Siarhei Siamashka. All Rights Reserved. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/doc/support/viz.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/doc/support/web_app.dart.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/doc/tasks.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/package_bundle_reader.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/tool/summary/build_sdk_summaries.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/args/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/args/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/example/aggregate_transformer/lib/recipes-grammas/banana-pudding-recipe.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/example/aggregate_transformer/lib/recipes-grammas/winter-squash-pie-recipe.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/example/markdown_converter/lib/images/bison.jpg -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/example/markdown_converter/lib/index.markdown -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/example/call_parser.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/example/call_parser.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/af.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/am.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ar.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/az.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/be.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/bg.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/bn.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/br.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/bs.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ca.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/chr.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/cs.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/cy.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/da.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/de.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/de_AT.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/de_CH.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/el.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_AU.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_CA.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_GB.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_IE.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_IN.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_ISO.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_SG.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_US.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_ZA.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/es.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/es_419.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/es_ES.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/es_MX.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/es_US.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/et.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/eu.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/fa.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/fi.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/fil.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/fr.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/fr_CA.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ga.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/gl.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/gsw.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/gu.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/haw.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/he.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/hi.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/hr.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/hu.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/hy.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/id.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/in.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/is.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/it.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/iw.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ja.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ka.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/kk.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/km.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/kn.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ko.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ky.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ln.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/lo.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/lt.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/lv.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/mk.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ml.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/mn.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/mo.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/mr.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ms.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/mt.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/my.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/nb.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ne.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/nl.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/no.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/no_NO.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/or.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/pa.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/pl.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/pt.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/pt_BR.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/pt_PT.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ro.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ru.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sh.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/si.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sk.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sl.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sq.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sr.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sr_Latn.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sv.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sw.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ta.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/te.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/th.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/tl.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/tr.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/uk.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ur.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/uz.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/vi.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/zh.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/zh_CN.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/zh_HK.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/zh_TW.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/zu.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/af.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/am.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ar.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/az.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/be.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/bg.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/bn.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/br.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/bs.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ca.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/chr.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/cs.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/cy.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/da.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/de.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/de_AT.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/de_CH.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/el.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_AU.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_CA.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_GB.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_IE.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_IN.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_ISO.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_SG.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_US.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_ZA.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/es.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/es_419.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/es_ES.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/es_MX.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/es_US.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/et.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/eu.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/fa.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/fi.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/fil.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/fr.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/fr_CA.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ga.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/gl.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/gsw.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/gu.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/haw.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/he.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/hi.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/hr.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/hu.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/hy.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/id.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/in.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/is.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/it.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/iw.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ja.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ka.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/kk.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/km.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/kn.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ko.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ky.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ln.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/lo.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/lt.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/lv.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/mk.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ml.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/mn.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/mr.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ms.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/mt.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/my.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/nb.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ne.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/nl.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/no.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/no_NO.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/or.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/pa.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/pl.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/pt.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/pt_BR.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/pt_PT.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ro.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ru.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/si.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/sk.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/sl.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/sq.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/sr.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/sr_Latn.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/sv.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/sw.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ta.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/te.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/th.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/tl.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/tr.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/uk.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ur.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/uz.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/vi.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/zh.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/zh_CN.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/zh_HK.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/zh_TW.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/zu.json + +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_arm_neon.S +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_arm_neon.S ---------------------------------------------------------------------------------------------------- -Copyright 2013, the Dart project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Copyright (C) 2009-2011, Nokia Corporation and/or its subsidiary(-ies). +All Rights Reserved. +Author: Siarhei Siamashka +Copyright (C) 2014, Siarhei Siamashka. All Rights Reserved. +Copyright (C) 2014, Linaro Limited. All Rights Reserved. +Copyright (C) 2015, D. R. Commander. All Rights Reserved. +Copyright (C) 2015-2016, Matthieu Darbois. All Rights Reserved. - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/benchmark/errors_in_all_libraries.dart + ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/benchmark/errors_in_all_libraries.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/dart/ast/ast_factory.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/dart/ast/resolution_map.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/dart/ast/standard_ast_factory.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/dart/ast/standard_resolution_map.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/dart/ast/syntactic_entity.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/plugin/embedded_resolver_provider.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/source/config.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/source/custom_resolver.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/context/builder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/ast/ast_factory.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/ast/resolution_map.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/resolver/inheritance_manager.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/sdk/sdk.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/error/pending_error.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/bazel.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/package.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/source/source_resource.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/api_signature.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/bazel_summary.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/flat_buffers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/link.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/name_filter.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/prelink.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/pub_summary.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/summarize_ast.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/summarize_const_expr.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/summary_file_builder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/task/strong/ast_properties.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/task/yaml.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/util/fast_uri.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/task/yaml.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/tool/summary/dump_inferred_types.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/tool/summary/inspect.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/tool/summary/stats.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/args/lib/src/arg_parser_exception.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/delegate/stream.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/null_stream_sink.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/result.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/result/capture_sink.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/result/capture_transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/result/error.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/result/release_sink.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/result/release_transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/result/value.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/single_subscription_transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/stream_sink_completer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/stream_sink_transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/stream_sink_transformer/handler_transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/stream_sink_transformer/stream_transformer_wrapper.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/stream_sink_transformer/typed.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/stream_subscription_transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/stream_zip.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/typed/future.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/typed/stream.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/typed/stream_subscription.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/typed_stream_transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/empty_unmodifiable_set.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/equality_map.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/equality_set.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/functions.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/typed_wrappers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/union_set.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/union_set_controller.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/convert/lib/src/accumulator_sink.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/convert/lib/src/byte_accumulator_sink.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/convert/lib/src/string_accumulator_sink.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/tool/node_format_service.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/intl/compact_number_format.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/plural_rules.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/order_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/meta/lib/meta.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/observable.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/change_record.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/list_diff.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/observable.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/observable_list.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/observable_map.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/property_change_record.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/to_observable.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/string_scanner/lib/src/relative_span_scanner.dart +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_i386.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_i386.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2009-2011, 2013-2014, 2016, D. R. Commander. +Copyright (C) 2015, Matthieu Darbois. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Based on the x86 SIMD extension for IJG JPEG library, +Copyright (C) 1999-2006, MIYASAKA Masaru. - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_mips.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_mips.c +---------------------------------------------------------------------------------------------------- +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2009-2011, 2014, D. R. Commander. +Copyright (C) 2013-2014, MIPS Technologies, Inc., California. +Copyright (C) 2015, Matthieu Darbois. + +Based on the x86 SIMD extension for IJG JPEG library, +Copyright (C) 1999-2006, MIYASAKA Masaru. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_mips_dspr2.S +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_mips_dspr2.S +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013-2014, MIPS Technologies, Inc., California. +All Rights Reserved. +Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) + Darko Laus (darko.laus@imgtec.com) +Copyright (C) 2015, D. R. Commander. All Rights Reserved. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_mips_dspr2_asm.h +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_mips_dspr2_asm.h +---------------------------------------------------------------------------------------------------- +Copyright (C) 2013, MIPS Technologies, Inc., California. +All Rights Reserved. +Authors: Teodora Novkovic (teodora.novkovic@imgtec.com) + Darko Laus (darko.laus@imgtec.com) +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_powerpc.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_powerpc.c +---------------------------------------------------------------------------------------------------- +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2009-2011, 2014-2015, D. R. Commander. +Copyright (C) 2015, Matthieu Darbois. + +Based on the x86 SIMD extension for IJG JPEG library, +Copyright (C) 1999-2006, MIYASAKA Masaru. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. +==================================================================================================== + +==================================================================================================== +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimd_x86_64.c + ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/simd/jsimd_x86_64.c +---------------------------------------------------------------------------------------------------- +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2009-2011, 2014, 2016, D. R. Commander. +Copyright (C) 2015, Matthieu Darbois. + +Based on the x86 SIMD extension for IJG JPEG library, +Copyright (C) 1999-2006, MIYASAKA Masaru. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/doc/support/dart.js + ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/doc/support/dart.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/example/parser_driver.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/example/resolver_driver.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/example/scanner_driver.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/analyzer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/error.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/string_source.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/args/lib/args.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/args/lib/src/parser.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/args/lib/src/usage.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/async.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/result.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/stream_zip.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/barback.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/asset/asset.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/asset/asset_forwarder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/asset/asset_id.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/asset/asset_node.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/asset/asset_node_set.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/asset/asset_set.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/asset/internal_asset.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/barback.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/build_result.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/errors.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/graph/asset_cascade.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/graph/group_runner.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/graph/package_graph.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/graph/phase.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/graph/phase_forwarder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/graph/phase_output.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/graph/transform_node.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/log.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/package_provider.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/serialize.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/transformer/barback_settings.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/transformer/transform_logger.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/transformer/transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/transformer/transformer_group.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/utils/cancelable_future.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/utils/file_pool.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/utils/multiset.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/utils/stream_pool.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/utils/stream_replayer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/browser/lib/dart.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/browser/lib/interop.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/code_transformers/lib/messages/build_logger.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/algorithms.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/collection.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/equality.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/iterable_zip.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/algorithms.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/equality.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/iterable_zip.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/unmodifiable_wrappers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/wrappers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/wrappers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/css.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/src/css_printer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/src/polyfill.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/src/tree_printer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/glob/lib/src/stream_pool.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/pretty_print.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/context.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/parsed_path.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/path_exception.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/style.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/style/posix.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/style/url.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/style/windows.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_maps/lib/builder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_maps/lib/parser.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_maps/lib/printer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_maps/lib/refactor.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_maps/lib/source_maps.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_maps/lib/src/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_maps/lib/src/vlq.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/chain.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/frame.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/lazy_trace.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/stack_zone_specification.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/trace.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/vm_trace.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/stack_trace.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/typed_data/lib/typed_buffers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/typed_data/lib/typed_data.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/compact_vm_config.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/html_config.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/html_enhanced_config.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/html_individual_config.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/configuration.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/pretty_print.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/simple_configuration.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/test_case.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/unittest.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/vm_config.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/utf/lib/src/utf_stream.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/example/watch.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/lib/src/async_queue.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/lib/src/constructable_file_system_event.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/lib/src/directory_watcher.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/lib/src/directory_watcher/linux.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/lib/src/directory_watcher/mac_os.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/lib/src/directory_watcher/polling.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/lib/src/path_set.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/lib/src/resubscribable.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/lib/src/stat.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/lib/src/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/lib/src/watch_event.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/lib/watcher.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/lib/src/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/lib/src/yaml_exception.dart +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +TYPE: LicenseType.zlib +FILE: ../../../third_party/libjpeg-turbo/jconfig.h +FILE: ../../../third_party/libjpeg-turbo/jconfig.h.in +FILE: ../../../third_party/libjpeg-turbo/jconfigint.h +FILE: ../../../third_party/libjpeg-turbo/jconfigint.h.in +FILE: ../../../third_party/libjpeg-turbo/jpeg_nbits_table.h +FILE: ../../../third_party/libjpeg-turbo/libjpeg.map.in +FILE: ../../../third_party/libjpeg-turbo/simd/jpeg_nbits_table.inc +FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc +FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc.h +FILE: ../../../third_party/libjpeg-turbo/simd/jsimdext.inc +FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile +FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile.jni ---------------------------------------------------------------------------------------------------- -Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. +Copyright 2009 Pierre Ossman for Cendio AB +Copyright (C) 2010, D. R. Commander. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +Based on the x86 SIMD extension for IJG JPEG library - version 1.02 - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +Copyright (C) 1999-2006, MIYASAKA Masaru. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/context/declared_variables.dart + ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/LICENSE +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/tjunittest.c TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/context/declared_variables.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/dart/ast/ast.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/dart/ast/token.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/dart/ast/visitor.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/dart/constant/value.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/dart/element/element.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/dart/element/type.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/dart/element/visitor.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/error/error.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/error/listener.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/exception/exception.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/file_system/file_system.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/file_system/memory_file_system.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/file_system/physical_file_system.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/instrumentation/instrumentation.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/source/package_map_provider.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/source/package_map_resolver.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/source/pub_package_map_provider.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/cancelable_future.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/codegen/html.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/codegen/text_formatter.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/codegen/tools.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/ast/ast.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/ast/token.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/ast/utilities.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/constant/evaluation.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/constant/utilities.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/constant/value.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/element/builder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/element/element.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/element/handle.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/element/member.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/element/type.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/element/utilities.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/error/syntactic_errors.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/resolver/scope.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/scanner/reader.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/dart/scanner/scanner.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/error/codes.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/ast.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/constant.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/element.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/element_handle.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/element_resolver.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/engine.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/error.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/error_verifier.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/incremental_logger.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/incremental_resolution_validator.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/incremental_resolver.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/interner.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/java_core.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/java_engine.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/java_engine_io.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/java_io.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/parser.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/resolver.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/scanner.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/sdk.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/sdk_io.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/source.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/source_io.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/static_type_analyzer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/utilities_collection.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/utilities_dart.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/generated/utilities_general.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/summary/base.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/lib/src/util/utilities_timing.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/args/lib/command_runner.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/args/lib/src/arg_parser.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/args/lib/src/arg_results.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/args/lib/src/help_command.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/args/lib/src/option.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/args/lib/src/usage_exception.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/args/lib/src/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/.status -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/example/aggregate_transformer/lib/transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/example/lazy_transformer/lib/transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/example/markdown_converter/lib/transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/graph/node_status.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/graph/node_streams.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/graph/static_asset_cascade.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/graph/transformer_classifier.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/internal_asset.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/transformer/aggregate_transform.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/transformer/aggregate_transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/transformer/base_transform.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/transformer/declaring_aggregate_transform.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/transformer/declaring_aggregate_transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/transformer/declaring_transform.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/transformer/declaring_transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/transformer/lazy_aggregate_transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/transformer/lazy_transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/transformer/transform.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/lib/src/transformer/wrapping_aggregate_transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charcode/lib/ascii.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charcode/lib/charcode.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charcode/lib/html_entity.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/code_transformers/lib/assets.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/code_transformers/lib/benchmarks.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/code_transformers/lib/messages/messages.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/code_transformers/lib/resolver.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/code_transformers/lib/src/async_benchmark_base.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/code_transformers/lib/src/dart_sdk.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/code_transformers/lib/src/delete_file.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/code_transformers/lib/src/entry_point.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/code_transformers/lib/src/messages.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/code_transformers/lib/src/remove_sourcemap_comment.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/code_transformers/lib/src/resolver.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/code_transformers/lib/src/resolver_impl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/code_transformers/lib/src/resolvers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/priority_queue.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/canonicalized_map.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/priority_queue.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/queue_list.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/benchmark/benchmark.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/dart_style.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/argument_list_visitor.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/call_chain_visitor.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/chunk.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/chunk_builder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/dart_formatter.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/debug.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/error_listener.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/formatter_exception.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/formatter_options.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/io.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/line_writer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/source_code.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/source_visitor.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/lib/src/whitespace.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/glob/lib/glob.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/glob/lib/src/ast.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/glob/lib/src/list_tree.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/glob/lib/src/parser.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/glob/lib/src/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/.status -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/date_time_patterns.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/logging/.status -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/matcher.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/mirror_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/util.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/benchmark/benchmark.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/characters.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/internal_style.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/pool/lib/pool.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_maps/lib/src/source_map_span.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_span/lib/source_span.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_span/lib/src/colors.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_span/lib/src/file.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_span/lib/src/location.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_span/lib/src/span.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_span/lib/src/span_exception.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_span/lib/src/span_mixin.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_span/lib/src/span_with_context.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_span/lib/src/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/string_scanner/lib/src/exception.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/string_scanner/lib/src/line_scanner.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/string_scanner/lib/src/span_scanner.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/string_scanner/lib/src/string_scanner.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/string_scanner/lib/src/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/string_scanner/lib/string_scanner.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/.status -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/internal_test_case.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/prints_matcher.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/throws_matcher.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/throws_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/util.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/test_environment.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/example/ga.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/lib/src/usage_impl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/lib/src/usage_impl_html.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/lib/src/usage_impl_io.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/lib/src/uuid.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/lib/usage.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/lib/usage_html.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/lib/usage_io.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/tool/grind.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/lib/src/directory_watcher/windows.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/lib/src/equality.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/lib/src/event.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/lib/src/loader.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/lib/src/null_span.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/lib/src/parser.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/lib/src/scanner.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/lib/src/style.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/lib/src/token.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/lib/src/yaml_document.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/lib/src/yaml_node_wrapper.dart +FILE: ../../../third_party/libjpeg-turbo/tjunittest.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. +Copyright (C)2009-2014 D. R. Commander. All Rights Reserved. Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/args/example/test_runner.dart + ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/LICENSE +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/turbojpeg-jni.c TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/args/example/test_runner.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/barback/example/simple_transformer/lib/transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/crypto/lib/crypto.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/crypto/lib/src/hash_sink.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/crypto/lib/src/hmac.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/crypto/lib/src/md5.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/crypto/lib/src/sha1.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/crypto/lib/src/sha256.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/bin/css.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/parser.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/src/analyzer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/src/messages.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/src/options.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/src/property.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/src/token.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/src/tokenizer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/src/tokenizer_base.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/src/tokenkind.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/src/tree.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/src/tree_base.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/src/validate.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/csslib/lib/visitor.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/date_symbol_data_file.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/date_symbol_data_http_request.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/date_symbols.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/intl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/intl_browser.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/intl_standalone.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/message_lookup_by_library.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/number_symbols.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/locale_list.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/date_format_internal.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/file_data_reader.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/http_request_data_reader.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/intl/bidi_formatter.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/intl/bidi_utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/intl/date_format.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/intl/date_format_field.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/intl/date_format_helpers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/intl/number_format.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/intl_helpers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/lazy_locale_data.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/tool/generate_locale_data_files.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/logging/lib/logging.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/core_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/description.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/error_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/interfaces.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/iterable_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/map_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/numeric_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/operator_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/string_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/path.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/core_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/description.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/error_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/expect.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/future_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/interfaces.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/iterable_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/map_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/numeric_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/operator_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/string_matchers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/utf/lib/src/constants.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/utf/lib/src/list_range.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/utf/lib/src/utf16.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/utf/lib/src/utf32.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/utf/lib/src/utf8.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/utf/lib/src/utf_16_code_unit_decoder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/utf/lib/src/util.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/utf/lib/utf.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/lib/src/yaml_node.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/lib/yaml.dart +FILE: ../../../third_party/libjpeg-turbo/turbojpeg-jni.c ---------------------------------------------------------------------------------------------------- -Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. +Copyright (C)2011-2016 D. R. Commander. All Rights Reserved. Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/LICENSE +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/turbojpeg.c TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/convert/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/convert/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/crypto/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/initialize/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/initialize/tool/rename_build_outputs.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/typed_data/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/utf/.test_config +FILE: ../../../third_party/libjpeg-turbo/jconfig.h +FILE: ../../../third_party/libjpeg-turbo/jconfig.h.in +FILE: ../../../third_party/libjpeg-turbo/jconfigint.h +FILE: ../../../third_party/libjpeg-turbo/jconfigint.h.in +FILE: ../../../third_party/libjpeg-turbo/jpeg_nbits_table.h +FILE: ../../../third_party/libjpeg-turbo/libjpeg.map.in +FILE: ../../../third_party/libjpeg-turbo/simd/jpeg_nbits_table.inc +FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc +FILE: ../../../third_party/libjpeg-turbo/simd/jsimdcfg.inc.h +FILE: ../../../third_party/libjpeg-turbo/tjbench.c +FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile +FILE: ../../../third_party/libjpeg-turbo/turbojpeg-mapfile.jni +FILE: ../../../third_party/libjpeg-turbo/turbojpeg.c ---------------------------------------------------------------------------------------------------- -Copyright 2015, the Dart project authors. All rights reserved. +Copyright (C)2009-2016 D. R. Commander. All Rights Reserved. + Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/async_cache.dart + ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/LICENSE +LIBRARY: libjpeg-turbo +ORIGIN: ../../../third_party/libjpeg-turbo/turbojpeg.h TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/async_cache.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/async/lib/src/byte_collector.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/cli_util/example/main.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/cli_util/lib/cli_logging.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/cli_util/lib/src/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/combined_wrappers/combined_iterable.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/combined_wrappers/combined_list.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/combined_wrappers/combined_map.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/lazy_chain.dart +FILE: ../../../third_party/libjpeg-turbo/turbojpeg.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. +Copyright (C)2009-2015 D. R. Commander. All Rights Reserved. Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. +- Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +- Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +- Neither the name of the libjpeg-turbo Project nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS", +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/browser/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charcode/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/code_transformers/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/code_transformers/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/dist/dart-style.d.ts -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/web/index.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_style/web/main.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/glob/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/pool/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_maps/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_maps/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_span/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/source_span/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/string_scanner/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/string_scanner/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/watcher/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/benchmark/output.json +LIBRARY: libpng +ORIGIN: ../../../third_party/libpng/LICENSE +TYPE: LicenseType.libpng +FILE: ../../../third_party/libpng/contrib/intel/intel_sse.patch +FILE: ../../../third_party/libpng/pngprefix.h ---------------------------------------------------------------------------------------------------- -Copyright 2014, the Dart project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + +==================================================================================================== -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== +LIBRARY: libpng +ORIGIN: ../../../third_party/libpng/png.h +TYPE: LicenseType.libpng +FILE: ../../../third_party/libpng/arm/arm_init.c +FILE: ../../../third_party/libpng/arm/filter_neon.S +FILE: ../../../third_party/libpng/arm/filter_neon_intrinsics.c +FILE: ../../../third_party/libpng/contrib/intel/filter_sse2_intrinsics.c +FILE: ../../../third_party/libpng/contrib/intel/intel_init.c +FILE: ../../../third_party/libpng/contrib/intel/intel_sse.patch +FILE: ../../../third_party/libpng/png.c +FILE: ../../../third_party/libpng/pngconf.h +FILE: ../../../third_party/libpng/pngdebug.h +FILE: ../../../third_party/libpng/pngerror.c +FILE: ../../../third_party/libpng/pngget.c +FILE: ../../../third_party/libpng/pnginfo.h +FILE: ../../../third_party/libpng/pnglibconf.h +FILE: ../../../third_party/libpng/pngmem.c +FILE: ../../../third_party/libpng/pngpread.c +FILE: ../../../third_party/libpng/pngpriv.h +FILE: ../../../third_party/libpng/pngread.c +FILE: ../../../third_party/libpng/pngrio.c +FILE: ../../../third_party/libpng/pngrtran.c +FILE: ../../../third_party/libpng/pngrutil.c +FILE: ../../../third_party/libpng/pngset.c +FILE: ../../../third_party/libpng/pngstruct.h +FILE: ../../../third_party/libpng/pngtest.c +FILE: ../../../third_party/libpng/pngtrans.c +FILE: ../../../third_party/libpng/pngwio.c +FILE: ../../../third_party/libpng/pngwrite.c +FILE: ../../../third_party/libpng/pngwtran.c +FILE: ../../../third_party/libpng/pngwutil.c +---------------------------------------------------------------------------------------------------- + ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/LICENSE +LIBRARY: libwebp +ORIGIN: ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/charted-demo-screenshot.png -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/components/demo_chartstate.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/components/demo_chartstate.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/components/demo_custom_axis.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/demo_charts.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/demo_interactive.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_bar_charts.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_bar_charts.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_cartesian_renderers.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_combo_charts.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_combo_charts.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_line_charts.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_line_charts.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_pie_charts.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_pie_charts.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_stacked_bar_charts.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_stacked_bar_charts.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/index.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/layout/treemap_demo.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/selection/transitions_demo.html +FILE: ../../../third_party/libwebp/.mailmap +FILE: ../../../third_party/libwebp/Makefile.vc +FILE: ../../../third_party/libwebp/cmake/config.h.in +FILE: ../../../third_party/libwebp/doc/TODO +FILE: ../../../third_party/libwebp/doc/template.html +FILE: ../../../third_party/libwebp/extras/webp_quality.c +FILE: ../../../third_party/libwebp/gradle.properties +FILE: ../../../third_party/libwebp/makefile.unix +FILE: ../../../third_party/libwebp/src/demux/libwebpdemux.pc.in +FILE: ../../../third_party/libwebp/src/demux/libwebpdemux.rc +FILE: ../../../third_party/libwebp/src/libwebp.pc.in +FILE: ../../../third_party/libwebp/src/libwebp.rc +FILE: ../../../third_party/libwebp/src/libwebpdecoder.pc.in +FILE: ../../../third_party/libwebp/src/libwebpdecoder.rc +FILE: ../../../third_party/libwebp/src/mux/libwebpmux.pc.in +FILE: ../../../third_party/libwebp/src/mux/libwebpmux.rc ---------------------------------------------------------------------------------------------------- -Copyright (c) 2014, Michael Bostock and Google Inc. -All rights reserved. +Copyright (c) 2010, Google Inc. All rights reserved. Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: +modification, are permitted provided that the following conditions are +met: -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -* Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived from this - software without specific prior written permission + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY -OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, -EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/components/demo_custom_axis.dart +LIBRARY: libwebp +ORIGIN: ../../../third_party/libwebp/extras/extras.c + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/components/demo_custom_axis.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/demo_interactive.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_cartesian_renderers.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/layout/treemap_demo.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/selection/transitions_demo.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charted.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/behaviors/axis_label_tooltip.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/behaviors/chart_tooltip.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/behaviors/hovercard.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/behaviors/line_marker.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/behaviors/mouse_tracker.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/cartesian_renderers/bar_chart_renderer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/cartesian_renderers/bubble_chart_renderer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/cartesian_renderers/cartesian_base_renderer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/cartesian_renderers/line_chart_renderer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/cartesian_renderers/stackedbar_chart_renderer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/cartesian_renderers/stackedline_chart_renderer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_area.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_config.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_data.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_events.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_legend.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_renderer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_series.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_state.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_theme.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/charts.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/data_transformers/aggregation.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/data_transformers/aggregation_item.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/data_transformers/aggregation_transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/data_transformers/filter_transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/data_transformers/transpose_transformer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/layout_renderers/layout_base_renderer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/layout_renderers/pie_chart_renderer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/cartesian_area_impl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/chart_axis_impl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/chart_config_impl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/chart_data_impl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/chart_events_impl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/chart_legend_impl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/chart_series_impl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/chart_state_impl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/layout_area_impl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/themes/quantum_theme.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/interpolators.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/interpolators/easing.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/interpolators/interpolators.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/scales.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/scales/linear_scale.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/scales/log_scale.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/scales/ordinal_scale.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/scales/time_scale.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/text_metrics.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/text_metrics/segmentation.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/text_metrics/segmentation_data.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/text_metrics/segmentation_utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/time_interval.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/timer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils/bidi_formatter.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils/color.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils/disposer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils/lists.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils/math.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils/namespace.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils/object_factory.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils/rect.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/layout/layout.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/layout/src/hierarchy_layout.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/layout/src/pie_layout.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/layout/src/treemap_layout.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/locale/format.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/locale/format/number_format.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/locale/format/time_format.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/locale/languages/en_us.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/locale/locale.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/selection/selection.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/selection/selection_scope.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/selection/src/selection_impl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/selection/src/transition_impl.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/selection/transition.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/svg/axis.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/svg/shapes.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/svg/shapes/arc.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/svg/shapes/area.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/svg/shapes/line.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/svg/shapes/rect.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/tool/build_unicode_segmentation_data.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/tool/build_unicode_segmentation_data.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/tool/hop_runner.dart +FILE: ../../../third_party/libwebp/extras/extras.c +FILE: ../../../third_party/libwebp/extras/extras.h +FILE: ../../../third_party/libwebp/src/dec/common_dec.h +FILE: ../../../third_party/libwebp/src/demux/anim_decode.c +FILE: ../../../third_party/libwebp/src/dsp/alpha_processing_sse41.c +FILE: ../../../third_party/libwebp/src/dsp/cost_sse2.c +FILE: ../../../third_party/libwebp/src/dsp/dec_sse41.c +FILE: ../../../third_party/libwebp/src/dsp/enc_sse41.c +FILE: ../../../third_party/libwebp/src/dsp/filters_sse2.c +FILE: ../../../third_party/libwebp/src/dsp/lossless_enc.c +FILE: ../../../third_party/libwebp/src/dsp/lossless_enc_mips32.c +FILE: ../../../third_party/libwebp/src/dsp/lossless_enc_mips_dsp_r2.c +FILE: ../../../third_party/libwebp/src/dsp/lossless_enc_neon.c +FILE: ../../../third_party/libwebp/src/dsp/lossless_enc_sse2.c +FILE: ../../../third_party/libwebp/src/dsp/lossless_enc_sse41.c +FILE: ../../../third_party/libwebp/src/dsp/rescaler_neon.c +FILE: ../../../third_party/libwebp/src/dsp/rescaler_sse2.c +FILE: ../../../third_party/libwebp/src/enc/delta_palettization_enc.c +FILE: ../../../third_party/libwebp/src/enc/delta_palettization_enc.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2013, Google Inc. -All rights reserved. +Copyright 2015 Google Inc. All Rights Reserved. -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -* Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_to_js_script_rewriter/LICENSE +LIBRARY: libwebp +ORIGIN: ../../../third_party/libwebp/extras/get_disto.c + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_to_js_script_rewriter/COPYRIGHT_TRANSFER -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_to_js_script_rewriter/docs.yml -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_to_js_script_rewriter/example/index.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_to_js_script_rewriter/example/test.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_to_js_script_rewriter/lib/dart_to_js_script_rewriter.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_to_js_script_rewriter/tool/dev.dart +FILE: ../../../third_party/libwebp/extras/get_disto.c +FILE: ../../../third_party/libwebp/extras/quality_estimate.c +FILE: ../../../third_party/libwebp/imageio/image_dec.c +FILE: ../../../third_party/libwebp/imageio/image_dec.h +FILE: ../../../third_party/libwebp/imageio/image_enc.c +FILE: ../../../third_party/libwebp/imageio/image_enc.h +FILE: ../../../third_party/libwebp/imageio/imageio_util.c +FILE: ../../../third_party/libwebp/imageio/imageio_util.h +FILE: ../../../third_party/libwebp/src/dsp/common_sse2.h +FILE: ../../../third_party/libwebp/src/dsp/dec_msa.c +FILE: ../../../third_party/libwebp/src/dsp/enc_msa.c +FILE: ../../../third_party/libwebp/src/dsp/filters_msa.c +FILE: ../../../third_party/libwebp/src/dsp/lossless_enc_msa.c +FILE: ../../../third_party/libwebp/src/dsp/lossless_msa.c +FILE: ../../../third_party/libwebp/src/dsp/msa_macro.h +FILE: ../../../third_party/libwebp/src/dsp/rescaler_msa.c +FILE: ../../../third_party/libwebp/src/dsp/upsampling_msa.c +FILE: ../../../third_party/libwebp/src/enc/predictor_enc.c +FILE: ../../../third_party/libwebp/src/mux/animi.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2014 Seth Ladd. All rights reserved. +Copyright 2016 Google Inc. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following disclaimer - in the documentation and/or other materials provided with the - distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/LICENSE -TYPE: LicenseType.mit -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/lib/dom.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/lib/dom_parsing.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/lib/parser.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/lib/parser_console.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/lib/src/char_encodings.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/lib/src/constants.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/lib/src/encoding_parser.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/lib/src/inputstream.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/lib/src/list_proxy.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/lib/src/query_selector.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/lib/src/token.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/lib/src/tokenizer.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/lib/src/treebuilder.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/html/lib/src/utils.dart ----------------------------------------------------------------------------------------------------- -Copyright (c) 2006-2012 The Authors - -Contributors: -James Graham - jg307@cam.ac.uk -Anne van Kesteren - annevankesteren@gmail.com -Lachlan Hunt - lachlan.hunt@lachy.id.au -Matt McDonald - kanashii@kanashii.ca -Sam Ruby - rubys@intertwingly.net -Ian Hickson (Google) - ian@hixie.ch -Thomas Broyer - t.broyer@ltgt.net -Jacques Distler - distler@golem.ph.utexas.edu -Henri Sivonen - hsivonen@iki.fi -Adam Barth - abarth@webkit.org -Eric Seidel - eric@webkit.org -The Mozilla Foundation (contributions from Henri Sivonen since 2008) -David Flanagan (Mozilla) - dflanagan@mozilla.com -Google Inc. (contributed the Dart port) - misc@dartlang.org + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/date_symbol_data_local.dart + ../../../third_party/dart/third_party/observatory_pub_packages/packages/analyzer/LICENSE +LIBRARY: libwebp +ORIGIN: ../../../third_party/libwebp/imageio/jpegdec.c + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/date_symbol_data_local.dart -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/number_symbols_data.dart +FILE: ../../../third_party/libwebp/imageio/jpegdec.c +FILE: ../../../third_party/libwebp/imageio/jpegdec.h +FILE: ../../../third_party/libwebp/imageio/metadata.c +FILE: ../../../third_party/libwebp/imageio/metadata.h +FILE: ../../../third_party/libwebp/imageio/pngdec.c +FILE: ../../../third_party/libwebp/imageio/pngdec.h +FILE: ../../../third_party/libwebp/imageio/tiffdec.c +FILE: ../../../third_party/libwebp/imageio/tiffdec.h +FILE: ../../../third_party/libwebp/src/dec/vp8l_dec.c +FILE: ../../../third_party/libwebp/src/dec/vp8li_dec.h +FILE: ../../../third_party/libwebp/src/demux/demux.c +FILE: ../../../third_party/libwebp/src/dsp/dec_neon.c +FILE: ../../../third_party/libwebp/src/dsp/enc_neon.c +FILE: ../../../third_party/libwebp/src/dsp/lossless.c +FILE: ../../../third_party/libwebp/src/dsp/lossless.h +FILE: ../../../third_party/libwebp/src/dsp/lossless_common.h +FILE: ../../../third_party/libwebp/src/enc/backward_references_enc.c +FILE: ../../../third_party/libwebp/src/enc/backward_references_enc.h +FILE: ../../../third_party/libwebp/src/enc/histogram_enc.c +FILE: ../../../third_party/libwebp/src/enc/histogram_enc.h +FILE: ../../../third_party/libwebp/src/enc/vp8l_enc.c +FILE: ../../../third_party/libwebp/src/enc/vp8li_enc.h +FILE: ../../../third_party/libwebp/src/utils/color_cache_utils.c +FILE: ../../../third_party/libwebp/src/utils/color_cache_utils.h +FILE: ../../../third_party/libwebp/src/utils/huffman_utils.c +FILE: ../../../third_party/libwebp/src/utils/huffman_utils.h +FILE: ../../../third_party/libwebp/src/utils/rescaler_utils.c +FILE: ../../../third_party/libwebp/src/utils/rescaler_utils.h +FILE: ../../../third_party/libwebp/src/utils/utils.c +FILE: ../../../third_party/libwebp/src/utils/utils.h +FILE: ../../../third_party/libwebp/src/webp/demux.h +FILE: ../../../third_party/libwebp/src/webp/format_constants.h +FILE: ../../../third_party/libwebp/src/webp/mux_types.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2014, the Dart project authors. -Please see the AUTHORS file -for details. All rights reserved. +Copyright 2012 Google Inc. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY @@ -16781,31 +14656,70 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/meta/LICENSE +LIBRARY: libwebp +ORIGIN: ../../../third_party/libwebp/imageio/webpdec.c + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/.analysis_options +FILE: ../../../third_party/libwebp/imageio/webpdec.c +FILE: ../../../third_party/libwebp/imageio/webpdec.h +FILE: ../../../third_party/libwebp/src/dsp/alpha_processing_mips_dsp_r2.c +FILE: ../../../third_party/libwebp/src/dsp/alpha_processing_sse2.c +FILE: ../../../third_party/libwebp/src/dsp/argb.c +FILE: ../../../third_party/libwebp/src/dsp/argb_mips_dsp_r2.c +FILE: ../../../third_party/libwebp/src/dsp/argb_sse2.c +FILE: ../../../third_party/libwebp/src/dsp/cost.c +FILE: ../../../third_party/libwebp/src/dsp/cost_mips32.c +FILE: ../../../third_party/libwebp/src/dsp/cost_mips_dsp_r2.c +FILE: ../../../third_party/libwebp/src/dsp/dec_clip_tables.c +FILE: ../../../third_party/libwebp/src/dsp/dec_mips32.c +FILE: ../../../third_party/libwebp/src/dsp/dec_mips_dsp_r2.c +FILE: ../../../third_party/libwebp/src/dsp/enc_avx2.c +FILE: ../../../third_party/libwebp/src/dsp/enc_mips32.c +FILE: ../../../third_party/libwebp/src/dsp/enc_mips_dsp_r2.c +FILE: ../../../third_party/libwebp/src/dsp/filters_mips_dsp_r2.c +FILE: ../../../third_party/libwebp/src/dsp/lossless_mips_dsp_r2.c +FILE: ../../../third_party/libwebp/src/dsp/lossless_neon.c +FILE: ../../../third_party/libwebp/src/dsp/lossless_sse2.c +FILE: ../../../third_party/libwebp/src/dsp/mips_macro.h +FILE: ../../../third_party/libwebp/src/dsp/neon.h +FILE: ../../../third_party/libwebp/src/dsp/rescaler.c +FILE: ../../../third_party/libwebp/src/dsp/rescaler_mips32.c +FILE: ../../../third_party/libwebp/src/dsp/rescaler_mips_dsp_r2.c +FILE: ../../../third_party/libwebp/src/dsp/upsampling_mips_dsp_r2.c +FILE: ../../../third_party/libwebp/src/dsp/yuv_mips32.c +FILE: ../../../third_party/libwebp/src/dsp/yuv_mips_dsp_r2.c +FILE: ../../../third_party/libwebp/src/dsp/yuv_sse2.c +FILE: ../../../third_party/libwebp/src/enc/near_lossless_enc.c +FILE: ../../../third_party/libwebp/src/enc/picture_csp_enc.c +FILE: ../../../third_party/libwebp/src/enc/picture_psnr_enc.c +FILE: ../../../third_party/libwebp/src/enc/picture_rescale_enc.c +FILE: ../../../third_party/libwebp/src/enc/picture_tools_enc.c +FILE: ../../../third_party/libwebp/src/mux/anim_encode.c +FILE: ../../../third_party/libwebp/src/utils/bit_reader_inl_utils.h +FILE: ../../../third_party/libwebp/src/utils/endian_inl_utils.h ---------------------------------------------------------------------------------------------------- -Copyright 2016, the Dart project authors. All rights reserved. +Copyright 2014 Google Inc. All Rights Reserved. + Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY @@ -16815,34 +14729,41 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/coverage_controller.js + ../../../third_party/dart/third_party/observatory_pub_packages/packages/browser/LICENSE +LIBRARY: libwebp +ORIGIN: ../../../third_party/libwebp/imageio/wicdec.c + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/coverage_controller.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/test_controller.js +FILE: ../../../third_party/libwebp/imageio/wicdec.c +FILE: ../../../third_party/libwebp/imageio/wicdec.h +FILE: ../../../third_party/libwebp/src/dec/alphai_dec.h +FILE: ../../../third_party/libwebp/src/dsp/alpha_processing.c +FILE: ../../../third_party/libwebp/src/utils/quant_levels_dec_utils.c +FILE: ../../../third_party/libwebp/src/utils/quant_levels_dec_utils.h +FILE: ../../../third_party/libwebp/src/utils/random_utils.c +FILE: ../../../third_party/libwebp/src/utils/random_utils.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file -for details. All rights reserved. +Copyright 2013 Google Inc. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY @@ -16852,35 +14773,78 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/LICENSE +LIBRARY: libwebp +ORIGIN: ../../../third_party/libwebp/src/dec/alpha_dec.c + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/e2e_test/html_imports/lib/theme.html -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/bower.json -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/package.json +FILE: ../../../third_party/libwebp/src/dec/alpha_dec.c +FILE: ../../../third_party/libwebp/src/dec/buffer_dec.c +FILE: ../../../third_party/libwebp/src/dec/idec_dec.c +FILE: ../../../third_party/libwebp/src/dec/io_dec.c +FILE: ../../../third_party/libwebp/src/dec/webpi_dec.h +FILE: ../../../third_party/libwebp/src/dsp/cpu.c +FILE: ../../../third_party/libwebp/src/dsp/dec_sse2.c +FILE: ../../../third_party/libwebp/src/dsp/dsp.h +FILE: ../../../third_party/libwebp/src/dsp/enc.c +FILE: ../../../third_party/libwebp/src/dsp/enc_sse2.c +FILE: ../../../third_party/libwebp/src/dsp/filters.c +FILE: ../../../third_party/libwebp/src/dsp/upsampling.c +FILE: ../../../third_party/libwebp/src/dsp/upsampling_neon.c +FILE: ../../../third_party/libwebp/src/dsp/upsampling_sse2.c +FILE: ../../../third_party/libwebp/src/enc/alpha_enc.c +FILE: ../../../third_party/libwebp/src/enc/analysis_enc.c +FILE: ../../../third_party/libwebp/src/enc/config_enc.c +FILE: ../../../third_party/libwebp/src/enc/cost_enc.c +FILE: ../../../third_party/libwebp/src/enc/cost_enc.h +FILE: ../../../third_party/libwebp/src/enc/filter_enc.c +FILE: ../../../third_party/libwebp/src/enc/frame_enc.c +FILE: ../../../third_party/libwebp/src/enc/iterator_enc.c +FILE: ../../../third_party/libwebp/src/enc/picture_enc.c +FILE: ../../../third_party/libwebp/src/enc/quant_enc.c +FILE: ../../../third_party/libwebp/src/enc/syntax_enc.c +FILE: ../../../third_party/libwebp/src/enc/token_enc.c +FILE: ../../../third_party/libwebp/src/enc/tree_enc.c +FILE: ../../../third_party/libwebp/src/enc/vp8i_enc.h +FILE: ../../../third_party/libwebp/src/enc/webp_enc.c +FILE: ../../../third_party/libwebp/src/mux/muxedit.c +FILE: ../../../third_party/libwebp/src/mux/muxi.h +FILE: ../../../third_party/libwebp/src/mux/muxinternal.c +FILE: ../../../third_party/libwebp/src/mux/muxread.c +FILE: ../../../third_party/libwebp/src/utils/bit_writer_utils.c +FILE: ../../../third_party/libwebp/src/utils/bit_writer_utils.h +FILE: ../../../third_party/libwebp/src/utils/filters_utils.c +FILE: ../../../third_party/libwebp/src/utils/filters_utils.h +FILE: ../../../third_party/libwebp/src/utils/huffman_encode_utils.c +FILE: ../../../third_party/libwebp/src/utils/huffman_encode_utils.h +FILE: ../../../third_party/libwebp/src/utils/quant_levels_utils.c +FILE: ../../../third_party/libwebp/src/utils/quant_levels_utils.h +FILE: ../../../third_party/libwebp/src/utils/thread_utils.c +FILE: ../../../third_party/libwebp/src/utils/thread_utils.h +FILE: ../../../third_party/libwebp/src/webp/encode.h +FILE: ../../../third_party/libwebp/src/webp/mux.h ---------------------------------------------------------------------------------------------------- -Copyright (c) 2012 The Polymer Authors. All rights reserved. +Copyright 2011 Google Inc. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY @@ -16890,43 +14854,47 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/CustomElements.js +LIBRARY: libwebp +ORIGIN: ../../../third_party/libwebp/src/dec/frame_dec.c + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/CustomElements.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/CustomElements.min.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/HTMLImports.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/HTMLImports.min.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/MutationObserver.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/MutationObserver.min.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/ShadowDOM.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/ShadowDOM.min.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/webcomponents-lite.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/webcomponents-lite.min.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/webcomponents.js -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/webcomponents.min.js ----------------------------------------------------------------------------------------------------- -Copyright (c) 2014 The Polymer Authors. All rights reserved. +FILE: ../../../third_party/libwebp/src/dec/frame_dec.c +FILE: ../../../third_party/libwebp/src/dec/quant_dec.c +FILE: ../../../third_party/libwebp/src/dec/tree_dec.c +FILE: ../../../third_party/libwebp/src/dec/vp8_dec.c +FILE: ../../../third_party/libwebp/src/dec/vp8_dec.h +FILE: ../../../third_party/libwebp/src/dec/vp8i_dec.h +FILE: ../../../third_party/libwebp/src/dec/webp_dec.c +FILE: ../../../third_party/libwebp/src/dsp/dec.c +FILE: ../../../third_party/libwebp/src/dsp/yuv.c +FILE: ../../../third_party/libwebp/src/dsp/yuv.h +FILE: ../../../third_party/libwebp/src/utils/bit_reader_utils.c +FILE: ../../../third_party/libwebp/src/utils/bit_reader_utils.h +FILE: ../../../third_party/libwebp/src/webp/decode.h +FILE: ../../../third_party/libwebp/src/webp/types.h +---------------------------------------------------------------------------------------------------- +Copyright 2010 Google Inc. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY @@ -16936,30 +14904,35 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/interop_support.html + ../../../third_party/dart/LICENSE +LIBRARY: libwebp +ORIGIN: ../../../third_party/libwebp/src/dsp/alpha_processing_neon.c + ../../../third_party/libwebp/COPYING TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/web_components/lib/interop_support.html +FILE: ../../../third_party/libwebp/src/dsp/alpha_processing_neon.c +FILE: ../../../third_party/libwebp/src/dsp/filters_neon.c ---------------------------------------------------------------------------------------------------- -Copyright 2014 The Dart project authors. All rights reserved. +Copyright 2017 Google Inc. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of Google nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY @@ -16970,4430 +14943,1714 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== LIBRARY: observatory_pub_packages -ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/libyaml-license.txt -TYPE: LicenseType.mit -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/.analysis_options -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/.test_config -FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/yaml/benchmark/output.json ----------------------------------------------------------------------------------------------------- -Copyright (c) 2006 Kirill Simonov - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: rapidjson -ORIGIN: ../../../third_party/rapidjson/rapidjson/error/en.h -TYPE: LicenseType.mit -FILE: ../../../third_party/rapidjson/rapidjson/allocators.h -FILE: ../../../third_party/rapidjson/rapidjson/document.h -FILE: ../../../third_party/rapidjson/rapidjson/encodedstream.h -FILE: ../../../third_party/rapidjson/rapidjson/encodings.h -FILE: ../../../third_party/rapidjson/rapidjson/error/en.h -FILE: ../../../third_party/rapidjson/rapidjson/error/error.h -FILE: ../../../third_party/rapidjson/rapidjson/filereadstream.h -FILE: ../../../third_party/rapidjson/rapidjson/filewritestream.h -FILE: ../../../third_party/rapidjson/rapidjson/fwd.h -FILE: ../../../third_party/rapidjson/rapidjson/internal/biginteger.h -FILE: ../../../third_party/rapidjson/rapidjson/internal/diyfp.h -FILE: ../../../third_party/rapidjson/rapidjson/internal/dtoa.h -FILE: ../../../third_party/rapidjson/rapidjson/internal/ieee754.h -FILE: ../../../third_party/rapidjson/rapidjson/internal/itoa.h -FILE: ../../../third_party/rapidjson/rapidjson/internal/meta.h -FILE: ../../../third_party/rapidjson/rapidjson/internal/pow10.h -FILE: ../../../third_party/rapidjson/rapidjson/internal/regex.h -FILE: ../../../third_party/rapidjson/rapidjson/internal/stack.h -FILE: ../../../third_party/rapidjson/rapidjson/internal/strfunc.h -FILE: ../../../third_party/rapidjson/rapidjson/internal/strtod.h -FILE: ../../../third_party/rapidjson/rapidjson/internal/swap.h -FILE: ../../../third_party/rapidjson/rapidjson/istreamwrapper.h -FILE: ../../../third_party/rapidjson/rapidjson/memorybuffer.h -FILE: ../../../third_party/rapidjson/rapidjson/memorystream.h -FILE: ../../../third_party/rapidjson/rapidjson/ostreamwrapper.h -FILE: ../../../third_party/rapidjson/rapidjson/pointer.h -FILE: ../../../third_party/rapidjson/rapidjson/prettywriter.h -FILE: ../../../third_party/rapidjson/rapidjson/rapidjson.h -FILE: ../../../third_party/rapidjson/rapidjson/reader.h -FILE: ../../../third_party/rapidjson/rapidjson/schema.h -FILE: ../../../third_party/rapidjson/rapidjson/stream.h -FILE: ../../../third_party/rapidjson/rapidjson/stringbuffer.h -FILE: ../../../third_party/rapidjson/rapidjson/writer.h ----------------------------------------------------------------------------------------------------- -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -==================================================================================================== - -==================================================================================================== -LIBRARY: rapidjson -ORIGIN: ../../../third_party/rapidjson/rapidjson/msinttypes/inttypes.h +LIBRARY: pkg +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/comparators.dart + ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/rapidjson/rapidjson/msinttypes/inttypes.h -FILE: ../../../third_party/rapidjson/rapidjson/msinttypes/stdint.h +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/comparators.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/unparsed_frame.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/expected_function.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/group_context.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/example/example.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/example/example.html +FILE: ../../../third_party/pkg/when/lib/when.dart ---------------------------------------------------------------------------------------------------- -Copyright (c) 2006-2013 Alexander Chemeris +Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the product nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: root_certificates -ORIGIN: ../../../third_party/root_certificates/LICENSE -TYPE: LicenseType.mpl -FILE: ../../../third_party/root_certificates/root_certificates.cc ----------------------------------------------------------------------------------------------------- -Mozilla Public License Version 2.0 -================================== - -1. Definitions - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - -1.6. "Executable Form" - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - -1.8. "License" - means this document. - -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - -1.10. "Modifications" - means any of the following: - - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - - (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. +modification, are permitted provided that the following conditions are +met: -2.2. Effective Date + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -2.3. Limitations on Grant Scope +==================================================================================================== +LIBRARY: observatory_pub_packages +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/browser/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/.test_config +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/.test_config +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/.test_config +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/.analysis_options +---------------------------------------------------------------------------------------------------- +Copyright 2014, the Dart project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -(a) for any code that a Contributor has removed from Covered Software; - or +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or +==================================================================================================== +LIBRARY: observatory_pub_packages +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/browser/lib/dart.js + ../../../third_party/dart/third_party/observatory_pub_packages/packages/browser/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/browser/lib/dart.js +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/browser/lib/interop.js +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/algorithms.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/collection.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/equality.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/iterable_zip.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/algorithms.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/equality.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/iterable_zip.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/unmodifiable_wrappers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/wrappers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/wrappers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/pretty_print.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/context.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/parsed_path.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/path_exception.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/style.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/style/posix.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/style/url.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/style/windows.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/chain.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/frame.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/lazy_trace.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/stack_zone_specification.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/trace.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/utils.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/vm_trace.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/stack_trace.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/compact_vm_config.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/html_config.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/html_enhanced_config.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/html_individual_config.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/configuration.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/pretty_print.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/simple_configuration.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/test_case.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/utils.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/unittest.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/vm_config.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -2.4. Subsequent Licenses +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). +==================================================================================================== +LIBRARY: observatory_pub_packages +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/.analysis_options +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/charted-demo-screenshot.png +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/components/demo_chartstate.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/components/demo_chartstate.html +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/components/demo_custom_axis.html +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/demo_charts.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/demo_interactive.html +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_bar_charts.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_bar_charts.html +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_cartesian_renderers.html +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_combo_charts.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_combo_charts.html +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_line_charts.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_line_charts.html +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_pie_charts.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_pie_charts.html +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_stacked_bar_charts.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_stacked_bar_charts.html +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/index.html +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/layout/treemap_demo.html +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/selection/transitions_demo.html +---------------------------------------------------------------------------------------------------- +Copyright (c) 2014, Michael Bostock and Google Inc. +All rights reserved. -2.5. Representation +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. -2.6. Fair Use +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. +* Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived from this + software without specific prior written permission -2.7. Conditions +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY +OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. +==================================================================================================== +LIBRARY: observatory_pub_packages +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/components/demo_custom_axis.dart +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/components/demo_custom_axis.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/demo_interactive.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/charts/renderers/demo_cartesian_renderers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/layout/treemap_demo.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/examples/selection/transitions_demo.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charted.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/behaviors/axis_label_tooltip.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/behaviors/chart_tooltip.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/behaviors/hovercard.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/behaviors/line_marker.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/behaviors/mouse_tracker.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/cartesian_renderers/bar_chart_renderer.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/cartesian_renderers/bubble_chart_renderer.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/cartesian_renderers/cartesian_base_renderer.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/cartesian_renderers/line_chart_renderer.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/cartesian_renderers/stackedbar_chart_renderer.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/cartesian_renderers/stackedline_chart_renderer.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_area.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_config.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_data.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_events.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_legend.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_renderer.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_series.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_state.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/chart_theme.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/charts.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/data_transformers/aggregation.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/data_transformers/aggregation_item.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/data_transformers/aggregation_transformer.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/data_transformers/filter_transformer.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/data_transformers/transpose_transformer.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/layout_renderers/layout_base_renderer.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/layout_renderers/pie_chart_renderer.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/cartesian_area_impl.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/chart_axis_impl.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/chart_config_impl.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/chart_data_impl.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/chart_events_impl.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/chart_legend_impl.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/chart_series_impl.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/chart_state_impl.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/src/layout_area_impl.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/charts/themes/quantum_theme.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/interpolators.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/interpolators/easing.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/interpolators/interpolators.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/scales.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/scales/linear_scale.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/scales/log_scale.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/scales/ordinal_scale.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/scales/time_scale.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/text_metrics.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/text_metrics/segmentation.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/text_metrics/segmentation_data.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/text_metrics/segmentation_utils.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/time_interval.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/timer.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils/bidi_formatter.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils/color.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils/disposer.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils/lists.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils/math.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils/namespace.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils/object_factory.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/core/utils/rect.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/layout/layout.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/layout/src/hierarchy_layout.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/layout/src/pie_layout.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/layout/src/treemap_layout.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/locale/format.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/locale/format/number_format.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/locale/format/time_format.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/locale/languages/en_us.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/locale/locale.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/selection/selection.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/selection/selection_scope.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/selection/src/selection_impl.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/selection/src/transition_impl.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/selection/transition.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/svg/axis.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/svg/shapes.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/svg/shapes/arc.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/svg/shapes/area.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/svg/shapes/line.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/lib/svg/shapes/rect.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/tool/build_unicode_segmentation_data.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/tool/build_unicode_segmentation_data.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/charted/tool/hop_runner.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2013, Google Inc. +All rights reserved. -3. Responsibilities +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -3.1. Distribution of Source Form +* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. +* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. -3.2. Distribution of Executable Form +* Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. -If You distribute Covered Software in Executable Form then: +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and +==================================================================================================== +LIBRARY: observatory_pub_packages +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/.test_config +---------------------------------------------------------------------------------------------------- +Copyright 2015, the Dart project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -3.3. Distribution of a Larger Work +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). +==================================================================================================== +LIBRARY: observatory_pub_packages +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/canonicalized_map.dart + ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/priority_queue.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/canonicalized_map.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/priority_queue.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/queue_list.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/utils.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/.status +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/date_time_patterns.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/logging/.status +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/matcher.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/mirror_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/util.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/benchmark/benchmark.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/characters.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/internal_style.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/utils.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/.status +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/internal_test_case.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/prints_matcher.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/throws_matcher.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/throws_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/util.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/test_environment.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/example/ga.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/lib/src/usage_impl.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/lib/src/usage_impl_html.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/lib/src/usage_impl_io.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/lib/usage.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/lib/usage_html.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/lib/usage_io.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/lib/uuid/uuid.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/usage/tool/grind.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. -3.4. Notices +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -3.5. Application of Additional Terms +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. +==================================================================================================== +LIBRARY: observatory_pub_packages +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/combined_wrappers/combined_iterable.dart + ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/combined_wrappers/combined_iterable.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/combined_wrappers/combined_list.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/combined_wrappers/combined_map.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/dart_internal/lib/extract_type_arguments.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/meta/lib/dart2js.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/stack_trace/lib/src/lazy_chain.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. -4. Inability to Comply Due to Statute or Regulation +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -5. Termination +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. +==================================================================================================== +LIBRARY: observatory_pub_packages +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/empty_unmodifiable_set.dart + ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/empty_unmodifiable_set.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/equality_map.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/equality_set.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/functions.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/union_set.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/collection/lib/src/union_set_controller.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/intl/compact_number_format.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/plural_rules.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/order_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/meta/lib/meta.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/observable.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/differs.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/differs/list_differ.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/differs/map_differ.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/internal.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/observable.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/observable_list.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/observable_map.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/records.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/records/list_change_record.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/records/map_change_record.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/records/property_change_record.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/to_observable.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -* 6. Disclaimer of Warranty +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -* Covered Software is provided under this License on an "as is" -* basis, without warranty of any kind, either expressed, implied, or -* statutory, including, without limitation, warranties that the -* Covered Software is free of defects, merchantable, fit for a -* particular purpose or non-infringing. The entire risk as to the -* quality and performance of the Covered Software is with You. -* Should any Covered Software prove defective in any respect, You -* (not any Contributor) assume the cost of any necessary servicing, -* repair, or correction. This disclaimer of warranty constitutes an -* essential part of this License. No use of any Covered Software is -* authorized under this License except under this disclaimer. +==================================================================================================== +LIBRARY: observatory_pub_packages +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/af.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/am.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ar.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ar_DZ.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/az.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/be.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/bg.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/bn.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/br.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/bs.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ca.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/chr.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/cs.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/cy.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/da.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/de.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/de_AT.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/de_CH.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/el.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_AU.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_CA.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_GB.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_IE.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_IN.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_ISO.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_MY.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_SG.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_US.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/en_ZA.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/es.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/es_419.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/es_ES.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/es_MX.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/es_US.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/et.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/eu.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/fa.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/fi.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/fil.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/fr.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/fr_CA.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/fr_CH.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ga.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/gl.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/gsw.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/gu.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/haw.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/he.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/hi.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/hr.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/hu.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/hy.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/id.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/in.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/is.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/it.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/it_CH.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/iw.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ja.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ka.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/kk.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/km.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/kn.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ko.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ky.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ln.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/lo.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/lt.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/lv.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/mk.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ml.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/mn.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/mo.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/mr.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ms.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/mt.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/my.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/nb.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ne.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/nl.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/no.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/no_NO.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/or.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/pa.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/pl.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ps.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/pt.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/pt_BR.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/pt_PT.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ro.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ru.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sd.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sh.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/si.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sk.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sl.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sq.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sr.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sr_Latn.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sv.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/sw.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ta.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/te.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/th.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/tl.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/tr.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/uk.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/ur.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/uz.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/vi.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/zh.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/zh_CN.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/zh_HK.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/zh_TW.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/patterns/zu.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/af.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/am.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ar.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ar_DZ.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/az.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/be.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/bg.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/bn.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/br.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/bs.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ca.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/chr.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/cs.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/cy.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/da.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/de.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/de_AT.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/de_CH.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/el.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_AU.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_CA.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_GB.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_IE.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_IN.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_ISO.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_MY.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_SG.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_US.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/en_ZA.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/es.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/es_419.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/es_ES.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/es_MX.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/es_US.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/et.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/eu.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/fa.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/fi.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/fil.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/fr.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/fr_CA.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/fr_CH.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ga.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/gl.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/gsw.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/gu.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/haw.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/he.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/hi.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/hr.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/hu.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/hy.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/id.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/in.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/is.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/it.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/it_CH.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/iw.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ja.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ka.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/kk.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/km.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/kn.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ko.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ky.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ln.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/lo.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/lt.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/lv.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/mk.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ml.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/mn.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/mr.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ms.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/mt.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/my.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/nb.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ne.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/nl.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/no.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/no_NO.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/or.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/pa.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/pl.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ps.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/pt.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/pt_BR.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/pt_PT.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ro.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ru.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/si.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/sk.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/sl.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/sq.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/sr.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/sr_Latn.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/sv.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/sw.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ta.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/te.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/th.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/tl.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/tr.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/uk.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/ur.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/uz.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/vi.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/zh.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/zh_CN.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/zh_HK.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/zh_TW.json +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/symbols/zu.json +---------------------------------------------------------------------------------------------------- +Copyright 2013, the Dart project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -* 7. Limitation of Liability + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -* Under no circumstances and under no legal theory, whether tort -* (including negligence), contract, or otherwise, shall any -* Contributor, or anyone who distributes Covered Software as -* permitted above, be liable to You for any direct, indirect, -* special, incidental, or consequential damages of any character -* including, without limitation, damages for lost profits, loss of -* goodwill, work stoppage, computer failure or malfunction, or any -* and all other commercial damages or losses, even if such party -* shall have been informed of the possibility of such damages. This -* limitation of liability shall not apply to liability for death or -* personal injury resulting from such party's negligence to the -* extent applicable law prohibits such limitation. Some -* jurisdictions do not allow the exclusion or limitation of -* incidental or consequential damages, so this exclusion and -* limitation may not apply to You. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -8. Litigation +==================================================================================================== +LIBRARY: observatory_pub_packages +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/date_symbol_data_custom.dart + ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/date_symbol_data_custom.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2017, the Dart project authors. +Please see the AUTHORS file +for details. All rights reserved. -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -9. Miscellaneous + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -10. Versions of the License +==================================================================================================== +LIBRARY: observatory_pub_packages +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/date_symbol_data_local.dart + ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/date_symbol_data_local.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/number_symbols_data.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2014, the Dart project authors. +Please see the AUTHORS file +for details. All rights reserved. -10.1. New Versions +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -10.2. Effect of New Versions +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. +==================================================================================================== +LIBRARY: observatory_pub_packages +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/locale_list.dart + ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/date_symbol_data_file.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/date_symbol_data_http_request.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/date_symbols.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/intl.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/intl_browser.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/intl_standalone.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/message_lookup_by_library.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/number_symbols.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/data/dates/locale_list.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/date_format_internal.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/file_data_reader.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/http_request_data_reader.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/intl/bidi_formatter.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/intl/bidi_utils.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/intl/date_format.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/intl/date_format_field.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/intl/date_format_helpers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/intl/number_format.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/intl_helpers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/lib/src/lazy_locale_data.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/intl/tool/generate_locale_data_files.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/logging/lib/logging.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/core_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/custom_matcher.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/description.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/error_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/interfaces.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/iterable_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/map_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/numeric_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/operator_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/string_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/path.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/core_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/description.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/error_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/expect.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/future_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/interfaces.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/iterable_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/map_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/numeric_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/operator_matchers.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/src/matcher/string_matchers.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. -10.3. Modified Versions +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. +==================================================================================================== +LIBRARY: observatory_pub_packages +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/equals_matcher.dart + ../../../third_party/dart/third_party/observatory_pub_packages/packages/browser/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/equals_matcher.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/feature_matcher.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/having_matcher.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/matcher/lib/src/type_matcher.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/path_map.dart +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/path/lib/src/path_set.dart +---------------------------------------------------------------------------------------------------- +Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. -Exhibit A - Source Code Form License Notice +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -You may add additional accurate notices of copyright ownership. +==================================================================================================== +LIBRARY: observatory_pub_packages +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/meta/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/observable/lib/src/change_notifier.dart +---------------------------------------------------------------------------------------------------- +Copyright 2016, the Dart project authors. All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -Exhibit B - "Incompatible With Secondary Licenses" Notice + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: root_certificates -ORIGIN: ../../../third_party/root_certificates/certdata.pem -TYPE: LicenseType.mpl -FILE: ../../../third_party/root_certificates/certdata.pem +LIBRARY: observatory_pub_packages +ORIGIN: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/coverage_controller.js + ../../../third_party/dart/third_party/observatory_pub_packages/packages/browser/LICENSE +TYPE: LicenseType.bsd +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/coverage_controller.js +FILE: ../../../third_party/dart/third_party/observatory_pub_packages/packages/unittest/lib/test_controller.js ---------------------------------------------------------------------------------------------------- -Mozilla Public License -Version 2.0 - -1. Definitions +Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file +for details. All rights reserved. -1.1. “Contributor” +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: -means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials provided + with the distribution. + * Neither the name of Google Inc. nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. -1.2. “Contributor Version” +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor’s Contribution. +==================================================================================================== +LIBRARY: rapidjson +ORIGIN: ../../../third_party/rapidjson/rapidjson/error/en.h +TYPE: LicenseType.mit +FILE: ../../../third_party/rapidjson/rapidjson/allocators.h +FILE: ../../../third_party/rapidjson/rapidjson/document.h +FILE: ../../../third_party/rapidjson/rapidjson/encodedstream.h +FILE: ../../../third_party/rapidjson/rapidjson/encodings.h +FILE: ../../../third_party/rapidjson/rapidjson/error/en.h +FILE: ../../../third_party/rapidjson/rapidjson/error/error.h +FILE: ../../../third_party/rapidjson/rapidjson/filereadstream.h +FILE: ../../../third_party/rapidjson/rapidjson/filewritestream.h +FILE: ../../../third_party/rapidjson/rapidjson/fwd.h +FILE: ../../../third_party/rapidjson/rapidjson/internal/biginteger.h +FILE: ../../../third_party/rapidjson/rapidjson/internal/diyfp.h +FILE: ../../../third_party/rapidjson/rapidjson/internal/dtoa.h +FILE: ../../../third_party/rapidjson/rapidjson/internal/ieee754.h +FILE: ../../../third_party/rapidjson/rapidjson/internal/itoa.h +FILE: ../../../third_party/rapidjson/rapidjson/internal/meta.h +FILE: ../../../third_party/rapidjson/rapidjson/internal/pow10.h +FILE: ../../../third_party/rapidjson/rapidjson/internal/regex.h +FILE: ../../../third_party/rapidjson/rapidjson/internal/stack.h +FILE: ../../../third_party/rapidjson/rapidjson/internal/strfunc.h +FILE: ../../../third_party/rapidjson/rapidjson/internal/strtod.h +FILE: ../../../third_party/rapidjson/rapidjson/internal/swap.h +FILE: ../../../third_party/rapidjson/rapidjson/istreamwrapper.h +FILE: ../../../third_party/rapidjson/rapidjson/memorybuffer.h +FILE: ../../../third_party/rapidjson/rapidjson/memorystream.h +FILE: ../../../third_party/rapidjson/rapidjson/ostreamwrapper.h +FILE: ../../../third_party/rapidjson/rapidjson/pointer.h +FILE: ../../../third_party/rapidjson/rapidjson/prettywriter.h +FILE: ../../../third_party/rapidjson/rapidjson/rapidjson.h +FILE: ../../../third_party/rapidjson/rapidjson/reader.h +FILE: ../../../third_party/rapidjson/rapidjson/schema.h +FILE: ../../../third_party/rapidjson/rapidjson/stream.h +FILE: ../../../third_party/rapidjson/rapidjson/stringbuffer.h +FILE: ../../../third_party/rapidjson/rapidjson/writer.h +---------------------------------------------------------------------------------------------------- +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -1.3. “Contribution” +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. -means Covered Software of a particular Contributor. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +==================================================================================================== -1.4. “Covered Software” +==================================================================================================== +LIBRARY: rapidjson +ORIGIN: ../../../third_party/rapidjson/rapidjson/msinttypes/inttypes.h +TYPE: LicenseType.bsd +FILE: ../../../third_party/rapidjson/rapidjson/msinttypes/inttypes.h +FILE: ../../../third_party/rapidjson/rapidjson/msinttypes/stdint.h +---------------------------------------------------------------------------------------------------- +Copyright (c) 2006-2013 Alexander Chemeris -means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: -1.5. “Incompatible With Secondary Licenses” + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. -means + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. - a. that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or + 3. Neither the name of the product nor the names of its contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. - b. that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +==================================================================================================== -1.6. “Executable Form” +==================================================================================================== +LIBRARY: root_certificates +ORIGIN: ../../../third_party/root_certificates/LICENSE +TYPE: LicenseType.mpl +FILE: ../../../third_party/root_certificates/root_certificates.cc +---------------------------------------------------------------------------------------------------- +Mozilla Public License Version 2.0 +================================== -means any form of the work other than Source Code Form. +1. Definitions -1.7. “Larger Work” +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. -means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. -1.8. “License” +1.3. "Contribution" + means Covered Software of a particular Contributor. -means this document. +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. -1.9. “Licensable” +1.5. "Incompatible With Secondary Licenses" + means -means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or -1.10. “Modifications” + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. -means any of the following: +1.6. "Executable Form" + means any form of the work other than Source Code Form. - a. any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. - b. any new file in Source Code Form that contains any Covered Software. +1.8. "License" + means this document. -1.11. “Patent Claims” of a Contributor +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. -means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. +1.10. "Modifications" + means any of the following: -1.12. “Secondary License” + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or -means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. + (b) any new file in Source Code Form that contains any Covered + Software. -1.13. “Source Code Form” +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. -means the form of the work preferred for making modifications. +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. -1.14. “You” (or “Your”) +1.13. "Source Code Form" + means the form of the work preferred for making modifications. -means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. 2. License Grants and Conditions 2.1. Grants -Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: - a. under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and - b. under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. 2.2. Effective Date -The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. 2.3. Limitations on Grant Scope -The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: - a. for any code that a Contributor has removed from Covered Software; or +(a) for any code that a Contributor has removed from Covered Software; + or - b. for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or - c. under Patent Claims infringed by Covered Software in the absence of its Contributions. +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. -This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). 2.4. Subsequent Licenses -No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). 2.5. Representation -Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. 2.6. Fair Use -This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. 2.7. Conditions -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. 3. Responsibilities 3.1. Distribution of Source Form -All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients’ rights in the Source Code Form. +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. 3.2. Distribution of Executable Form If You distribute Covered Software in Executable Form then: - a. such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and - b. You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients’ rights in the Source Code Form under this License. +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. 3.3. Distribution of a Larger Work -You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). 3.4. Notices -You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. 3.5. Application of Additional Terms -You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. 4. Inability to Comply Due to Statute or Regulation -If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. 5. Termination -5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. - -6. Disclaimer of Warranty - - Covered Software is provided under this License on an “as is” basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. - -7. Limitation of Liability - - Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. - -8. Litigation - -Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims. - -9. Miscellaneous - -This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor. - -10. Versions of the License - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses - -If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice - - This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. - -If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - “Incompatible With Secondary Licenses” Notice - - This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0. -==================================================================================================== - -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/CQ_COMMITTERS -FILE: ../../../third_party/skia/DEPS -FILE: ../../../third_party/skia/Doxyfile -FILE: ../../../third_party/skia/animations/checkbox.xml -FILE: ../../../third_party/skia/animations/chest#1.jpg -FILE: ../../../third_party/skia/animations/fire#1.jpg -FILE: ../../../third_party/skia/animations/images#1.xml -FILE: ../../../third_party/skia/animations/jet#1.jpg -FILE: ../../../third_party/skia/animations/lines#1.xml -FILE: ../../../third_party/skia/animations/movie#1.xml -FILE: ../../../third_party/skia/animations/paths#1.xml -FILE: ../../../third_party/skia/animations/redcross#1.jpg -FILE: ../../../third_party/skia/animations/text#1.xml -FILE: ../../../third_party/skia/bench/microbench.json -FILE: ../../../third_party/skia/bench/skpbench.json -FILE: ../../../third_party/skia/debugger/QT/Icons/.qrc -FILE: ../../../third_party/skia/debugger/QT/Icons/blank.png -FILE: ../../../third_party/skia/debugger/QT/Icons/breakpoint.png -FILE: ../../../third_party/skia/debugger/QT/Icons/breakpoint_16x16.png -FILE: ../../../third_party/skia/debugger/QT/Icons/delete.png -FILE: ../../../third_party/skia/debugger/QT/Icons/inspector.png -FILE: ../../../third_party/skia/debugger/QT/Icons/next.png -FILE: ../../../third_party/skia/debugger/QT/Icons/pause.png -FILE: ../../../third_party/skia/debugger/QT/Icons/play.png -FILE: ../../../third_party/skia/debugger/QT/Icons/previous.png -FILE: ../../../third_party/skia/debugger/QT/Icons/profile.png -FILE: ../../../third_party/skia/debugger/QT/Icons/reload.png -FILE: ../../../third_party/skia/debugger/QT/Icons/rewind.png -FILE: ../../../third_party/skia/debugger/QT/Icons/skia.png -FILE: ../../../third_party/skia/debugger/QT/SkIcons.qrc -FILE: ../../../third_party/skia/debugger/QT/qrc_SkIcons.cpp -FILE: ../../../third_party/skia/docs/SkAutoCanvasRestore_Reference.bmh -FILE: ../../../third_party/skia/docs/SkBitmap_Reference.bmh -FILE: ../../../third_party/skia/docs/SkCanvas_Reference.bmh -FILE: ../../../third_party/skia/docs/SkIPoint16_Reference.bmh -FILE: ../../../third_party/skia/docs/SkIPoint_Reference.bmh -FILE: ../../../third_party/skia/docs/SkIRect_Reference.bmh -FILE: ../../../third_party/skia/docs/SkImageInfo_Reference.bmh -FILE: ../../../third_party/skia/docs/SkImage_Reference.bmh -FILE: ../../../third_party/skia/docs/SkMatrix_Reference.bmh -FILE: ../../../third_party/skia/docs/SkPaint_Reference.bmh -FILE: ../../../third_party/skia/docs/SkPath_Reference.bmh -FILE: ../../../third_party/skia/docs/SkPixmap_Reference.bmh -FILE: ../../../third_party/skia/docs/SkPoint_Reference.bmh -FILE: ../../../third_party/skia/docs/SkRect_Reference.bmh -FILE: ../../../third_party/skia/docs/SkSurface_Reference.bmh -FILE: ../../../third_party/skia/docs/illustrations.bmh -FILE: ../../../third_party/skia/docs/markup.bmh -FILE: ../../../third_party/skia/docs/overview.bmh -FILE: ../../../third_party/skia/docs/status.json -FILE: ../../../third_party/skia/docs/undocumented.bmh -FILE: ../../../third_party/skia/docs/usingBookmaker.bmh -FILE: ../../../third_party/skia/experimental/docs/animationCommon.js -FILE: ../../../third_party/skia/experimental/docs/backend.js -FILE: ../../../third_party/skia/experimental/docs/canvasBackend.js -FILE: ../../../third_party/skia/experimental/docs/exampleSlides.js -FILE: ../../../third_party/skia/experimental/docs/interpolatorFunctions.js -FILE: ../../../third_party/skia/experimental/docs/jsonbaseddoc.htm -FILE: ../../../third_party/skia/experimental/docs/svgBackend.js -FILE: ../../../third_party/skia/experimental/docs/svgbaseddoc.htm -FILE: ../../../third_party/skia/experimental/docs/utilities.js -FILE: ../../../third_party/skia/gm/image.h -FILE: ../../../third_party/skia/infra/bots/android_bin.isolate -FILE: ../../../third_party/skia/infra/bots/assets.isolate -FILE: ../../../third_party/skia/infra/bots/assets/android_ndk_darwin/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/android_ndk_linux/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/android_ndk_windows/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/android_sdk_linux/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/armhf_sysroot/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/cast_toolchain/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/chromebook_arm_gles/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/chromebook_x86_64_gles/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/clang_linux/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/clang_win/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/emscripten_sdk/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/gcloud_linux/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/go/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/linux_vulkan_intel_driver_debug/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/linux_vulkan_intel_driver_release/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/linux_vulkan_sdk/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/procdump_win/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/protoc/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/skimage/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/skp/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/svg/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/valgrind/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/win_ninja/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/win_toolchain/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/win_toolchain_2015/VERSION -FILE: ../../../third_party/skia/infra/bots/assets/win_vulkan_sdk/VERSION -FILE: ../../../third_party/skia/infra/bots/bundle_recipes.isolate -FILE: ../../../third_party/skia/infra/bots/calmbench.isolate -FILE: ../../../third_party/skia/infra/bots/cfg.json -FILE: ../../../third_party/skia/infra/bots/compile_skia.isolate -FILE: ../../../third_party/skia/infra/bots/coverage_skia.isolate -FILE: ../../../third_party/skia/infra/bots/ct/blacklists/get_images_from_skps_100k_c37e844a6f8708-eee762104c75bd.json -FILE: ../../../third_party/skia/infra/bots/ct/blacklists/get_images_from_skps_100k_fad657e-276e633.json -FILE: ../../../third_party/skia/infra/bots/ct_skps_skia.isolate -FILE: ../../../third_party/skia/infra/bots/housekeeper_skia.isolate -FILE: ../../../third_party/skia/infra/bots/infra_skia.isolate -FILE: ../../../third_party/skia/infra/bots/infrabots.isolate -FILE: ../../../third_party/skia/infra/bots/ios_bin.isolate -FILE: ../../../third_party/skia/infra/bots/isolate_android_sdk_linux.isolate -FILE: ../../../third_party/skia/infra/bots/isolate_gcloud_linux.isolate -FILE: ../../../third_party/skia/infra/bots/isolate_go_linux.isolate -FILE: ../../../third_party/skia/infra/bots/isolate_ndk_linux.isolate -FILE: ../../../third_party/skia/infra/bots/isolate_skimage.isolate -FILE: ../../../third_party/skia/infra/bots/isolate_skp.isolate -FILE: ../../../third_party/skia/infra/bots/isolate_svg.isolate -FILE: ../../../third_party/skia/infra/bots/isolate_win_toolchain.isolate -FILE: ../../../third_party/skia/infra/bots/isolate_win_vulkan_sdk.isolate -FILE: ../../../third_party/skia/infra/bots/jobs.json -FILE: ../../../third_party/skia/infra/bots/meta_config.isolate -FILE: ../../../third_party/skia/infra/bots/perf_skia.isolate -FILE: ../../../third_party/skia/infra/bots/perf_skia_bundled.isolate -FILE: ../../../third_party/skia/infra/bots/perf_skia_bundled_unix.isolate -FILE: ../../../third_party/skia/infra/bots/perf_skia_bundled_win.isolate -FILE: ../../../third_party/skia/infra/bots/presubmit_skia.isolate -FILE: ../../../third_party/skia/infra/bots/recipe_modules/builder_name_schema/builder_name_schema.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/builder_name_schema/examples/full.expected/test.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/core/examples/full.expected/Build-Debian9-Clang-x86_64-Release-NoDEPS.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/core/examples/full.expected/Housekeeper-Weekly-RecreateSKPs.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/core/examples/full.expected/cross_repo_trybot.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/core/examples/full.expected/flutter_trybot.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/core/examples/full.expected/no_persistent_checkout.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/core/examples/full.expected/parent_revision.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/core/examples/full.expected/parent_revision_trybot.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/core/examples/full.expected/pdfium_trybot.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/core/examples/full.expected/test.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/ct/examples/full.expected/failed_gsutil.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/ct/examples/full.expected/test.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/env/examples/full.expected/test.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm-Release-Android_API26.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm-Release-Android_ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm-Release-Chromebook_GLES.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-arm64-Release-Android_ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-universal-devrel-Android_SKQP.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-Chromebook_GLES.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Fast.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Mini.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-NoDEPS.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-Clang-x86_64-Release-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-EMCC-wasm-Release.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Debug-EmbededResouces.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-ANGLE.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-Flutter_Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-NoGPU.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-PDFium.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Debian9-GCC-x86_64-Release-Shared.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-arm64-Debug-Android_Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-arm64-Debug-iOS.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Mac-Clang-x86_64-Debug-Metal.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-arm64-Release-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86_64-Debug-GDI.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86_64-Release-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-Clang-x86_64-Release.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Build-Win-MSVC-x86-Debug-Exceptions.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Perf-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Release-All-CT_BENCH_1k_SKPs.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Android-Clang-GalaxyS7_G930FD-GPU-MaliT880-arm64-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android_ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Android-Clang-Nexus7-CPU-Tegra3-arm-Release-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-ChromeOS-Clang-SamsungChromebookPlus-GPU-MaliT860-arm-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian9-Clang-GCE-CPU-AVX2-universal-devrel-All-Android_SKQP.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-Coverage.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SafeStack.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-TSAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Ubuntu16-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_AbandonGpuContext_SK_CPU_LIMIT_SSE41.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-Vulkan_ProcDump.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-Win10-MSVC-ShuttleA-GPU-GTX660-x86_64-Debug-All.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Debug-All.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/cpu_scale_failed.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/exceptions.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/failed_infra_step.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/failed_read_version.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/retry_adb_command.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/retry_adb_command_retries_exhausted.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/retry_ios_install.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/flavor/examples/full.expected/retry_ios_install_retries_exhausted.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/git/examples/full.expected/test.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/gsutil/examples/full.expected/failed_all_uploads.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/gsutil/examples/full.expected/failed_one_upload.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/gsutil/examples/full.expected/gsutil_tests.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/infra/examples/full.expected/failed_all_updates.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/infra/examples/full.expected/failed_one_update.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/infra/examples/full.expected/infra_tests.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/always-use-exparchive.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/basic.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/discover.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/exparchive-batch-bmiss.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/exparchive-batch-emiss.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/exparchive-batch.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/exparchive-miss.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/exparchive-multi-miss.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/exparchive-multi.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/exparchive.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/extra.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/missing.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/isolate/examples/full.expected/none.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/run/examples/full.expected/test.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/skia_swarming/examples/full.expected/test.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming/examples/full.expected/basic.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming/examples/full.expected/show_isolated_out_in_collect_step.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming/examples/full.expected/show_shards_in_collect_step.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming/examples/full.expected/swarming_expired_new.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming/examples/full.expected/swarming_expired_old.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming/examples/full.expected/swarming_timeout_new.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming/examples/full.expected/swarming_timeout_old.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming/examples/full.expected/trybot.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/swarming_client/examples/full.expected/basic.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Build-Debian9-Clang-x86_64-Release-NoDEPS.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Build-Debian9-Clang-x86_64-Release-ParentRevision.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Build-Debian9-Clang-x86_64-Release-SKNX_NO_SIMD.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Build-Debian9-GCC-x86_64-Release-Flutter_Android.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Build-Debian9-GCC-x86_64-Release-PDFium.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Build-Win-Clang-x86_64-Release-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Housekeeper-Weekly-RecreateSKPs.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Perf-Ubuntu14-GCC-GCE-CPU-AVX2-x86_64-Release-All-CT_BENCH_1k_SKPs.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/Upload-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-Coverage-All.json -FILE: ../../../third_party/skia/infra/bots/recipe_modules/vars/examples/full.expected/win_test.json -FILE: ../../../third_party/skia/infra/bots/recipes/android_compile.expected/android_compile_nontrybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/android_compile.expected/android_compile_trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/bookmaker.expected/nightly_bookmaker.json -FILE: ../../../third_party/skia/infra/bots/recipes/bookmaker.expected/nightly_failed_extract_fiddles.json -FILE: ../../../third_party/skia/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddlecli.json -FILE: ../../../third_party/skia/infra/bots/recipes/bookmaker.expected/nightly_failed_fiddles.json -FILE: ../../../third_party/skia/infra/bots/recipes/bookmaker.expected/nightly_failed_upload.json -FILE: ../../../third_party/skia/infra/bots/recipes/bookmaker.expected/percommit_bookmaker.json -FILE: ../../../third_party/skia/infra/bots/recipes/bookmaker.expected/percommit_failed_validation.json -FILE: ../../../third_party/skia/infra/bots/recipes/bundle_recipes.expected/BundleRecipes.json -FILE: ../../../third_party/skia/infra/bots/recipes/calmbench.expected/Calmbench-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/calmbench.expected/Calmbench-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/check_generated_files.expected/Housekeeper-PerCommit-CheckGeneratedFiles.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm-Release-Chromebook_GLES.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm64-Release-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm64-Release-Android_ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-arm64-Release-Android_Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-Coverage.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-MSAN.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Debug.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Chromebook_GLES.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Fast.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Mini.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-NoDEPS.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-Clang-x86_64-Release-Vulkan_Coverage.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-EMCC-wasm-Release.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-GCC-arm-Release-Chromecast.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86-Debug.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Debug-NoGPU.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-ANGLE.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-Flutter_Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-PDFium.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-PDFium_SkiaPaths.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Debian9-GCC-x86_64-Release-Shared.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Mac-Clang-arm64-Debug-iOS.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Mac-Clang-x64-Release-iOS.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Debug-CommandBuffer.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Mac-Clang-x86_64-Release.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Win-Clang-arm64-Release-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Win-Clang-x86_64-Release-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Debug-ANGLE.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Debug-Exceptions.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Debug.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/Build-Win-MSVC-x86-Release-GDI.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/alternate_repo.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/flutter_trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/pdfium_trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/compile.expected/trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_10k_SKPs_UnknownBuilder.json -FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_CPU_BENCH_10k_SKPs.json -FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_DM_100k_SKPs.json -FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_DM_10k_SKPs.json -FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_DM_10k_SKPs_Trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs.json -FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs_2slaves_failure.json -FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_DM_1m_SKPs_slave3_failure.json -FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_DM_SKPs_UnknownBuilder.json -FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_10k_SKPs.json -FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_GPU_BENCH_1k_SKPs.json -FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_100k_SKPs.json -FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_10k_SKPs.json -FILE: ../../../third_party/skia/infra/bots/recipes/ct_skps.expected/CT_IMG_DECODE_10k_SKPs_Trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit-Trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/housekeeper.expected/Housekeeper-PerCommit.json -FILE: ../../../third_party/skia/infra/bots/recipes/infra.expected/failed_all_updates.json -FILE: ../../../third_party/skia/infra/bots/recipes/infra.expected/failed_one_update.json -FILE: ../../../third_party/skia/infra/bots/recipes/infra.expected/infra_tests.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Android-Clang-Nexus5-GPU-Adreno330-arm-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Release-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Android-Clang-Nexus7-CPU-Tegra3-arm-Release-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Android-Clang-Nexus7-GPU-Tegra3-arm-Release-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Debug-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All-CommandBuffer.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Ubuntu16-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Ubuntu16-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_AbandonGpuContext_SK_CPU_LIMIT_SSE41.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_SK_CPU_LIMIT_SSE41.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-ANGLE.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Release-All-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-ANGLE.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Release-All-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Release-All-ANGLE.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Debug-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-Win2016-MSVC-GCE-CPU-AVX2-x86_64-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/Perf-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/cpu_scale_failed.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/cpu_scale_failed_golo.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/cpu_scale_failed_once.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/failed_push.json -FILE: ../../../third_party/skia/infra/bots/recipes/perf.expected/trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/recreate_skps.expected/Housekeeper-Nightly-RecreateSKPs_Canary.json -FILE: ../../../third_party/skia/infra/bots/recipes/recreate_skps.expected/Housekeeper-Weekly-RecreateSKPs.json -FILE: ../../../third_party/skia/infra/bots/recipes/recreate_skps.expected/failed_upload.json -FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/Perf-Android-Clang-Pixel-GPU-Adreno530-arm64-Release-All-Android_CCPR_Skpbench.json -FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Skpbench.json -FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/Perf-Android-Clang-PixelC-GPU-TegraX1-arm64-Release-All-Android_Vulkan_Skpbench.json -FILE: ../../../third_party/skia/infra/bots/recipes/skpbench.expected/trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/skqp_test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-universal-devrel-All-Android_SKQP.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-AndroidOne-GPU-Mali400MP2-arm-Release-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-GalaxyS6-GPU-MaliT760-arm64-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-GalaxyS7_G930A-GPU-Adreno530-arm64-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-NVIDIA_Shield-GPU-TegraX1-arm64-Debug-All-Android_CCPR.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-Nexus5-GPU-Adreno330-arm-Release-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-Nexus5x-GPU-Adreno418-arm-Debug-All-Android_ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-Nexus5x-GPU-Adreno418-arm64-Debug-All-Android_NoGPUThreads.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-Nexus7-CPU-Tegra3-arm-Release-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-Nexus7-GPU-Tegra3-arm-Debug-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-NexusPlayer-CPU-Moorefield-x86-Release-All-Android.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-NexusPlayer-GPU-PowerVR-x86-Release-All-Android_Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_CCPR.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Android-Clang-Pixel-GPU-Adreno530-arm64-Debug-All-Android_Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-ChromeOS-Clang-ASUSChromebookFlipC100-GPU-MaliT764-arm-Debug-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-ChromeOS-Clang-AcerChromebookR13Convertible-GPU-PowerVRGX6250-arm-Debug-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-GPU-Cortex_A7-arm-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-ASAN.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-MSAN.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-All-SK_USE_DISCARDABLE_SCALEDIMAGECACHE.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Debug-shard_00_10-Coverage.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-SK_FORCE_RASTER_PIPELINE_BLITTER.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-Clang-GCE-CPU-AVX2-x86_64-Release-All-TSAN.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-GCC-GCE-CPU-AVX2-x86-Debug-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Debian9-GCC-GCE-CPU-AVX2-x86_64-Debug-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Debug-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Mac-Clang-MacBook10.1-GPU-IntelHD615-x86_64-Release-All-NativeFonts.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Mac-Clang-MacBookAir7.2-GPU-IntelHD6000-x86_64-Debug-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Mac-Clang-MacMini7.1-CPU-AVX-x86_64-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Mac-Clang-MacMini7.1-GPU-IntelIris5100-x86_64-Debug-All-CommandBuffer.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Release-All-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Ubuntu16-Clang-NUC7i5BNK-GPU-IntelIris640-x86_64-Debug-All-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Ubuntu16-Clang-NUCDE3815TYKHE-GPU-IntelBayTrail-x86_64-Debug-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL1.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-DDL3.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Ubuntu17-Clang-Golo-GPU-QuadroP400-x86_64-Debug-All-Vulkan_Coverage.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_AbandonGpuContext_SK_CPU_LIMIT_SSE41.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_PreAbandonGpuContext_SK_CPU_LIMIT_SSE41.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Ubuntu17-GCC-Golo-GPU-QuadroP400-x86_64-Release-All-Valgrind_SK_CPU_LIMIT_SSE41.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-ANGLE.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-AlphaR2-GPU-RadeonR9M470X-x86_64-Debug-All-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-Golo-GPU-QuadroP400-x86_64-Release-All-ReleaseAndAbandonGpuContext.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-NUC5i7RYH-CPU-AVX2-x86_64-Debug-All-NativeFonts.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-NUC5i7RYH-CPU-AVX2-x86_64-Debug-All-NativeFonts_GDI.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-ANGLE.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-NUC6i5SYK-GPU-IntelIris540-x86_64-Debug-All-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-NUCD34010WYKH-GPU-IntelHD4400-x86_64-Release-All-ANGLE.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-ShuttleA-GPU-GTX660-x86_64-Debug-All-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-ShuttleC-GPU-GTX960-x86_64-Debug-All-ANGLE.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All-Vulkan.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win10-Clang-ZBOX-GPU-GTX1070-x86_64-Debug-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FAAA.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FDAA.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win2016-Clang-GCE-CPU-AVX2-x86_64-Debug-All-FSAA.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-Win8-MSVC-Golo-CPU-AVX-x86-Debug-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/Test-iOS-Clang-iPadPro-GPU-GT7800-arm64-Release-All.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/failed_dm.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/failed_get_hashes.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/failed_pull.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/failed_push.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/internal_bot_1.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/internal_bot_2.json -FILE: ../../../third_party/skia/infra/bots/recipes/test.expected/trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/update_meta_config.expected/Housekeeper-Nightly-UpdateMetaConfig.json -FILE: ../../../third_party/skia/infra/bots/recipes/update_meta_config.expected/failed_update.json -FILE: ../../../third_party/skia/infra/bots/recipes/update_meta_config.expected/trybot_test.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_calmbench_results.expected/normal_bot.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_calmbench_results.expected/trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_coverage_results.expected/alternate_bucket.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_coverage_results.expected/failed_all.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_coverage_results.expected/failed_once.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_coverage_results.expected/normal_bot.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_coverage_results.expected/trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_dm_results.expected/alternate_bucket.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_dm_results.expected/failed_all.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_dm_results.expected/failed_once.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_dm_results.expected/normal_bot.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_dm_results.expected/trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_nano_results.expected/normal_bot.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_nano_results.expected/trybot.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_skiaserve.expected/normal_bot.json -FILE: ../../../third_party/skia/infra/bots/recipes/upload_skiaserve.expected/trybot.json -FILE: ../../../third_party/skia/infra/bots/resources.isolate -FILE: ../../../third_party/skia/infra/bots/skia_repo.isolate -FILE: ../../../third_party/skia/infra/bots/skpbench_skia.isolate -FILE: ../../../third_party/skia/infra/bots/skpbench_skia_bundled.isolate -FILE: ../../../third_party/skia/infra/bots/skpbench_skia_bundled_unix.isolate -FILE: ../../../third_party/skia/infra/bots/skpbench_skia_bundled_win.isolate -FILE: ../../../third_party/skia/infra/bots/swarm_recipe.isolate -FILE: ../../../third_party/skia/infra/bots/swarm_recipe_bundled_unix.isolate -FILE: ../../../third_party/skia/infra/bots/swarm_recipe_bundled_win.isolate -FILE: ../../../third_party/skia/infra/bots/tasks.json -FILE: ../../../third_party/skia/infra/bots/test_skia.isolate -FILE: ../../../third_party/skia/infra/bots/test_skia_bundled.isolate -FILE: ../../../third_party/skia/infra/bots/test_skia_bundled_unix.isolate -FILE: ../../../third_party/skia/infra/bots/test_skia_bundled_win.isolate -FILE: ../../../third_party/skia/infra/bots/tools/luci-go/linux64/isolate.sha1 -FILE: ../../../third_party/skia/infra/bots/tools/luci-go/mac64/isolate.sha1 -FILE: ../../../third_party/skia/infra/bots/tools/luci-go/win64/isolate.exe.sha1 -FILE: ../../../third_party/skia/infra/bots/upload_coverage_results.isolate -FILE: ../../../third_party/skia/infra/bots/upload_dm_results.isolate -FILE: ../../../third_party/skia/infra/bots/upload_nano_results.isolate -FILE: ../../../third_party/skia/infra/branch-config/cq.cfg -FILE: ../../../third_party/skia/infra/config/recipes.cfg -FILE: ../../../third_party/skia/infra/cts/whitelist_devices.json -FILE: ../../../third_party/skia/infra/project-config/cr-buildbucket.cfg -FILE: ../../../third_party/skia/infra/project-config/project.cfg -FILE: ../../../third_party/skia/infra/project-config/refs.cfg -FILE: ../../../third_party/skia/public.bzl -FILE: ../../../third_party/skia/site/METADATA -FILE: ../../../third_party/skia/site/dev/METADATA -FILE: ../../../third_party/skia/site/dev/design/PdfLogicalDocumentStructure.png -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.1.ggb!/geogebra.xml -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.1.ggb!/geogebra_javascript.js -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.1.ggb!/geogebra_thumbnail.png -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.1.svg -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.2.ggb!/geogebra.xml -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.2.ggb!/geogebra_javascript.js -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.2.ggb!/geogebra_thumbnail.png -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.2.svg -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.ggb!/geogebra.xml -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.ggb!/geogebra_javascript.js -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.2.ggb!/geogebra_thumbnail.png -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.1.ggb!/geogebra.xml -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.1.ggb!/geogebra_javascript.js -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.1.ggb!/geogebra_thumbnail.png -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.1.svg -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.2.ggb!/geogebra.xml -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.2.ggb!/geogebra_javascript.js -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.2.ggb!/geogebra_thumbnail.png -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.2.svg -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.3.ggb!/geogebra.xml -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.3.ggb!/geogebra_javascript.js -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.3.ggb!/geogebra_thumbnail.png -FILE: ../../../third_party/skia/site/dev/design/conical/corollary2.3.3.svg -FILE: ../../../third_party/skia/site/dev/design/conical/lemma1.ggb!/geogebra.xml -FILE: ../../../third_party/skia/site/dev/design/conical/lemma1.ggb!/geogebra_javascript.js -FILE: ../../../third_party/skia/site/dev/design/conical/lemma1.ggb!/geogebra_thumbnail.png -FILE: ../../../third_party/skia/site/dev/design/conical/lemma1.svg -FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.1.ggb!/geogebra.xml -FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.1.ggb!/geogebra_javascript.js -FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.1.ggb!/geogebra_thumbnail.png -FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.1.svg -FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.2.ggb!/geogebra.xml -FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.2.ggb!/geogebra_javascript.js -FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.2.ggb!/geogebra_thumbnail.png -FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.2.svg -FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.ggb!/geogebra.xml -FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.ggb!/geogebra_javascript.js -FILE: ../../../third_party/skia/site/dev/design/conical/lemma3.ggb!/geogebra_thumbnail.png -FILE: ../../../third_party/skia/site/dev/design/conical/lemma4.ggb!/geogebra.xml -FILE: ../../../third_party/skia/site/dev/design/conical/lemma4.ggb!/geogebra_javascript.js -FILE: ../../../third_party/skia/site/dev/design/conical/lemma4.ggb!/geogebra_thumbnail.png -FILE: ../../../third_party/skia/site/dev/design/conical/lemma4.svg -FILE: ../../../third_party/skia/site/dev/tools/debugger.png -FILE: ../../../third_party/skia/site/dev/tools/image.png -FILE: ../../../third_party/skia/site/dev/tools/onlinedebugger.png -FILE: ../../../third_party/skia/site/dev/tools/tracing.png -FILE: ../../../third_party/skia/site/dev/tools/tracing_load.png -FILE: ../../../third_party/skia/site/favicon.ico -FILE: ../../../third_party/skia/site/user/METADATA -FILE: ../../../third_party/skia/site/user/api/METADATA -FILE: ../../../third_party/skia/site/user/api/catalog.htm -FILE: ../../../third_party/skia/site/user/sample/architecture.png -FILE: ../../../third_party/skia/site/user/sample/detail_correct.png -FILE: ../../../third_party/skia/site/user/sample/detail_wrong.png -FILE: ../../../third_party/skia/site/user/sample/gamut_correct.png -FILE: ../../../third_party/skia/site/user/sample/gamut_wrong.png -FILE: ../../../third_party/skia/site/user/sample/gradient_correct.png -FILE: ../../../third_party/skia/site/user/sample/gradient_wrong.png -FILE: ../../../third_party/skia/site/user/sample/transfer_fn.png -FILE: ../../../third_party/skia/src/core/SkOrderedReadBuffer.h -FILE: ../../../third_party/skia/src/sksl/lex/layout.lex -FILE: ../../../third_party/skia/src/sksl/lex/sksl.lex -FILE: ../../../third_party/skia/src/sksl/sksl.inc -FILE: ../../../third_party/skia/src/sksl/sksl_fp.inc -FILE: ../../../third_party/skia/src/sksl/sksl_frag.inc -FILE: ../../../third_party/skia/src/sksl/sksl_geom.inc -FILE: ../../../third_party/skia/src/sksl/sksl_vert.inc ----------------------------------------------------------------------------------------------------- -Copyright (c) 2011 Google Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/AAClipBench.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/AAClipBench.cpp -FILE: ../../../third_party/skia/bench/Benchmark.cpp -FILE: ../../../third_party/skia/bench/Benchmark.h -FILE: ../../../third_party/skia/bench/BitmapBench.cpp -FILE: ../../../third_party/skia/bench/BitmapRectBench.cpp -FILE: ../../../third_party/skia/bench/BlurBench.cpp -FILE: ../../../third_party/skia/bench/ChromeBench.cpp -FILE: ../../../third_party/skia/bench/DashBench.cpp -FILE: ../../../third_party/skia/bench/FontScalerBench.cpp -FILE: ../../../third_party/skia/bench/GradientBench.cpp -FILE: ../../../third_party/skia/bench/MatrixBench.cpp -FILE: ../../../third_party/skia/bench/MutexBench.cpp -FILE: ../../../third_party/skia/bench/PathBench.cpp -FILE: ../../../third_party/skia/bench/PathIterBench.cpp -FILE: ../../../third_party/skia/bench/PicturePlaybackBench.cpp -FILE: ../../../third_party/skia/bench/RectBench.cpp -FILE: ../../../third_party/skia/bench/RegionBench.cpp -FILE: ../../../third_party/skia/bench/RepeatTileBench.cpp -FILE: ../../../third_party/skia/bench/ScalarBench.cpp -FILE: ../../../third_party/skia/bench/ShaderMaskBench.cpp -FILE: ../../../third_party/skia/bench/TextBench.cpp -FILE: ../../../third_party/skia/bench/VertBench.cpp -FILE: ../../../third_party/skia/experimental/Networking/SkSockets.cpp -FILE: ../../../third_party/skia/experimental/Networking/SkSockets.h -FILE: ../../../third_party/skia/gm/aaclip.cpp -FILE: ../../../third_party/skia/gm/aarectmodes.cpp -FILE: ../../../third_party/skia/gm/arithmode.cpp -FILE: ../../../third_party/skia/gm/bitmapcopy.cpp -FILE: ../../../third_party/skia/gm/bitmapfilters.cpp -FILE: ../../../third_party/skia/gm/bitmaprect.cpp -FILE: ../../../third_party/skia/gm/blurs.cpp -FILE: ../../../third_party/skia/gm/clip_strokerect.cpp -FILE: ../../../third_party/skia/gm/color4f.cpp -FILE: ../../../third_party/skia/gm/colormatrix.cpp -FILE: ../../../third_party/skia/gm/complexclip.cpp -FILE: ../../../third_party/skia/gm/complexclip2.cpp -FILE: ../../../third_party/skia/gm/convexpaths.cpp -FILE: ../../../third_party/skia/gm/cubicpaths.cpp -FILE: ../../../third_party/skia/gm/degeneratesegments.cpp -FILE: ../../../third_party/skia/gm/dftext.cpp -FILE: ../../../third_party/skia/gm/drawbitmaprect.cpp -FILE: ../../../third_party/skia/gm/drawlooper.cpp -FILE: ../../../third_party/skia/gm/emptypath.cpp -FILE: ../../../third_party/skia/gm/encode.cpp -FILE: ../../../third_party/skia/gm/extractbitmap.cpp -FILE: ../../../third_party/skia/gm/filltypes.cpp -FILE: ../../../third_party/skia/gm/filltypespersp.cpp -FILE: ../../../third_party/skia/gm/filterbitmap.cpp -FILE: ../../../third_party/skia/gm/filterindiabox.cpp -FILE: ../../../third_party/skia/gm/fontscaler.cpp -FILE: ../../../third_party/skia/gm/gammatext.cpp -FILE: ../../../third_party/skia/gm/giantbitmap.cpp -FILE: ../../../third_party/skia/gm/gm.cpp -FILE: ../../../third_party/skia/gm/gm.h -FILE: ../../../third_party/skia/gm/gradients.cpp -FILE: ../../../third_party/skia/gm/gradtext.cpp -FILE: ../../../third_party/skia/gm/hairmodes.cpp -FILE: ../../../third_party/skia/gm/hittestpath.cpp -FILE: ../../../third_party/skia/gm/image.cpp -FILE: ../../../third_party/skia/gm/imageblur.cpp -FILE: ../../../third_party/skia/gm/imageblur2.cpp -FILE: ../../../third_party/skia/gm/imagefiltersbase.cpp -FILE: ../../../third_party/skia/gm/imagefilterscropped.cpp -FILE: ../../../third_party/skia/gm/lcdtext.cpp -FILE: ../../../third_party/skia/gm/linepaths.cpp -FILE: ../../../third_party/skia/gm/ninepatchstretch.cpp -FILE: ../../../third_party/skia/gm/pathfill.cpp -FILE: ../../../third_party/skia/gm/pathreverse.cpp -FILE: ../../../third_party/skia/gm/points.cpp -FILE: ../../../third_party/skia/gm/poly2poly.cpp -FILE: ../../../third_party/skia/gm/quadpaths.cpp -FILE: ../../../third_party/skia/gm/shadertext.cpp -FILE: ../../../third_party/skia/gm/shadertext2.cpp -FILE: ../../../third_party/skia/gm/shadertext3.cpp -FILE: ../../../third_party/skia/gm/shadows.cpp -FILE: ../../../third_party/skia/gm/strokefill.cpp -FILE: ../../../third_party/skia/gm/strokerects.cpp -FILE: ../../../third_party/skia/gm/strokes.cpp -FILE: ../../../third_party/skia/gm/tablecolorfilter.cpp -FILE: ../../../third_party/skia/gm/texteffects.cpp -FILE: ../../../third_party/skia/gm/tilemodes.cpp -FILE: ../../../third_party/skia/gm/tilemodes_scaled.cpp -FILE: ../../../third_party/skia/gm/tinybitmap.cpp -FILE: ../../../third_party/skia/gm/verttext.cpp -FILE: ../../../third_party/skia/gm/verttext2.cpp -FILE: ../../../third_party/skia/gm/xfermodes.cpp -FILE: ../../../third_party/skia/include/core/SkData.h -FILE: ../../../third_party/skia/include/core/SkImageEncoder.h -FILE: ../../../third_party/skia/include/core/SkImageFilter.h -FILE: ../../../third_party/skia/include/core/SkMatrix44.h -FILE: ../../../third_party/skia/include/core/SkSize.h -FILE: ../../../third_party/skia/include/core/SkTLazy.h -FILE: ../../../third_party/skia/include/effects/SkLayerDrawLooper.h -FILE: ../../../third_party/skia/include/gpu/GrRenderTarget.h -FILE: ../../../third_party/skia/include/gpu/GrTexture.h -FILE: ../../../third_party/skia/include/gpu/gl/GrGLConfig.h -FILE: ../../../third_party/skia/include/gpu/gl/GrGLConfig_chrome.h -FILE: ../../../third_party/skia/include/gpu/gl/GrGLInterface.h -FILE: ../../../third_party/skia/include/ports/SkTypeface_mac.h -FILE: ../../../third_party/skia/include/ports/SkTypeface_win.h -FILE: ../../../third_party/skia/include/private/GrGLSL.h -FILE: ../../../third_party/skia/include/private/SkTArray.h -FILE: ../../../third_party/skia/include/utils/SkNWayCanvas.h -FILE: ../../../third_party/skia/include/utils/mac/SkCGUtils.h -FILE: ../../../third_party/skia/include/views/SkTouchGesture.h -FILE: ../../../third_party/skia/samplecode/ClockFaceView.cpp -FILE: ../../../third_party/skia/samplecode/Sample2PtRadial.cpp -FILE: ../../../third_party/skia/samplecode/SampleAAClip.cpp -FILE: ../../../third_party/skia/samplecode/SampleAARectModes.cpp -FILE: ../../../third_party/skia/samplecode/SampleAARects.cpp -FILE: ../../../third_party/skia/samplecode/SampleAll.cpp -FILE: ../../../third_party/skia/samplecode/SampleAnimator.cpp -FILE: ../../../third_party/skia/samplecode/SampleArc.cpp -FILE: ../../../third_party/skia/samplecode/SampleBigBlur.cpp -FILE: ../../../third_party/skia/samplecode/SampleBigGradient.cpp -FILE: ../../../third_party/skia/samplecode/SampleBitmapRect.cpp -FILE: ../../../third_party/skia/samplecode/SampleBlur.cpp -FILE: ../../../third_party/skia/samplecode/SampleCamera.cpp -FILE: ../../../third_party/skia/samplecode/SampleCircle.cpp -FILE: ../../../third_party/skia/samplecode/SampleClamp.cpp -FILE: ../../../third_party/skia/samplecode/SampleClip.cpp -FILE: ../../../third_party/skia/samplecode/SampleCode.h -FILE: ../../../third_party/skia/samplecode/SampleColorFilter.cpp -FILE: ../../../third_party/skia/samplecode/SampleComplexClip.cpp -FILE: ../../../third_party/skia/samplecode/SampleConcavePaths.cpp -FILE: ../../../third_party/skia/samplecode/SampleDash.cpp -FILE: ../../../third_party/skia/samplecode/SampleDegenerateTwoPtRadials.cpp -FILE: ../../../third_party/skia/samplecode/SampleDither.cpp -FILE: ../../../third_party/skia/samplecode/SampleEffects.cpp -FILE: ../../../third_party/skia/samplecode/SampleEmboss.cpp -FILE: ../../../third_party/skia/samplecode/SampleFillType.cpp -FILE: ../../../third_party/skia/samplecode/SampleFilter2.cpp -FILE: ../../../third_party/skia/samplecode/SampleFontCache.cpp -FILE: ../../../third_party/skia/samplecode/SampleFontScalerTest.cpp -FILE: ../../../third_party/skia/samplecode/SampleFuzz.cpp -FILE: ../../../third_party/skia/samplecode/SampleGradients.cpp -FILE: ../../../third_party/skia/samplecode/SampleHairCurves.cpp -FILE: ../../../third_party/skia/samplecode/SampleHairModes.cpp -FILE: ../../../third_party/skia/samplecode/SampleHairline.cpp -FILE: ../../../third_party/skia/samplecode/SampleLCD.cpp -FILE: ../../../third_party/skia/samplecode/SampleLayerMask.cpp -FILE: ../../../third_party/skia/samplecode/SampleLayers.cpp -FILE: ../../../third_party/skia/samplecode/SampleLines.cpp -FILE: ../../../third_party/skia/samplecode/SampleMeasure.cpp -FILE: ../../../third_party/skia/samplecode/SamplePatch.cpp -FILE: ../../../third_party/skia/samplecode/SamplePath.cpp -FILE: ../../../third_party/skia/samplecode/SamplePathClip.cpp -FILE: ../../../third_party/skia/samplecode/SamplePathEffects.cpp -FILE: ../../../third_party/skia/samplecode/SamplePathFill.cpp -FILE: ../../../third_party/skia/samplecode/SamplePoints.cpp -FILE: ../../../third_party/skia/samplecode/SamplePolyToPoly.cpp -FILE: ../../../third_party/skia/samplecode/SampleRegion.cpp -FILE: ../../../third_party/skia/samplecode/SampleRepeatTile.cpp -FILE: ../../../third_party/skia/samplecode/SampleShaderText.cpp -FILE: ../../../third_party/skia/samplecode/SampleShaders.cpp -FILE: ../../../third_party/skia/samplecode/SampleSlides.cpp -FILE: ../../../third_party/skia/samplecode/SampleStrokePath.cpp -FILE: ../../../third_party/skia/samplecode/SampleStrokeRect.cpp -FILE: ../../../third_party/skia/samplecode/SampleText.cpp -FILE: ../../../third_party/skia/samplecode/SampleTextAlpha.cpp -FILE: ../../../third_party/skia/samplecode/SampleTextBox.cpp -FILE: ../../../third_party/skia/samplecode/SampleTextOnPath.cpp -FILE: ../../../third_party/skia/samplecode/SampleTextureDomain.cpp -FILE: ../../../third_party/skia/samplecode/SampleTiling.cpp -FILE: ../../../third_party/skia/samplecode/SampleVertices.cpp -FILE: ../../../third_party/skia/samplecode/SampleWritePixels.cpp -FILE: ../../../third_party/skia/samplecode/SampleXfermodesBlur.cpp -FILE: ../../../third_party/skia/samplecode/vertexdump.cpp -FILE: ../../../third_party/skia/src/core/SkAAClip.cpp -FILE: ../../../third_party/skia/src/core/SkAAClip.h -FILE: ../../../third_party/skia/src/core/SkAdvancedTypefaceMetrics.h -FILE: ../../../third_party/skia/src/core/SkBitmapProcState.cpp -FILE: ../../../third_party/skia/src/core/SkBitmapProcState_matrix.h -FILE: ../../../third_party/skia/src/core/SkBitmapProcState_procs.h -FILE: ../../../third_party/skia/src/core/SkBitmapProcState_sample.h -FILE: ../../../third_party/skia/src/core/SkBitmapProcState_shaderproc.h -FILE: ../../../third_party/skia/src/core/SkBlitMask.h -FILE: ../../../third_party/skia/src/core/SkBlitRow.h -FILE: ../../../third_party/skia/src/core/SkBlitRow_D32.cpp -FILE: ../../../third_party/skia/src/core/SkClipStack.cpp -FILE: ../../../third_party/skia/src/core/SkClipStack.h -FILE: ../../../third_party/skia/src/core/SkColorMatrixFilterRowMajor255.cpp -FILE: ../../../third_party/skia/src/core/SkConvertPixels.h -FILE: ../../../third_party/skia/src/core/SkData.cpp -FILE: ../../../third_party/skia/src/core/SkDevice.cpp -FILE: ../../../third_party/skia/src/core/SkDither.cpp -FILE: ../../../third_party/skia/src/core/SkDrawProcs.h -FILE: ../../../third_party/skia/src/core/SkEdgeBuilder.cpp -FILE: ../../../third_party/skia/src/core/SkEdgeBuilder.h -FILE: ../../../third_party/skia/src/core/SkFlattenable.cpp -FILE: ../../../third_party/skia/src/core/SkFontStream.cpp -FILE: ../../../third_party/skia/src/core/SkLineClipper.cpp -FILE: ../../../third_party/skia/src/core/SkLineClipper.h -FILE: ../../../third_party/skia/src/core/SkMallocPixelRef.cpp -FILE: ../../../third_party/skia/src/core/SkMatrix44.cpp -FILE: ../../../third_party/skia/src/core/SkPictureData.cpp -FILE: ../../../third_party/skia/src/core/SkPictureData.h -FILE: ../../../third_party/skia/src/core/SkPictureFlat.cpp -FILE: ../../../third_party/skia/src/core/SkPictureFlat.h -FILE: ../../../third_party/skia/src/core/SkPictureRecord.cpp -FILE: ../../../third_party/skia/src/core/SkPictureRecord.h -FILE: ../../../third_party/skia/src/core/SkPixelRef.cpp -FILE: ../../../third_party/skia/src/core/SkPtrRecorder.cpp -FILE: ../../../third_party/skia/src/core/SkReadBuffer.h -FILE: ../../../third_party/skia/src/core/SkRefDict.cpp -FILE: ../../../third_party/skia/src/core/SkRefDict.h -FILE: ../../../third_party/skia/src/core/SkTypefaceCache.cpp -FILE: ../../../third_party/skia/src/core/SkTypefaceCache.h -FILE: ../../../third_party/skia/src/core/SkUnPreMultiply.cpp -FILE: ../../../third_party/skia/src/core/SkWriteBuffer.h -FILE: ../../../third_party/skia/src/core/SkWriter32.cpp -FILE: ../../../third_party/skia/src/effects/SkColorMatrix.cpp -FILE: ../../../third_party/skia/src/effects/SkColorMatrixFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkLayerDrawLooper.cpp -FILE: ../../../third_party/skia/src/effects/SkPackBits.cpp -FILE: ../../../third_party/skia/src/effects/SkPaintFlagsDrawFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkTableMaskFilter.cpp -FILE: ../../../third_party/skia/src/gpu/GrContext.cpp -FILE: ../../../third_party/skia/src/gpu/GrGpu.h -FILE: ../../../third_party/skia/src/gpu/GrGpuFactory.cpp -FILE: ../../../third_party/skia/src/gpu/GrGpuResource.cpp -FILE: ../../../third_party/skia/src/gpu/GrPaint.h -FILE: ../../../third_party/skia/src/gpu/GrPathRenderer.cpp -FILE: ../../../third_party/skia/src/gpu/GrPathRenderer.h -FILE: ../../../third_party/skia/src/gpu/GrPathRendererChain.cpp -FILE: ../../../third_party/skia/src/gpu/GrPathRendererChain.h -FILE: ../../../third_party/skia/src/gpu/GrPathUtils.cpp -FILE: ../../../third_party/skia/src/gpu/GrPathUtils.h -FILE: ../../../third_party/skia/src/gpu/GrRenderTarget.cpp -FILE: ../../../third_party/skia/src/gpu/GrStencilAttachment.cpp -FILE: ../../../third_party/skia/src/gpu/GrStencilAttachment.h -FILE: ../../../third_party/skia/src/gpu/GrStencilSettings.cpp -FILE: ../../../third_party/skia/src/gpu/GrTexture.cpp -FILE: ../../../third_party/skia/src/gpu/SkGpuDevice.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLCreateNullInterface.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLDefines.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLGLSL.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLGLSL.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLGpu.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLGpu.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLGpuProgramCache.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLIRect.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLInterface.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLMakeNativeInterface_none.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLProgram.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLProgram.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLRenderTarget.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLRenderTarget.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLStencilAttachment.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLStencilAttachment.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLTexture.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLTexture.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLUtil.cpp -FILE: ../../../third_party/skia/src/gpu/gl/mac/GrGLMakeNativeInterface_mac.cpp -FILE: ../../../third_party/skia/src/gpu/gl/win/GrGLMakeNativeInterface_win.cpp -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSL.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrAAHairLinePathRenderer.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrAAHairLinePathRenderer.h -FILE: ../../../third_party/skia/src/gpu/ops/GrDefaultPathRenderer.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrDefaultPathRenderer.h -FILE: ../../../third_party/skia/src/gpu/ops/GrMSAAPathRenderer.h -FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp -FILE: ../../../third_party/skia/src/opts/SkBlitRow_opts_none.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFConvertType1FontStream.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFDevice.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFDevice.h -FILE: ../../../third_party/skia/src/pdf/SkPDFDocument.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFFont.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFFont.h -FILE: ../../../third_party/skia/src/pdf/SkPDFGraphicState.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFMakeToUnicodeCmap.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFShader.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFShader.h -FILE: ../../../third_party/skia/src/pdf/SkPDFTypes.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFUtils.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFUtils.h -FILE: ../../../third_party/skia/src/ports/SkGlobalInitialization_default.cpp -FILE: ../../../third_party/skia/src/ports/SkImageEncoder_WIC.cpp -FILE: ../../../third_party/skia/src/ports/SkMemory_malloc.cpp -FILE: ../../../third_party/skia/src/ports/SkScalerContext_win_dw.cpp -FILE: ../../../third_party/skia/src/shaders/SkBitmapProcShader.cpp -FILE: ../../../third_party/skia/src/shaders/SkEmptyShader.h -FILE: ../../../third_party/skia/src/utils/SkBitSet.h -FILE: ../../../third_party/skia/src/utils/SkNWayCanvas.cpp -FILE: ../../../third_party/skia/src/utils/SkOSPath.cpp -FILE: ../../../third_party/skia/src/utils/SkParsePath.cpp -FILE: ../../../third_party/skia/src/utils/mac/SkCreateCGImageRef.cpp -FILE: ../../../third_party/skia/src/utils/win/SkAutoCoInitialize.cpp -FILE: ../../../third_party/skia/src/utils/win/SkAutoCoInitialize.h -FILE: ../../../third_party/skia/src/utils/win/SkHRESULT.cpp -FILE: ../../../third_party/skia/src/utils/win/SkHRESULT.h -FILE: ../../../third_party/skia/src/utils/win/SkIStream.cpp -FILE: ../../../third_party/skia/src/utils/win/SkIStream.h -FILE: ../../../third_party/skia/src/utils/win/SkTScopedComPtr.h -FILE: ../../../third_party/skia/src/utils/win/SkWGL.h -FILE: ../../../third_party/skia/src/utils/win/SkWGL_win.cpp -FILE: ../../../third_party/skia/src/views/SkView.cpp -FILE: ../../../third_party/skia/src/xps/SkXPSDevice.cpp -FILE: ../../../third_party/skia/src/xps/SkXPSDevice.h ----------------------------------------------------------------------------------------------------- -Copyright 2011 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== - -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/AlternatingColorPatternBench.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/AlternatingColorPatternBench.cpp -FILE: ../../../third_party/skia/bench/BezierBench.cpp -FILE: ../../../third_party/skia/bench/BlurRectsBench.cpp -FILE: ../../../third_party/skia/bench/GMBench.cpp -FILE: ../../../third_party/skia/bench/GMBench.h -FILE: ../../../third_party/skia/bench/GeometryBench.cpp -FILE: ../../../third_party/skia/bench/ImageFilterCollapse.cpp -FILE: ../../../third_party/skia/bench/ImageFilterDAGBench.cpp -FILE: ../../../third_party/skia/bench/PatchBench.cpp -FILE: ../../../third_party/skia/bench/PictureNestingBench.cpp -FILE: ../../../third_party/skia/bench/RecordingBench.cpp -FILE: ../../../third_party/skia/bench/RecordingBench.h -FILE: ../../../third_party/skia/bench/RectanizerBench.cpp -FILE: ../../../third_party/skia/bench/RotatedRectBench.cpp -FILE: ../../../third_party/skia/bench/SKPBench.cpp -FILE: ../../../third_party/skia/bench/SKPBench.h -FILE: ../../../third_party/skia/bench/nanobench.cpp -FILE: ../../../third_party/skia/debugger/QT/SkDrawCommandGeometryWidget.cpp -FILE: ../../../third_party/skia/debugger/QT/SkDrawCommandGeometryWidget.h -FILE: ../../../third_party/skia/dm/DMGpuSupport.h -FILE: ../../../third_party/skia/dm/DMJsonWriter.cpp -FILE: ../../../third_party/skia/dm/DMJsonWriter.h -FILE: ../../../third_party/skia/gm/aaa.cpp -FILE: ../../../third_party/skia/gm/beziers.cpp -FILE: ../../../third_party/skia/gm/blurcircles.cpp -FILE: ../../../third_party/skia/gm/cgm.c -FILE: ../../../third_party/skia/gm/cgms.cpp -FILE: ../../../third_party/skia/gm/clipdrawdraw.cpp -FILE: ../../../third_party/skia/gm/coloremoji_blendmodes.cpp -FILE: ../../../third_party/skia/gm/colorfilters.cpp -FILE: ../../../third_party/skia/gm/colorwheel.cpp -FILE: ../../../third_party/skia/gm/complexclip3.cpp -FILE: ../../../third_party/skia/gm/convexpolyclip.cpp -FILE: ../../../third_party/skia/gm/convexpolyeffect.cpp -FILE: ../../../third_party/skia/gm/discard.cpp -FILE: ../../../third_party/skia/gm/drrect.cpp -FILE: ../../../third_party/skia/gm/emboss.cpp -FILE: ../../../third_party/skia/gm/filterfastbounds.cpp -FILE: ../../../third_party/skia/gm/glyph_pos.cpp -FILE: ../../../third_party/skia/gm/glyph_pos_align.cpp -FILE: ../../../third_party/skia/gm/gradients_2pt_conical.cpp -FILE: ../../../third_party/skia/gm/grayscalejpg.cpp -FILE: ../../../third_party/skia/gm/imageblurtiled.cpp -FILE: ../../../third_party/skia/gm/imagefiltersclipped.cpp -FILE: ../../../third_party/skia/gm/imagefilterscropexpand.cpp -FILE: ../../../third_party/skia/gm/imagefiltersscaled.cpp -FILE: ../../../third_party/skia/gm/imageresizetiled.cpp -FILE: ../../../third_party/skia/gm/matriximagefilter.cpp -FILE: ../../../third_party/skia/gm/multipicturedraw.cpp -FILE: ../../../third_party/skia/gm/patch.cpp -FILE: ../../../third_party/skia/gm/picture.cpp -FILE: ../../../third_party/skia/gm/pictureshader.cpp -FILE: ../../../third_party/skia/gm/pictureshadertile.cpp -FILE: ../../../third_party/skia/gm/recordopts.cpp -FILE: ../../../third_party/skia/gm/smallarc.cpp -FILE: ../../../third_party/skia/gm/stroketext.cpp -FILE: ../../../third_party/skia/gm/surface.cpp -FILE: ../../../third_party/skia/gm/tallstretchedbitmaps.cpp -FILE: ../../../third_party/skia/gm/textblob.cpp -FILE: ../../../third_party/skia/gm/textblobshader.cpp -FILE: ../../../third_party/skia/gm/texturedomaineffect.cpp -FILE: ../../../third_party/skia/gm/tiledscaledbitmap.cpp -FILE: ../../../third_party/skia/gm/variedtext.cpp -FILE: ../../../third_party/skia/gm/yuvtorgbeffect.cpp -FILE: ../../../third_party/skia/include/c/sk_canvas.h -FILE: ../../../third_party/skia/include/c/sk_data.h -FILE: ../../../third_party/skia/include/c/sk_image.h -FILE: ../../../third_party/skia/include/c/sk_maskfilter.h -FILE: ../../../third_party/skia/include/c/sk_matrix.h -FILE: ../../../third_party/skia/include/c/sk_paint.h -FILE: ../../../third_party/skia/include/c/sk_path.h -FILE: ../../../third_party/skia/include/c/sk_picture.h -FILE: ../../../third_party/skia/include/c/sk_shader.h -FILE: ../../../third_party/skia/include/c/sk_surface.h -FILE: ../../../third_party/skia/include/c/sk_types.h -FILE: ../../../third_party/skia/include/core/SkBBHFactory.h -FILE: ../../../third_party/skia/include/core/SkBlurTypes.h -FILE: ../../../third_party/skia/include/core/SkDrawable.h -FILE: ../../../third_party/skia/include/core/SkFont.h -FILE: ../../../third_party/skia/include/core/SkMultiPictureDraw.h -FILE: ../../../third_party/skia/include/core/SkPictureRecorder.h -FILE: ../../../third_party/skia/include/core/SkSurfaceProps.h -FILE: ../../../third_party/skia/include/core/SkTextBlob.h -FILE: ../../../third_party/skia/include/gpu/GrGpuResource.h -FILE: ../../../third_party/skia/include/gpu/GrResourceKey.h -FILE: ../../../third_party/skia/include/gpu/gl/GrGLAssembleInterface.h -FILE: ../../../third_party/skia/include/ports/SkFontMgr_indirect.h -FILE: ../../../third_party/skia/include/ports/SkRemotableFontMgr.h -FILE: ../../../third_party/skia/samplecode/SampleHT.cpp -FILE: ../../../third_party/skia/samplecode/SampleIdentityScale.cpp -FILE: ../../../third_party/skia/samplecode/SampleRectanizer.cpp -FILE: ../../../third_party/skia/samplecode/SampleSubpixelTranslate.cpp -FILE: ../../../third_party/skia/src/c/sk_surface.cpp -FILE: ../../../third_party/skia/src/core/SkBBHFactory.cpp -FILE: ../../../third_party/skia/src/core/SkBitmapCache.cpp -FILE: ../../../third_party/skia/src/core/SkBitmapCache.h -FILE: ../../../third_party/skia/src/core/SkBlitMask_D32.cpp -FILE: ../../../third_party/skia/src/core/SkCachedData.cpp -FILE: ../../../third_party/skia/src/core/SkCachedData.h -FILE: ../../../third_party/skia/src/core/SkCanvasPriv.h -FILE: ../../../third_party/skia/src/core/SkConvertPixels.cpp -FILE: ../../../third_party/skia/src/core/SkDistanceFieldGen.cpp -FILE: ../../../third_party/skia/src/core/SkDistanceFieldGen.h -FILE: ../../../third_party/skia/src/core/SkDrawable.cpp -FILE: ../../../third_party/skia/src/core/SkFont.cpp -FILE: ../../../third_party/skia/src/core/SkForceCPlusPlusLinking.cpp -FILE: ../../../third_party/skia/src/core/SkHalf.cpp -FILE: ../../../third_party/skia/src/core/SkHalf.h -FILE: ../../../third_party/skia/src/core/SkImageGenerator.cpp -FILE: ../../../third_party/skia/src/core/SkMaskCache.cpp -FILE: ../../../third_party/skia/src/core/SkMaskCache.h -FILE: ../../../third_party/skia/src/core/SkMultiPictureDraw.cpp -FILE: ../../../third_party/skia/src/core/SkPicturePlayback.cpp -FILE: ../../../third_party/skia/src/core/SkPicturePlayback.h -FILE: ../../../third_party/skia/src/core/SkPictureRecorder.cpp -FILE: ../../../third_party/skia/src/core/SkRecord.h -FILE: ../../../third_party/skia/src/core/SkRecordDraw.cpp -FILE: ../../../third_party/skia/src/core/SkRecordDraw.h -FILE: ../../../third_party/skia/src/core/SkRecordOpts.cpp -FILE: ../../../third_party/skia/src/core/SkRecordOpts.h -FILE: ../../../third_party/skia/src/core/SkRecorder.cpp -FILE: ../../../third_party/skia/src/core/SkRecorder.h -FILE: ../../../third_party/skia/src/core/SkRecords.h -FILE: ../../../third_party/skia/src/core/SkSurfacePriv.h -FILE: ../../../third_party/skia/src/core/SkTaskGroup.cpp -FILE: ../../../third_party/skia/src/core/SkTaskGroup.h -FILE: ../../../third_party/skia/src/core/SkTextBlob.cpp -FILE: ../../../third_party/skia/src/core/SkTextMapStateProc.h -FILE: ../../../third_party/skia/src/core/SkVertState.cpp -FILE: ../../../third_party/skia/src/core/SkVertState.h -FILE: ../../../third_party/skia/src/fonts/SkFontMgr_indirect.cpp -FILE: ../../../third_party/skia/src/fonts/SkRemotableFontMgr.cpp -FILE: ../../../third_party/skia/src/gpu/GrDefaultGeoProcFactory.cpp -FILE: ../../../third_party/skia/src/gpu/GrDefaultGeoProcFactory.h -FILE: ../../../third_party/skia/src/gpu/GrFragmentProcessor.h -FILE: ../../../third_party/skia/src/gpu/GrGpuResourceCacheAccess.h -FILE: ../../../third_party/skia/src/gpu/GrGpuResourceRef.cpp -FILE: ../../../third_party/skia/src/gpu/GrGpuResourceRef.h -FILE: ../../../third_party/skia/src/gpu/GrPathRange.cpp -FILE: ../../../third_party/skia/src/gpu/GrPathRange.h -FILE: ../../../third_party/skia/src/gpu/GrPathRendering.cpp -FILE: ../../../third_party/skia/src/gpu/GrPathRendering.h -FILE: ../../../third_party/skia/src/gpu/GrPendingProgramElement.h -FILE: ../../../third_party/skia/src/gpu/GrPrimitiveProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/GrProcessorAnalysis.cpp -FILE: ../../../third_party/skia/src/gpu/GrProcessorAnalysis.h -FILE: ../../../third_party/skia/src/gpu/GrProgramDesc.h -FILE: ../../../third_party/skia/src/gpu/GrProgramElement.h -FILE: ../../../third_party/skia/src/gpu/GrRectanizer_pow2.h -FILE: ../../../third_party/skia/src/gpu/GrRectanizer_skyline.h -FILE: ../../../third_party/skia/src/gpu/GrResourceCache.cpp -FILE: ../../../third_party/skia/src/gpu/GrResourceCache.h -FILE: ../../../third_party/skia/src/gpu/GrSKSLPrettyPrint.cpp -FILE: ../../../third_party/skia/src/gpu/GrSKSLPrettyPrint.h -FILE: ../../../third_party/skia/src/gpu/GrSurfacePriv.h -FILE: ../../../third_party/skia/src/gpu/GrTRecorder.h -FILE: ../../../third_party/skia/src/gpu/GrTexturePriv.h -FILE: ../../../third_party/skia/src/gpu/GrTracing.h -FILE: ../../../third_party/skia/src/gpu/GrXferProcessor.h -FILE: ../../../third_party/skia/src/gpu/effects/GrBicubicEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrConvexPolyEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrConvexPolyEffect.h -FILE: ../../../third_party/skia/src/gpu/effects/GrCoverageSetOpXP.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrCoverageSetOpXP.h -FILE: ../../../third_party/skia/src/gpu/effects/GrDisableColorXP.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrDisableColorXP.h -FILE: ../../../third_party/skia/src/gpu/effects/GrMatrixConvolutionEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrMatrixConvolutionEffect.h -FILE: ../../../third_party/skia/src/gpu/effects/GrOvalEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrOvalEffect.h -FILE: ../../../third_party/skia/src/gpu/effects/GrPorterDuffXferProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrPorterDuffXferProcessor.h -FILE: ../../../third_party/skia/src/gpu/effects/GrRRectEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrRRectEffect.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLAssembleInterface.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLPathRange.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLPathRange.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLPathRendering.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLPathRendering.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLTextureRenderTarget.h -FILE: ../../../third_party/skia/src/gpu/gl/android/GrGLMakeNativeInterface_android.cpp -FILE: ../../../third_party/skia/src/gpu/gl/builders/GrGLProgramBuilder.cpp -FILE: ../../../third_party/skia/src/gpu/gl/builders/GrGLProgramBuilder.h -FILE: ../../../third_party/skia/src/gpu/gl/builders/GrGLShaderStringBuilder.cpp -FILE: ../../../third_party/skia/src/gpu/gl/builders/GrGLShaderStringBuilder.h -FILE: ../../../third_party/skia/src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp -FILE: ../../../third_party/skia/src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp -FILE: ../../../third_party/skia/src/gpu/gl/iOS/GrGLMakeNativeInterface_iOS.cpp -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLFragmentShaderBuilder.cpp -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLFragmentShaderBuilder.h -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLGeometryProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLPrimitiveProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLShaderBuilder.cpp -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLShaderBuilder.h -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLXferProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrDashOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrDashOp.h -FILE: ../../../third_party/skia/src/gpu/ops/GrSmallPathRenderer.h -FILE: ../../../third_party/skia/src/image/SkReadPixelsRec.h -FILE: ../../../third_party/skia/src/image/SkSurface_Gpu.h -FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_matrix_neon.h -FILE: ../../../third_party/skia/src/opts/SkBlitMask_opts_arm.cpp -FILE: ../../../third_party/skia/src/opts/SkBlitMask_opts_none.cpp -FILE: ../../../third_party/skia/src/pathops/SkOpBuilder.cpp -FILE: ../../../third_party/skia/src/pathops/SkOpSpan.cpp -FILE: ../../../third_party/skia/src/pathops/SkPathOpsTSect.cpp -FILE: ../../../third_party/skia/src/pathops/SkPathOpsTSect.h -FILE: ../../../third_party/skia/src/pathops/SkPathOpsTightBounds.cpp -FILE: ../../../third_party/skia/src/ports/SkFontMgr_android.cpp -FILE: ../../../third_party/skia/src/ports/SkFontMgr_fontconfig.cpp -FILE: ../../../third_party/skia/src/ports/SkFontMgr_win_dw.cpp -FILE: ../../../third_party/skia/src/ports/SkRemotableFontMgr_win_dw.cpp -FILE: ../../../third_party/skia/src/ports/SkScalerContext_win_dw.h -FILE: ../../../third_party/skia/src/ports/SkTypeface_win_dw.cpp -FILE: ../../../third_party/skia/src/ports/SkTypeface_win_dw.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_EBDT.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_EBLC.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_EBSC.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_gasp.h -FILE: ../../../third_party/skia/src/shaders/SkLocalMatrixShader.cpp -FILE: ../../../third_party/skia/src/shaders/SkLocalMatrixShader.h -FILE: ../../../third_party/skia/src/shaders/SkPictureShader.cpp -FILE: ../../../third_party/skia/src/shaders/SkPictureShader.h -FILE: ../../../third_party/skia/src/shaders/gradients/SkTwoPointConicalGradient_gpu.cpp -FILE: ../../../third_party/skia/src/shaders/gradients/SkTwoPointConicalGradient_gpu.h -FILE: ../../../third_party/skia/src/utils/SkDashPath.cpp -FILE: ../../../third_party/skia/src/utils/SkDashPathPriv.h -FILE: ../../../third_party/skia/src/utils/SkEventTracer.cpp -FILE: ../../../third_party/skia/src/utils/SkMatrix22.cpp -FILE: ../../../third_party/skia/src/utils/SkMatrix22.h -FILE: ../../../third_party/skia/src/utils/SkPatchUtils.cpp -FILE: ../../../third_party/skia/src/utils/SkPatchUtils.h -FILE: ../../../third_party/skia/src/utils/win/SkDWrite.cpp -FILE: ../../../third_party/skia/src/utils/win/SkDWrite.h ----------------------------------------------------------------------------------------------------- -Copyright 2014 Google Inc. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/BenchLogger.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/BenchLogger.cpp -FILE: ../../../third_party/skia/bench/BenchLogger.h -FILE: ../../../third_party/skia/bench/ChecksumBench.cpp -FILE: ../../../third_party/skia/bench/GameBench.cpp -FILE: ../../../third_party/skia/bench/GrMemoryPoolBench.cpp -FILE: ../../../third_party/skia/bench/LineBench.cpp -FILE: ../../../third_party/skia/bench/Matrix44Bench.cpp -FILE: ../../../third_party/skia/bench/MatrixConvolutionBench.cpp -FILE: ../../../third_party/skia/bench/MorphologyBench.cpp -FILE: ../../../third_party/skia/bench/RTreeBench.cpp -FILE: ../../../third_party/skia/bench/RefCntBench.cpp -FILE: ../../../third_party/skia/bench/TableBench.cpp -FILE: ../../../third_party/skia/debugger/QT/SkCanvasWidget.cpp -FILE: ../../../third_party/skia/debugger/QT/SkCanvasWidget.h -FILE: ../../../third_party/skia/debugger/QT/SkDebuggerGUI.cpp -FILE: ../../../third_party/skia/debugger/QT/SkDebuggerGUI.h -FILE: ../../../third_party/skia/debugger/QT/SkGLWidget.cpp -FILE: ../../../third_party/skia/debugger/QT/SkGLWidget.h -FILE: ../../../third_party/skia/debugger/QT/SkInspectorWidget.cpp -FILE: ../../../third_party/skia/debugger/QT/SkInspectorWidget.h -FILE: ../../../third_party/skia/debugger/QT/SkListWidget.cpp -FILE: ../../../third_party/skia/debugger/QT/SkListWidget.h -FILE: ../../../third_party/skia/debugger/QT/SkRasterWidget.cpp -FILE: ../../../third_party/skia/debugger/QT/SkSettingsWidget.cpp -FILE: ../../../third_party/skia/debugger/QT/SkSettingsWidget.h -FILE: ../../../third_party/skia/debugger/SkDebugger.cpp -FILE: ../../../third_party/skia/debugger/SkDebugger.h -FILE: ../../../third_party/skia/debugger/debuggermain.cpp -FILE: ../../../third_party/skia/gm/bigmatrix.cpp -FILE: ../../../third_party/skia/gm/blurrect.cpp -FILE: ../../../third_party/skia/gm/colorfilterimagefilter.cpp -FILE: ../../../third_party/skia/gm/composeshader.cpp -FILE: ../../../third_party/skia/gm/dashcubics.cpp -FILE: ../../../third_party/skia/gm/dashing.cpp -FILE: ../../../third_party/skia/gm/distantclip.cpp -FILE: ../../../third_party/skia/gm/fatpathfill.cpp -FILE: ../../../third_party/skia/gm/getpostextpath.cpp -FILE: ../../../third_party/skia/gm/imagefiltersgraph.cpp -FILE: ../../../third_party/skia/gm/imagemagnifier.cpp -FILE: ../../../third_party/skia/gm/lighting.cpp -FILE: ../../../third_party/skia/gm/matrixconvolution.cpp -FILE: ../../../third_party/skia/gm/modecolorfilters.cpp -FILE: ../../../third_party/skia/gm/morphology.cpp -FILE: ../../../third_party/skia/gm/patheffects.cpp -FILE: ../../../third_party/skia/gm/pathinterior.cpp -FILE: ../../../third_party/skia/gm/rrect.cpp -FILE: ../../../third_party/skia/gm/rrects.cpp -FILE: ../../../third_party/skia/gm/samplerstress.cpp -FILE: ../../../third_party/skia/gm/simpleaaclip.cpp -FILE: ../../../third_party/skia/gm/srcmode.cpp -FILE: ../../../third_party/skia/gm/strokerect.cpp -FILE: ../../../third_party/skia/gm/typeface.cpp -FILE: ../../../third_party/skia/gm/verylargebitmap.cpp -FILE: ../../../third_party/skia/include/core/SkAnnotation.h -FILE: ../../../third_party/skia/include/core/SkImage.h -FILE: ../../../third_party/skia/include/core/SkRRect.h -FILE: ../../../third_party/skia/include/core/SkStrokeRec.h -FILE: ../../../third_party/skia/include/core/SkSurface.h -FILE: ../../../third_party/skia/include/gpu/GrShaderCaps.h -FILE: ../../../third_party/skia/include/gpu/GrSurface.h -FILE: ../../../third_party/skia/include/gpu/gl/GrGLFunctions.h -FILE: ../../../third_party/skia/include/pathops/SkPathOps.h -FILE: ../../../third_party/skia/include/private/SkChecksum.h -FILE: ../../../third_party/skia/include/private/SkPathRef.h -FILE: ../../../third_party/skia/include/private/SkWeakRefCnt.h -FILE: ../../../third_party/skia/include/utils/SkNullCanvas.h -FILE: ../../../third_party/skia/samplecode/SampleAnimBlur.cpp -FILE: ../../../third_party/skia/samplecode/SampleFatBits.cpp -FILE: ../../../third_party/skia/samplecode/SampleQuadStroker.cpp -FILE: ../../../third_party/skia/src/core/SkAnnotation.cpp -FILE: ../../../third_party/skia/src/core/SkBBoxHierarchy.h -FILE: ../../../third_party/skia/src/core/SkColorTable.h -FILE: ../../../third_party/skia/src/core/SkDeviceProfile.cpp -FILE: ../../../third_party/skia/src/core/SkDeviceProfile.h -FILE: ../../../third_party/skia/src/core/SkFontDescriptor.cpp -FILE: ../../../third_party/skia/src/core/SkFontDescriptor.h -FILE: ../../../third_party/skia/src/core/SkImagePriv.h -FILE: ../../../third_party/skia/src/core/SkMD5.cpp -FILE: ../../../third_party/skia/src/core/SkMD5.h -FILE: ../../../third_party/skia/src/core/SkMaskGamma.cpp -FILE: ../../../third_party/skia/src/core/SkMaskGamma.h -FILE: ../../../third_party/skia/src/core/SkMathPriv.h -FILE: ../../../third_party/skia/src/core/SkPaintDefaults.h -FILE: ../../../third_party/skia/src/core/SkRRect.cpp -FILE: ../../../third_party/skia/src/core/SkRTree.cpp -FILE: ../../../third_party/skia/src/core/SkRTree.h -FILE: ../../../third_party/skia/src/core/SkReadBuffer.cpp -FILE: ../../../third_party/skia/src/core/SkStrokeRec.cpp -FILE: ../../../third_party/skia/src/core/SkTInternalLList.h -FILE: ../../../third_party/skia/src/core/SkTLList.h -FILE: ../../../third_party/skia/src/core/SkTLS.cpp -FILE: ../../../third_party/skia/src/core/SkTLS.h -FILE: ../../../third_party/skia/src/core/SkTextToPathIter.h -FILE: ../../../third_party/skia/src/core/SkWriteBuffer.cpp -FILE: ../../../third_party/skia/src/gpu/GrMemoryPool.cpp -FILE: ../../../third_party/skia/src/gpu/GrMemoryPool.h -FILE: ../../../third_party/skia/src/gpu/GrPath.cpp -FILE: ../../../third_party/skia/src/gpu/GrPath.h -FILE: ../../../third_party/skia/src/gpu/GrProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/GrProcessor.h -FILE: ../../../third_party/skia/src/gpu/GrProcessorUnitTest.h -FILE: ../../../third_party/skia/src/gpu/GrSWMaskHelper.cpp -FILE: ../../../third_party/skia/src/gpu/GrSWMaskHelper.h -FILE: ../../../third_party/skia/src/gpu/GrShaderCaps.cpp -FILE: ../../../third_party/skia/src/gpu/GrSoftwarePathRenderer.cpp -FILE: ../../../third_party/skia/src/gpu/GrSoftwarePathRenderer.h -FILE: ../../../third_party/skia/src/gpu/GrSurface.cpp -FILE: ../../../third_party/skia/src/gpu/GrTextureStripAtlas.h -FILE: ../../../third_party/skia/src/gpu/effects/GrGaussianConvolutionFragmentProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrGaussianConvolutionFragmentProcessor.h -FILE: ../../../third_party/skia/src/gpu/effects/GrTextureDomain.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrTextureDomain.h -FILE: ../../../third_party/skia/src/gpu/effects/GrTextureStripAtlas.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLCaps.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLCaps.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLPath.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLPath.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLProgramDataManager.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLProgramDataManager.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLUtil.h -FILE: ../../../third_party/skia/src/gpu/ops/GrAAConvexPathRenderer.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrAAConvexPathRenderer.h -FILE: ../../../third_party/skia/src/gpu/ops/GrStencilAndCoverPathRenderer.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrStencilAndCoverPathRenderer.h -FILE: ../../../third_party/skia/src/image/SkImage.cpp -FILE: ../../../third_party/skia/src/image/SkImage_Base.h -FILE: ../../../third_party/skia/src/image/SkImage_Gpu.cpp -FILE: ../../../third_party/skia/src/image/SkImage_Raster.cpp -FILE: ../../../third_party/skia/src/image/SkSurface.cpp -FILE: ../../../third_party/skia/src/image/SkSurface_Base.h -FILE: ../../../third_party/skia/src/image/SkSurface_Gpu.cpp -FILE: ../../../third_party/skia/src/image/SkSurface_Raster.cpp -FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_arm_neon.cpp -FILE: ../../../third_party/skia/src/opts/SkBlitRow_opts_arm_neon.h -FILE: ../../../third_party/skia/src/pathops/SkAddIntersections.cpp -FILE: ../../../third_party/skia/src/pathops/SkAddIntersections.h -FILE: ../../../third_party/skia/src/pathops/SkDCubicLineIntersection.cpp -FILE: ../../../third_party/skia/src/pathops/SkDLineIntersection.cpp -FILE: ../../../third_party/skia/src/pathops/SkDQuadLineIntersection.cpp -FILE: ../../../third_party/skia/src/pathops/SkIntersectionHelper.h -FILE: ../../../third_party/skia/src/pathops/SkIntersections.cpp -FILE: ../../../third_party/skia/src/pathops/SkIntersections.h -FILE: ../../../third_party/skia/src/pathops/SkLineParameters.h -FILE: ../../../third_party/skia/src/pathops/SkOpAngle.cpp -FILE: ../../../third_party/skia/src/pathops/SkOpAngle.h -FILE: ../../../third_party/skia/src/pathops/SkOpCubicHull.cpp -FILE: ../../../third_party/skia/src/pathops/SkOpEdgeBuilder.cpp -FILE: ../../../third_party/skia/src/pathops/SkOpEdgeBuilder.h -FILE: ../../../third_party/skia/src/pathops/SkOpSegment.cpp -FILE: ../../../third_party/skia/src/pathops/SkOpSegment.h -FILE: ../../../third_party/skia/src/pathops/SkOpSpan.h -FILE: ../../../third_party/skia/src/pathops/SkPathOpsBounds.h -FILE: ../../../third_party/skia/src/pathops/SkPathOpsCommon.cpp -FILE: ../../../third_party/skia/src/pathops/SkPathOpsCommon.h -FILE: ../../../third_party/skia/src/pathops/SkPathOpsCubic.cpp -FILE: ../../../third_party/skia/src/pathops/SkPathOpsCubic.h -FILE: ../../../third_party/skia/src/pathops/SkPathOpsCurve.h -FILE: ../../../third_party/skia/src/pathops/SkPathOpsLine.cpp -FILE: ../../../third_party/skia/src/pathops/SkPathOpsLine.h -FILE: ../../../third_party/skia/src/pathops/SkPathOpsOp.cpp -FILE: ../../../third_party/skia/src/pathops/SkPathOpsPoint.cpp -FILE: ../../../third_party/skia/src/pathops/SkPathOpsPoint.h -FILE: ../../../third_party/skia/src/pathops/SkPathOpsQuad.cpp -FILE: ../../../third_party/skia/src/pathops/SkPathOpsQuad.h -FILE: ../../../third_party/skia/src/pathops/SkPathOpsRect.cpp -FILE: ../../../third_party/skia/src/pathops/SkPathOpsRect.h -FILE: ../../../third_party/skia/src/pathops/SkPathOpsSimplify.cpp -FILE: ../../../third_party/skia/src/pathops/SkPathOpsTypes.cpp -FILE: ../../../third_party/skia/src/pathops/SkPathOpsTypes.h -FILE: ../../../third_party/skia/src/pathops/SkPathWriter.cpp -FILE: ../../../third_party/skia/src/pathops/SkPathWriter.h -FILE: ../../../third_party/skia/src/pathops/SkReduceOrder.cpp -FILE: ../../../third_party/skia/src/pathops/SkReduceOrder.h -FILE: ../../../third_party/skia/src/sfnt/SkIBMFamilyClass.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTableTypes.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_V0.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_V1.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_V2.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_V3.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_V4.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_OS_2_VA.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_glyf.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_head.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_hhea.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_loca.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_maxp.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_maxp_CFF.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_maxp_TT.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_name.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_post.h -FILE: ../../../third_party/skia/src/sfnt/SkOTUtils.cpp -FILE: ../../../third_party/skia/src/sfnt/SkOTUtils.h -FILE: ../../../third_party/skia/src/sfnt/SkPanose.h -FILE: ../../../third_party/skia/src/sfnt/SkSFNTHeader.h -FILE: ../../../third_party/skia/src/shaders/gradients/SkGradientShaderPriv.h -FILE: ../../../third_party/skia/src/shaders/gradients/SkLinearGradient.cpp -FILE: ../../../third_party/skia/src/shaders/gradients/SkLinearGradient.h -FILE: ../../../third_party/skia/src/shaders/gradients/SkRadialGradient.cpp -FILE: ../../../third_party/skia/src/shaders/gradients/SkRadialGradient.h -FILE: ../../../third_party/skia/src/shaders/gradients/SkSweepGradient.cpp -FILE: ../../../third_party/skia/src/shaders/gradients/SkSweepGradient.h -FILE: ../../../third_party/skia/src/shaders/gradients/SkTwoPointConicalGradient.cpp -FILE: ../../../third_party/skia/src/shaders/gradients/SkTwoPointConicalGradient.h -FILE: ../../../third_party/skia/src/utils/SkFloatUtils.h -FILE: ../../../third_party/skia/src/utils/SkNullCanvas.cpp -FILE: ../../../third_party/skia/src/utils/mac/SkStream_mac.cpp -FILE: ../../../third_party/skia/src/utils/win/SkDWriteFontFileStream.cpp -FILE: ../../../third_party/skia/src/utils/win/SkDWriteFontFileStream.h -FILE: ../../../third_party/skia/src/utils/win/SkDWriteGeometrySink.cpp -FILE: ../../../third_party/skia/src/utils/win/SkDWriteGeometrySink.h ----------------------------------------------------------------------------------------------------- -Copyright 2012 Google Inc. +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +* 6. Disclaimer of Warranty - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +* Covered Software is provided under this License on an "as is" +* basis, without warranty of any kind, either expressed, implied, or +* statutory, including, without limitation, warranties that the +* Covered Software is free of defects, merchantable, fit for a +* particular purpose or non-infringing. The entire risk as to the +* quality and performance of the Covered Software is with You. +* Should any Covered Software prove defective in any respect, You +* (not any Contributor) assume the cost of any necessary servicing, +* repair, or correction. This disclaimer of warranty constitutes an +* essential part of this License. No use of any Covered Software is +* authorized under this License except under this disclaimer. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +* 7. Limitation of Liability -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/BigPathBench.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/BigPathBench.cpp -FILE: ../../../third_party/skia/bench/BitmapRegionDecoderBench.cpp -FILE: ../../../third_party/skia/bench/BitmapRegionDecoderBench.h -FILE: ../../../third_party/skia/bench/CodecBench.cpp -FILE: ../../../third_party/skia/bench/CodecBench.h -FILE: ../../../third_party/skia/bench/CodecBenchPriv.h -FILE: ../../../third_party/skia/bench/ControlBench.cpp -FILE: ../../../third_party/skia/bench/DrawBitmapAABench.cpp -FILE: ../../../third_party/skia/bench/ImageBench.cpp -FILE: ../../../third_party/skia/bench/InterpBench.cpp -FILE: ../../../third_party/skia/bench/MathBench.cpp -FILE: ../../../third_party/skia/bench/MipMapBench.cpp -FILE: ../../../third_party/skia/bench/PictureOverheadBench.cpp -FILE: ../../../third_party/skia/bench/SKPAnimationBench.cpp -FILE: ../../../third_party/skia/bench/SKPAnimationBench.h -FILE: ../../../third_party/skia/bench/Sk4fBench.cpp -FILE: ../../../third_party/skia/bench/SkGlyphCacheBench.cpp -FILE: ../../../third_party/skia/bench/StrokeBench.cpp -FILE: ../../../third_party/skia/bench/TextBlobBench.cpp -FILE: ../../../third_party/skia/bench/TopoSortBench.cpp -FILE: ../../../third_party/skia/bench/nanobench.h -FILE: ../../../third_party/skia/dm/DMSrcSink.cpp -FILE: ../../../third_party/skia/dm/DMSrcSink.h -FILE: ../../../third_party/skia/example/SkiaSDLExample.cpp -FILE: ../../../third_party/skia/experimental/c-api-example/skia-c-example.c -FILE: ../../../third_party/skia/experimental/go-demo/main.go -FILE: ../../../third_party/skia/experimental/go-skia/ctypes.go -FILE: ../../../third_party/skia/experimental/go-skia/skia.go -FILE: ../../../third_party/skia/experimental/go-skia/types.go -FILE: ../../../third_party/skia/experimental/tools/coreGraphicsPdf2png.cpp -FILE: ../../../third_party/skia/gm/SkAnimTimer.h -FILE: ../../../third_party/skia/gm/aaxfermodes.cpp -FILE: ../../../third_party/skia/gm/addarc.cpp -FILE: ../../../third_party/skia/gm/all_bitmap_configs.cpp -FILE: ../../../third_party/skia/gm/anisotropic.cpp -FILE: ../../../third_party/skia/gm/annotated_text.cpp -FILE: ../../../third_party/skia/gm/badpaint.cpp -FILE: ../../../third_party/skia/gm/bigrrectaaeffect.cpp -FILE: ../../../third_party/skia/gm/bigtileimagefilter.cpp -FILE: ../../../third_party/skia/gm/blend.cpp -FILE: ../../../third_party/skia/gm/blurredclippedcircle.cpp -FILE: ../../../third_party/skia/gm/bmpfilterqualityrepeat.cpp -FILE: ../../../third_party/skia/gm/concavepaths.cpp -FILE: ../../../third_party/skia/gm/constcolorprocessor.cpp -FILE: ../../../third_party/skia/gm/convex_all_line_paths.cpp -FILE: ../../../third_party/skia/gm/draw_bitmap_rect_skbug4374.cpp -FILE: ../../../third_party/skia/gm/drawable.cpp -FILE: ../../../third_party/skia/gm/drawatlas.cpp -FILE: ../../../third_party/skia/gm/drawatlascolor.cpp -FILE: ../../../third_party/skia/gm/drawfilter.cpp -FILE: ../../../third_party/skia/gm/drawminibitmaprect.cpp -FILE: ../../../third_party/skia/gm/fadefilter.cpp -FILE: ../../../third_party/skia/gm/fontscalerdistortable.cpp -FILE: ../../../third_party/skia/gm/gamma.cpp -FILE: ../../../third_party/skia/gm/image_pict.cpp -FILE: ../../../third_party/skia/gm/image_shader.cpp -FILE: ../../../third_party/skia/gm/imagefilters.cpp -FILE: ../../../third_party/skia/gm/imagefiltersstroked.cpp -FILE: ../../../third_party/skia/gm/imagefilterstransformed.cpp -FILE: ../../../third_party/skia/gm/imagefromyuvtextures.cpp -FILE: ../../../third_party/skia/gm/imagescalealigned.cpp -FILE: ../../../third_party/skia/gm/imagesource2.cpp -FILE: ../../../third_party/skia/gm/largeglyphblur.cpp -FILE: ../../../third_party/skia/gm/lcdblendmodes.cpp -FILE: ../../../third_party/skia/gm/lcdoverlap.cpp -FILE: ../../../third_party/skia/gm/localmatriximagefilter.cpp -FILE: ../../../third_party/skia/gm/localmatriximageshader.cpp -FILE: ../../../third_party/skia/gm/mipmap.cpp -FILE: ../../../third_party/skia/gm/path_stroke_with_zero_length.cpp -FILE: ../../../third_party/skia/gm/pathcontourstart.cpp -FILE: ../../../third_party/skia/gm/pdf_never_embed.cpp -FILE: ../../../third_party/skia/gm/perspshaders.cpp -FILE: ../../../third_party/skia/gm/pictureimagegenerator.cpp -FILE: ../../../third_party/skia/gm/pixelsnap.cpp -FILE: ../../../third_party/skia/gm/plus.cpp -FILE: ../../../third_party/skia/gm/repeated_bitmap.cpp -FILE: ../../../third_party/skia/gm/scaledstrokes.cpp -FILE: ../../../third_party/skia/gm/skbug_257.cpp -FILE: ../../../third_party/skia/gm/smallpaths.cpp -FILE: ../../../third_party/skia/gm/stlouisarch.cpp -FILE: ../../../third_party/skia/gm/textblobcolortrans.cpp -FILE: ../../../third_party/skia/gm/textblobgeometrychange.cpp -FILE: ../../../third_party/skia/gm/textblobmixedsizes.cpp -FILE: ../../../third_party/skia/gm/textblobrandomfont.cpp -FILE: ../../../third_party/skia/gm/textblobtransforms.cpp -FILE: ../../../third_party/skia/gm/textblobuseaftergpufree.cpp -FILE: ../../../third_party/skia/gm/transparency.cpp -FILE: ../../../third_party/skia/include/android/SkBRDAllocator.h -FILE: ../../../third_party/skia/include/android/SkBitmapRegionDecoder.h -FILE: ../../../third_party/skia/include/codec/SkAndroidCodec.h -FILE: ../../../third_party/skia/include/codec/SkCodec.h -FILE: ../../../third_party/skia/include/core/SkEncodedImageFormat.h -FILE: ../../../third_party/skia/include/core/SkFilterQuality.h -FILE: ../../../third_party/skia/include/core/SkPixmap.h -FILE: ../../../third_party/skia/include/core/SkPngChunkReader.h -FILE: ../../../third_party/skia/include/core/SkPoint3.h -FILE: ../../../third_party/skia/include/core/SkRSXform.h -FILE: ../../../third_party/skia/include/core/SkRWBuffer.h -FILE: ../../../third_party/skia/include/core/SkTraceMemoryDump.h -FILE: ../../../third_party/skia/include/effects/SkImageSource.h -FILE: ../../../third_party/skia/include/effects/SkTableColorFilter.h -FILE: ../../../third_party/skia/include/gpu/GrContextOptions.h -FILE: ../../../third_party/skia/include/gpu/GrSamplerState.h -FILE: ../../../third_party/skia/include/gpu/gl/GrGLTypes.h -FILE: ../../../third_party/skia/include/gpu/vk/GrVkInterface.h -FILE: ../../../third_party/skia/include/ports/SkFontMgr_android.h -FILE: ../../../third_party/skia/include/ports/SkFontMgr_directory.h -FILE: ../../../third_party/skia/include/ports/SkFontMgr_empty.h -FILE: ../../../third_party/skia/include/ports/SkFontMgr_fontconfig.h -FILE: ../../../third_party/skia/include/private/SkAtomics.h -FILE: ../../../third_party/skia/include/private/SkMutex.h -FILE: ../../../third_party/skia/include/private/SkSemaphore.h -FILE: ../../../third_party/skia/include/private/SkSpinlock.h -FILE: ../../../third_party/skia/include/private/SkTHash.h -FILE: ../../../third_party/skia/include/private/SkThreadID.h -FILE: ../../../third_party/skia/include/svg/SkSVGCanvas.h -FILE: ../../../third_party/skia/include/utils/SkPaintFilterCanvas.h -FILE: ../../../third_party/skia/samplecode/PerlinPatch.cpp -FILE: ../../../third_party/skia/samplecode/SampleAAGeometry.cpp -FILE: ../../../third_party/skia/samplecode/SampleAnimatedText.cpp -FILE: ../../../third_party/skia/samplecode/SampleAtlas.cpp -FILE: ../../../third_party/skia/samplecode/SampleClipDrawMatch.cpp -FILE: ../../../third_party/skia/samplecode/SampleFilterQuality.cpp -FILE: ../../../third_party/skia/samplecode/SamplePathFuzz.cpp -FILE: ../../../third_party/skia/samplecode/SampleShip.cpp -FILE: ../../../third_party/skia/samplecode/SampleXfer.cpp -FILE: ../../../third_party/skia/src/android/SkBitmapRegionCodec.cpp -FILE: ../../../third_party/skia/src/android/SkBitmapRegionCodec.h -FILE: ../../../third_party/skia/src/android/SkBitmapRegionDecoder.cpp -FILE: ../../../third_party/skia/src/android/SkBitmapRegionDecoderPriv.h -FILE: ../../../third_party/skia/src/c/sk_c_from_to.h -FILE: ../../../third_party/skia/src/c/sk_paint.cpp -FILE: ../../../third_party/skia/src/c/sk_types_priv.h -FILE: ../../../third_party/skia/src/codec/SkAndroidCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkBmpCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkBmpCodec.h -FILE: ../../../third_party/skia/src/codec/SkBmpMaskCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkBmpMaskCodec.h -FILE: ../../../third_party/skia/src/codec/SkBmpRLECodec.cpp -FILE: ../../../third_party/skia/src/codec/SkBmpRLECodec.h -FILE: ../../../third_party/skia/src/codec/SkBmpStandardCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkBmpStandardCodec.h -FILE: ../../../third_party/skia/src/codec/SkCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkCodecImageGenerator.cpp -FILE: ../../../third_party/skia/src/codec/SkCodecImageGenerator.h -FILE: ../../../third_party/skia/src/codec/SkGifCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkGifCodec.h -FILE: ../../../third_party/skia/src/codec/SkIcoCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkIcoCodec.h -FILE: ../../../third_party/skia/src/codec/SkJpegCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkJpegCodec.h -FILE: ../../../third_party/skia/src/codec/SkJpegDecoderMgr.cpp -FILE: ../../../third_party/skia/src/codec/SkJpegDecoderMgr.h -FILE: ../../../third_party/skia/src/codec/SkJpegUtility.cpp -FILE: ../../../third_party/skia/src/codec/SkJpegUtility.h -FILE: ../../../third_party/skia/src/codec/SkMaskSwizzler.cpp -FILE: ../../../third_party/skia/src/codec/SkMaskSwizzler.h -FILE: ../../../third_party/skia/src/codec/SkMasks.cpp -FILE: ../../../third_party/skia/src/codec/SkMasks.h -FILE: ../../../third_party/skia/src/codec/SkPngCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkPngCodec.h -FILE: ../../../third_party/skia/src/codec/SkSampledCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkSampledCodec.h -FILE: ../../../third_party/skia/src/codec/SkSampler.cpp -FILE: ../../../third_party/skia/src/codec/SkSampler.h -FILE: ../../../third_party/skia/src/codec/SkSwizzler.cpp -FILE: ../../../third_party/skia/src/codec/SkSwizzler.h -FILE: ../../../third_party/skia/src/codec/SkWbmpCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkWbmpCodec.h -FILE: ../../../third_party/skia/src/codec/SkWebpAdapterCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkWebpAdapterCodec.h -FILE: ../../../third_party/skia/src/codec/SkWebpCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkWebpCodec.h -FILE: ../../../third_party/skia/src/core/Sk4px.h -FILE: ../../../third_party/skia/src/core/SkBigPicture.cpp -FILE: ../../../third_party/skia/src/core/SkBigPicture.h -FILE: ../../../third_party/skia/src/core/SkBitmapController.cpp -FILE: ../../../third_party/skia/src/core/SkBitmapController.h -FILE: ../../../third_party/skia/src/core/SkBitmapProvider.cpp -FILE: ../../../third_party/skia/src/core/SkBitmapProvider.h -FILE: ../../../third_party/skia/src/core/SkFindAndPlaceGlyph.h -FILE: ../../../third_party/skia/src/core/SkFontMgr.cpp -FILE: ../../../third_party/skia/src/core/SkImageCacherator.h -FILE: ../../../third_party/skia/src/core/SkLatticeIter.cpp -FILE: ../../../third_party/skia/src/core/SkLatticeIter.h -FILE: ../../../third_party/skia/src/core/SkLocalMatrixImageFilter.cpp -FILE: ../../../third_party/skia/src/core/SkMiniRecorder.cpp -FILE: ../../../third_party/skia/src/core/SkMiniRecorder.h -FILE: ../../../third_party/skia/src/core/SkNextID.h -FILE: ../../../third_party/skia/src/core/SkNx.h -FILE: ../../../third_party/skia/src/core/SkOpts.cpp -FILE: ../../../third_party/skia/src/core/SkOpts.h -FILE: ../../../third_party/skia/src/core/SkPathPriv.h -FILE: ../../../third_party/skia/src/core/SkPictureCommon.h -FILE: ../../../third_party/skia/src/core/SkPictureImageGenerator.cpp -FILE: ../../../third_party/skia/src/core/SkPictureImageGenerator.h -FILE: ../../../third_party/skia/src/core/SkPixmap.cpp -FILE: ../../../third_party/skia/src/core/SkPixmapPriv.h -FILE: ../../../third_party/skia/src/core/SkPoint3.cpp -FILE: ../../../third_party/skia/src/core/SkRWBuffer.cpp -FILE: ../../../third_party/skia/src/core/SkRecord.cpp -FILE: ../../../third_party/skia/src/core/SkRecordPattern.h -FILE: ../../../third_party/skia/src/core/SkRecords.cpp -FILE: ../../../third_party/skia/src/core/SkSemaphore.cpp -FILE: ../../../third_party/skia/src/core/SkSharedMutex.cpp -FILE: ../../../third_party/skia/src/core/SkSharedMutex.h -FILE: ../../../third_party/skia/src/core/SkSpinlock.cpp -FILE: ../../../third_party/skia/src/core/SkTDPQueue.h -FILE: ../../../third_party/skia/src/core/SkTTopoSort.h -FILE: ../../../third_party/skia/src/core/SkTextBlobRunIterator.h -FILE: ../../../third_party/skia/src/core/SkThreadID.cpp -FILE: ../../../third_party/skia/src/core/SkTime.cpp -FILE: ../../../third_party/skia/src/core/SkXfermodeInterpretation.cpp -FILE: ../../../third_party/skia/src/core/SkXfermodeInterpretation.h -FILE: ../../../third_party/skia/src/core/SkYUVPlanesCache.cpp -FILE: ../../../third_party/skia/src/core/SkYUVPlanesCache.h -FILE: ../../../third_party/skia/src/effects/SkImageSource.cpp -FILE: ../../../third_party/skia/src/effects/SkTableColorFilter.cpp -FILE: ../../../third_party/skia/src/gpu/GrAutoLocaleSetter.h -FILE: ../../../third_party/skia/src/gpu/GrBlend.cpp -FILE: ../../../third_party/skia/src/gpu/GrBlurUtils.cpp -FILE: ../../../third_party/skia/src/gpu/GrBlurUtils.h -FILE: ../../../third_party/skia/src/gpu/GrCaps.cpp -FILE: ../../../third_party/skia/src/gpu/GrDrawOpAtlas.cpp -FILE: ../../../third_party/skia/src/gpu/GrDrawOpAtlas.h -FILE: ../../../third_party/skia/src/gpu/GrDrawOpTest.cpp -FILE: ../../../third_party/skia/src/gpu/GrDrawOpTest.h -FILE: ../../../third_party/skia/src/gpu/GrDrawingManager.cpp -FILE: ../../../third_party/skia/src/gpu/GrDrawingManager.h -FILE: ../../../third_party/skia/src/gpu/GrFragmentProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/GrGpuFactory.h -FILE: ../../../third_party/skia/src/gpu/GrGpuResourcePriv.h -FILE: ../../../third_party/skia/src/gpu/GrMesh.h -FILE: ../../../third_party/skia/src/gpu/GrNonAtomicRef.h -FILE: ../../../third_party/skia/src/gpu/GrOpFlushState.cpp -FILE: ../../../third_party/skia/src/gpu/GrOpFlushState.h -FILE: ../../../third_party/skia/src/gpu/GrPipeline.cpp -FILE: ../../../third_party/skia/src/gpu/GrPipeline.h -FILE: ../../../third_party/skia/src/gpu/GrProcessorUnitTest.cpp -FILE: ../../../third_party/skia/src/gpu/GrQuad.h -FILE: ../../../third_party/skia/src/gpu/GrRenderTargetContext.cpp -FILE: ../../../third_party/skia/src/gpu/GrRenderTargetContext.h -FILE: ../../../third_party/skia/src/gpu/GrRenderTargetPriv.h -FILE: ../../../third_party/skia/src/gpu/GrResourceProvider.cpp -FILE: ../../../third_party/skia/src/gpu/GrResourceProvider.h -FILE: ../../../third_party/skia/src/gpu/GrTessellator.cpp -FILE: ../../../third_party/skia/src/gpu/GrTessellator.h -FILE: ../../../third_party/skia/src/gpu/GrTestUtils.cpp -FILE: ../../../third_party/skia/src/gpu/GrTestUtils.h -FILE: ../../../third_party/skia/src/gpu/GrXferProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/GrYUVProvider.cpp -FILE: ../../../third_party/skia/src/gpu/GrYUVProvider.h -FILE: ../../../third_party/skia/src/gpu/SkGpuDevice_drawTexture.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrCustomXfermode.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrCustomXfermode.h -FILE: ../../../third_party/skia/src/gpu/effects/GrXfermodeFragmentProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrXfermodeFragmentProcessor.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLTextureRenderTarget.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLUniformHandler.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLUniformHandler.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLVaryingHandler.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLVaryingHandler.h -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLBlend.cpp -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLBlend.h -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLFragmentProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLProgramBuilder.cpp -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLProgramBuilder.h -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLProgramDataManager.h -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLUniformHandler.h -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLUtil.cpp -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLUtil.h -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLVarying.cpp -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLVarying.h -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLXferProcessor.h -FILE: ../../../third_party/skia/src/gpu/ops/GrAAConvexTessellator.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrAAConvexTessellator.h -FILE: ../../../third_party/skia/src/gpu/ops/GrAAFillRectOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrAALinearizingConvexPathRenderer.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrAALinearizingConvexPathRenderer.h -FILE: ../../../third_party/skia/src/gpu/ops/GrAAStrokeRectOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrAtlasTextOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrAtlasTextOp.h -FILE: ../../../third_party/skia/src/gpu/ops/GrClearOp.h -FILE: ../../../third_party/skia/src/gpu/ops/GrCopySurfaceOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrCopySurfaceOp.h -FILE: ../../../third_party/skia/src/gpu/ops/GrDashLinePathRenderer.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrDashLinePathRenderer.h -FILE: ../../../third_party/skia/src/gpu/ops/GrDrawAtlasOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrDrawAtlasOp.h -FILE: ../../../third_party/skia/src/gpu/ops/GrDrawOp.h -FILE: ../../../third_party/skia/src/gpu/ops/GrDrawPathOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrDrawPathOp.h -FILE: ../../../third_party/skia/src/gpu/ops/GrDrawVerticesOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrDrawVerticesOp.h -FILE: ../../../third_party/skia/src/gpu/ops/GrLatticeOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrLatticeOp.h -FILE: ../../../third_party/skia/src/gpu/ops/GrMeshDrawOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrMeshDrawOp.h -FILE: ../../../third_party/skia/src/gpu/ops/GrNonAAStrokeRectOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrOp.h -FILE: ../../../third_party/skia/src/gpu/ops/GrStencilPathOp.h -FILE: ../../../third_party/skia/src/gpu/ops/GrTessellatingPathRenderer.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrTessellatingPathRenderer.h -FILE: ../../../third_party/skia/src/gpu/text/GrAtlasTextBlob.cpp -FILE: ../../../third_party/skia/src/gpu/text/GrAtlasTextBlob.h -FILE: ../../../third_party/skia/src/gpu/text/GrAtlasTextContext.cpp -FILE: ../../../third_party/skia/src/gpu/text/GrAtlasTextContext.h -FILE: ../../../third_party/skia/src/gpu/text/GrDistanceFieldAdjustTable.cpp -FILE: ../../../third_party/skia/src/gpu/text/GrDistanceFieldAdjustTable.h -FILE: ../../../third_party/skia/src/gpu/text/GrGlyphCache.cpp -FILE: ../../../third_party/skia/src/gpu/text/GrGlyphCache.h -FILE: ../../../third_party/skia/src/gpu/text/GrTextBlobCache.cpp -FILE: ../../../third_party/skia/src/gpu/text/GrTextBlobCache.h -FILE: ../../../third_party/skia/src/gpu/text/GrTextUtils.cpp -FILE: ../../../third_party/skia/src/gpu/text/GrTextUtils.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkBackendContext.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkBuffer.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkBuffer.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkCaps.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkCaps.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkCommandBuffer.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkCommandBuffer.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkGpu.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkGpu.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkImage.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkImage.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkIndexBuffer.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkIndexBuffer.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkInterface.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkMemory.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkMemory.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkRenderPass.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkRenderPass.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkRenderTarget.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkRenderTarget.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkResource.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkStencilAttachment.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkStencilAttachment.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkTexture.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkTexture.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkTextureRenderTarget.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkTextureRenderTarget.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkTransferBuffer.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkTransferBuffer.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkUniformBuffer.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkUniformBuffer.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkUtil.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkUtil.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkVertexBuffer.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkVertexBuffer.h -FILE: ../../../third_party/skia/src/image/SkImage_Gpu.h -FILE: ../../../third_party/skia/src/image/SkImage_Lazy.cpp -FILE: ../../../third_party/skia/src/opts/Sk4px_NEON.h -FILE: ../../../third_party/skia/src/opts/Sk4px_SSE2.h -FILE: ../../../third_party/skia/src/opts/Sk4px_none.h -FILE: ../../../third_party/skia/src/opts/SkBlitMask_opts.h -FILE: ../../../third_party/skia/src/opts/SkBlitMask_opts_arm_neon.cpp -FILE: ../../../third_party/skia/src/opts/SkBlitMask_opts_arm_neon.h -FILE: ../../../third_party/skia/src/opts/SkBlitRow_opts.h -FILE: ../../../third_party/skia/src/opts/SkColor_opts_neon.h -FILE: ../../../third_party/skia/src/opts/SkMorphologyImageFilter_opts.h -FILE: ../../../third_party/skia/src/opts/SkNx_neon.h -FILE: ../../../third_party/skia/src/opts/SkNx_sse.h -FILE: ../../../third_party/skia/src/opts/SkOpts_sse41.cpp -FILE: ../../../third_party/skia/src/opts/SkOpts_ssse3.cpp -FILE: ../../../third_party/skia/src/opts/SkXfermode_opts.h -FILE: ../../../third_party/skia/src/pathops/SkDConicLineIntersection.cpp -FILE: ../../../third_party/skia/src/pathops/SkDCubicToQuads.cpp -FILE: ../../../third_party/skia/src/pathops/SkOpCoincidence.cpp -FILE: ../../../third_party/skia/src/pathops/SkPathOpsConic.cpp -FILE: ../../../third_party/skia/src/pathops/SkPathOpsConic.h -FILE: ../../../third_party/skia/src/pathops/SkPathOpsCurve.cpp -FILE: ../../../third_party/skia/src/pathops/SkPathOpsWinding.cpp -FILE: ../../../third_party/skia/src/pdf/SkDocument_PDF_None.cpp -FILE: ../../../third_party/skia/src/pdf/SkJpegInfo.cpp -FILE: ../../../third_party/skia/src/pdf/SkJpegInfo.h -FILE: ../../../third_party/skia/src/pdf/SkPDFBitmap.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFBitmap.h -FILE: ../../../third_party/skia/src/pdf/SkPDFCanon.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFCanon.h -FILE: ../../../third_party/skia/src/pdf/SkPDFMetadata.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFMetadata.h -FILE: ../../../third_party/skia/src/ports/SkFontMgr_android_factory.cpp -FILE: ../../../third_party/skia/src/ports/SkFontMgr_custom_directory_factory.cpp -FILE: ../../../third_party/skia/src/ports/SkFontMgr_custom_embedded_factory.cpp -FILE: ../../../third_party/skia/src/ports/SkFontMgr_fontconfig_factory.cpp -FILE: ../../../third_party/skia/src/ports/SkFontMgr_win_dw_factory.cpp -FILE: ../../../third_party/skia/src/ports/SkOSLibrary.h -FILE: ../../../third_party/skia/src/ports/SkOSLibrary_posix.cpp -FILE: ../../../third_party/skia/src/ports/SkOSLibrary_win.cpp -FILE: ../../../third_party/skia/src/shaders/SkImageShader.cpp -FILE: ../../../third_party/skia/src/shaders/SkImageShader.h -FILE: ../../../third_party/skia/src/svg/SkSVGCanvas.cpp -FILE: ../../../third_party/skia/src/svg/SkSVGDevice.cpp -FILE: ../../../third_party/skia/src/svg/SkSVGDevice.h -FILE: ../../../third_party/skia/src/utils/SkPaintFilterCanvas.cpp -FILE: ../../../third_party/skia/src/utils/SkWhitelistChecksums.inc -FILE: ../../../third_party/skia/src/utils/SkWhitelistTypefaces.cpp -FILE: ../../../third_party/skia/src/xps/SkXPSDocument.cpp ----------------------------------------------------------------------------------------------------- -Copyright 2015 Google Inc. +* Under no circumstances and under no legal theory, whether tort +* (including negligence), contract, or otherwise, shall any +* Contributor, or anyone who distributes Covered Software as +* permitted above, be liable to You for any direct, indirect, +* special, incidental, or consequential damages of any character +* including, without limitation, damages for lost profits, loss of +* goodwill, work stoppage, computer failure or malfunction, or any +* and all other commercial damages or losses, even if such party +* shall have been informed of the possibility of such damages. This +* limitation of liability shall not apply to liability for death or +* personal injury resulting from such party's negligence to the +* extent applicable law prohibits such limitation. Some +* jurisdictions do not allow the exclusion or limitation of +* incidental or consequential damages, so this exclusion and +* limitation may not apply to You. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +8. Litigation - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +9. Miscellaneous -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/BlendmodeBench.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/BlendmodeBench.cpp -FILE: ../../../third_party/skia/bench/BlurImageFilterBench.cpp -FILE: ../../../third_party/skia/bench/BlurRectBench.cpp -FILE: ../../../third_party/skia/bench/BlurRoundRectBench.cpp -FILE: ../../../third_party/skia/bench/ChartBench.cpp -FILE: ../../../third_party/skia/bench/CmapBench.cpp -FILE: ../../../third_party/skia/bench/ColorFilterBench.cpp -FILE: ../../../third_party/skia/bench/ColorPrivBench.cpp -FILE: ../../../third_party/skia/bench/CoverageBench.cpp -FILE: ../../../third_party/skia/bench/DisplacementBench.cpp -FILE: ../../../third_party/skia/bench/FSRectBench.cpp -FILE: ../../../third_party/skia/bench/FontCacheBench.cpp -FILE: ../../../third_party/skia/bench/GrResourceCacheBench.cpp -FILE: ../../../third_party/skia/bench/HairlinePathBench.cpp -FILE: ../../../third_party/skia/bench/ImageCacheBench.cpp -FILE: ../../../third_party/skia/bench/LightingBench.cpp -FILE: ../../../third_party/skia/bench/MagnifierBench.cpp -FILE: ../../../third_party/skia/bench/MemsetBench.cpp -FILE: ../../../third_party/skia/bench/MergeBench.cpp -FILE: ../../../third_party/skia/bench/PerlinNoiseBench.cpp -FILE: ../../../third_party/skia/bench/PremulAndUnpremulAlphaOpsBench.cpp -FILE: ../../../third_party/skia/bench/RectoriBench.cpp -FILE: ../../../third_party/skia/bench/RegionContainBench.cpp -FILE: ../../../third_party/skia/bench/ResultsWriter.h -FILE: ../../../third_party/skia/bench/SortBench.cpp -FILE: ../../../third_party/skia/bench/TileBench.cpp -FILE: ../../../third_party/skia/bench/WritePixelsBench.cpp -FILE: ../../../third_party/skia/bench/gUniqueGlyphIDs.h -FILE: ../../../third_party/skia/dm/DM.cpp -FILE: ../../../third_party/skia/gm/alphagradients.cpp -FILE: ../../../third_party/skia/gm/arcofzorro.cpp -FILE: ../../../third_party/skia/gm/beziereffects.cpp -FILE: ../../../third_party/skia/gm/bigblurs.cpp -FILE: ../../../third_party/skia/gm/bigtext.cpp -FILE: ../../../third_party/skia/gm/bitmappremul.cpp -FILE: ../../../third_party/skia/gm/bitmaprecttest.cpp -FILE: ../../../third_party/skia/gm/bitmapshader.cpp -FILE: ../../../third_party/skia/gm/bleed.cpp -FILE: ../../../third_party/skia/gm/blurquickreject.cpp -FILE: ../../../third_party/skia/gm/blurroundrect.cpp -FILE: ../../../third_party/skia/gm/circularclips.cpp -FILE: ../../../third_party/skia/gm/clippedbitmapshaders.cpp -FILE: ../../../third_party/skia/gm/coloremoji.cpp -FILE: ../../../third_party/skia/gm/conicpaths.cpp -FILE: ../../../third_party/skia/gm/copyTo4444.cpp -FILE: ../../../third_party/skia/gm/displacement.cpp -FILE: ../../../third_party/skia/gm/downsamplebitmap.cpp -FILE: ../../../third_party/skia/gm/dropshadowimagefilter.cpp -FILE: ../../../third_party/skia/gm/dstreadshuffle.cpp -FILE: ../../../third_party/skia/gm/fontcache.cpp -FILE: ../../../third_party/skia/gm/fontmgr.cpp -FILE: ../../../third_party/skia/gm/gm_expectations.h -FILE: ../../../third_party/skia/gm/gradientDirtyLaundry.cpp -FILE: ../../../third_party/skia/gm/gradient_matrix.cpp -FILE: ../../../third_party/skia/gm/gradients_no_texture.cpp -FILE: ../../../third_party/skia/gm/hairlines.cpp -FILE: ../../../third_party/skia/gm/imagealphathreshold.cpp -FILE: ../../../third_party/skia/gm/imagesource.cpp -FILE: ../../../third_party/skia/gm/internal_links.cpp -FILE: ../../../third_party/skia/gm/inversepaths.cpp -FILE: ../../../third_party/skia/gm/lumafilter.cpp -FILE: ../../../third_party/skia/gm/megalooper.cpp -FILE: ../../../third_party/skia/gm/mixedtextblobs.cpp -FILE: ../../../third_party/skia/gm/nested.cpp -FILE: ../../../third_party/skia/gm/nonclosedpaths.cpp -FILE: ../../../third_party/skia/gm/offsetimagefilter.cpp -FILE: ../../../third_party/skia/gm/ovals.cpp -FILE: ../../../third_party/skia/gm/pathopsinverse.cpp -FILE: ../../../third_party/skia/gm/pathopsskpclip.cpp -FILE: ../../../third_party/skia/gm/perlinnoise.cpp -FILE: ../../../third_party/skia/gm/pictureimagefilter.cpp -FILE: ../../../third_party/skia/gm/polygons.cpp -FILE: ../../../third_party/skia/gm/rects.cpp -FILE: ../../../third_party/skia/gm/resizeimagefilter.cpp -FILE: ../../../third_party/skia/gm/roundrects.cpp -FILE: ../../../third_party/skia/gm/shallowgradient.cpp -FILE: ../../../third_party/skia/gm/skbug1719.cpp -FILE: ../../../third_party/skia/gm/spritebitmap.cpp -FILE: ../../../third_party/skia/gm/stringart.cpp -FILE: ../../../third_party/skia/gm/textbloblooper.cpp -FILE: ../../../third_party/skia/gm/thinrects.cpp -FILE: ../../../third_party/skia/gm/thinstrokedrects.cpp -FILE: ../../../third_party/skia/gm/tileimagefilter.cpp -FILE: ../../../third_party/skia/gm/vertices.cpp -FILE: ../../../third_party/skia/gm/xfermodeimagefilter.cpp -FILE: ../../../third_party/skia/gm/xfermodes2.cpp -FILE: ../../../third_party/skia/gm/xfermodes3.cpp -FILE: ../../../third_party/skia/include/core/SkDataTable.h -FILE: ../../../third_party/skia/include/core/SkDocument.h -FILE: ../../../third_party/skia/include/core/SkFontLCDConfig.h -FILE: ../../../third_party/skia/include/core/SkFontStyle.h -FILE: ../../../third_party/skia/include/core/SkImageGenerator.h -FILE: ../../../third_party/skia/include/core/SkImageInfo.h -FILE: ../../../third_party/skia/include/effects/SkAlphaThresholdFilter.h -FILE: ../../../third_party/skia/include/effects/SkComposeImageFilter.h -FILE: ../../../third_party/skia/include/effects/SkDisplacementMapEffect.h -FILE: ../../../third_party/skia/include/effects/SkDropShadowImageFilter.h -FILE: ../../../third_party/skia/include/effects/SkLumaColorFilter.h -FILE: ../../../third_party/skia/include/effects/SkPerlinNoiseShader.h -FILE: ../../../third_party/skia/include/effects/SkTileImageFilter.h -FILE: ../../../third_party/skia/include/gpu/GrBlend.h -FILE: ../../../third_party/skia/include/gpu/GrCaps.h -FILE: ../../../third_party/skia/include/gpu/gl/GrGLExtensions.h -FILE: ../../../third_party/skia/include/ports/SkFontConfigInterface.h -FILE: ../../../third_party/skia/include/ports/SkFontMgr.h -FILE: ../../../third_party/skia/include/private/GrTypesPriv.h -FILE: ../../../third_party/skia/include/private/SkMessageBus.h -FILE: ../../../third_party/skia/include/private/SkOnce.h -FILE: ../../../third_party/skia/include/private/SkTFitsIn.h -FILE: ../../../third_party/skia/include/private/SkTLogic.h -FILE: ../../../third_party/skia/include/utils/SkCanvasStateUtils.h -FILE: ../../../third_party/skia/include/utils/SkFrontBufferedStream.h -FILE: ../../../third_party/skia/include/utils/SkLua.h -FILE: ../../../third_party/skia/include/utils/SkLuaCanvas.h -FILE: ../../../third_party/skia/samplecode/SampleChart.cpp -FILE: ../../../third_party/skia/samplecode/SampleClock.cpp -FILE: ../../../third_party/skia/samplecode/SampleFilterFuzz.cpp -FILE: ../../../third_party/skia/samplecode/SampleLua.cpp -FILE: ../../../third_party/skia/samplecode/SampleManyRects.cpp -FILE: ../../../third_party/skia/samplecode/SamplePdfFileViewer.cpp -FILE: ../../../third_party/skia/samplecode/SampleStringArt.cpp -FILE: ../../../third_party/skia/samplecode/SampleUnpremul.cpp -FILE: ../../../third_party/skia/src/core/SkBitmapDevice.cpp -FILE: ../../../third_party/skia/src/core/SkBitmapDevice.h -FILE: ../../../third_party/skia/src/core/SkBitmapProcState_matrix_template.h -FILE: ../../../third_party/skia/src/core/SkDataTable.cpp -FILE: ../../../third_party/skia/src/core/SkDiscardableMemory.h -FILE: ../../../third_party/skia/src/core/SkDocument.cpp -FILE: ../../../third_party/skia/src/core/SkDrawLooper.cpp -FILE: ../../../third_party/skia/src/core/SkFontStream.h -FILE: ../../../third_party/skia/src/core/SkGpuBlurUtils.cpp -FILE: ../../../third_party/skia/src/core/SkGpuBlurUtils.h -FILE: ../../../third_party/skia/src/core/SkMatrixUtils.h -FILE: ../../../third_party/skia/src/core/SkMipMap.cpp -FILE: ../../../third_party/skia/src/core/SkMipMap.h -FILE: ../../../third_party/skia/src/core/SkPaintPriv.cpp -FILE: ../../../third_party/skia/src/core/SkPaintPriv.h -FILE: ../../../third_party/skia/src/core/SkPathRef.cpp -FILE: ../../../third_party/skia/src/core/SkResourceCache.cpp -FILE: ../../../third_party/skia/src/core/SkResourceCache.h -FILE: ../../../third_party/skia/src/core/SkStreamPriv.h -FILE: ../../../third_party/skia/src/core/SkStringUtils.cpp -FILE: ../../../third_party/skia/src/core/SkStringUtils.h -FILE: ../../../third_party/skia/src/core/SkTDynamicHash.h -FILE: ../../../third_party/skia/src/core/SkTMultiMap.h -FILE: ../../../third_party/skia/src/core/SkTypefacePriv.h -FILE: ../../../third_party/skia/src/core/SkValidatingReadBuffer.h -FILE: ../../../third_party/skia/src/core/SkValidationUtils.h -FILE: ../../../third_party/skia/src/effects/SkAlphaThresholdFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkComposeImageFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkDisplacementMapEffect.cpp -FILE: ../../../third_party/skia/src/effects/SkDropShadowImageFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkLumaColorFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkTileImageFilter.cpp -FILE: ../../../third_party/skia/src/gpu/GrCoordTransform.h -FILE: ../../../third_party/skia/src/gpu/GrGeometryProcessor.h -FILE: ../../../third_party/skia/src/gpu/GrPaint.cpp -FILE: ../../../third_party/skia/src/gpu/GrPathProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/GrPathProcessor.h -FILE: ../../../third_party/skia/src/gpu/GrPrimitiveProcessor.h -FILE: ../../../third_party/skia/src/gpu/GrRectanizer_skyline.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrBezierEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrBezierEffect.h -FILE: ../../../third_party/skia/src/gpu/effects/GrBicubicEffect.h -FILE: ../../../third_party/skia/src/gpu/effects/GrBitmapTextGeoProc.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrBitmapTextGeoProc.h -FILE: ../../../third_party/skia/src/gpu/effects/GrDistanceFieldGeoProc.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrDistanceFieldGeoProc.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLContext.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLContext.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLExtensions.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLVertexArray.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLVertexArray.h -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLFragmentProcessor.h -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLGeometryProcessor.h -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLPrimitiveProcessor.h -FILE: ../../../third_party/skia/src/gpu/ops/GrOvalOpFactory.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrOvalOpFactory.h -FILE: ../../../third_party/skia/src/lazy/SkDiscardableMemoryPool.cpp -FILE: ../../../third_party/skia/src/lazy/SkDiscardableMemoryPool.h -FILE: ../../../third_party/skia/src/pathops/SkOpCoincidence.h -FILE: ../../../third_party/skia/src/pathops/SkOpContour.cpp -FILE: ../../../third_party/skia/src/pathops/SkOpContour.h -FILE: ../../../third_party/skia/src/pathops/SkPathOpsDebug.cpp -FILE: ../../../third_party/skia/src/pathops/SkPathOpsDebug.h -FILE: ../../../third_party/skia/src/pdf/SkPDFResourceDict.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFResourceDict.h -FILE: ../../../third_party/skia/src/ports/SkDiscardableMemory_none.cpp -FILE: ../../../third_party/skia/src/ports/SkFontConfigTypeface.h -FILE: ../../../third_party/skia/src/ports/SkFontMgr_FontConfigInterface.cpp -FILE: ../../../third_party/skia/src/ports/SkOSFile_posix.cpp -FILE: ../../../third_party/skia/src/ports/SkOSFile_win.cpp -FILE: ../../../third_party/skia/src/ports/SkTLS_none.cpp -FILE: ../../../third_party/skia/src/ports/SkTLS_pthread.cpp -FILE: ../../../third_party/skia/src/ports/SkTLS_win.cpp -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_name.cpp -FILE: ../../../third_party/skia/src/sfnt/SkTTCFHeader.h -FILE: ../../../third_party/skia/src/shaders/SkColorFilterShader.cpp -FILE: ../../../third_party/skia/src/shaders/SkPerlinNoiseShader.cpp -FILE: ../../../third_party/skia/src/utils/SkCanvasStack.cpp -FILE: ../../../third_party/skia/src/utils/SkCanvasStack.h -FILE: ../../../third_party/skia/src/utils/SkCanvasStateUtils.cpp -FILE: ../../../third_party/skia/src/utils/SkFrontBufferedStream.cpp -FILE: ../../../third_party/skia/src/utils/SkLua.cpp -FILE: ../../../third_party/skia/src/utils/SkLuaCanvas.cpp ----------------------------------------------------------------------------------------------------- -Copyright 2013 Google Inc. +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +10. Versions of the License - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +10.1. New Versions -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/ClipMaskBench.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/ClipMaskBench.cpp -FILE: ../../../third_party/skia/bench/ClipStrategyBench.cpp -FILE: ../../../third_party/skia/bench/ColorCanvasDrawBitmapBench.cpp -FILE: ../../../third_party/skia/bench/CubicKLMBench.cpp -FILE: ../../../third_party/skia/bench/MultitextureImageBench.cpp -FILE: ../../../third_party/skia/bench/PathTextBench.cpp -FILE: ../../../third_party/skia/bench/ShadowBench.cpp -FILE: ../../../third_party/skia/dm/DMGpuTestProcs.cpp -FILE: ../../../third_party/skia/example/HelloWorld.cpp -FILE: ../../../third_party/skia/example/HelloWorld.h -FILE: ../../../third_party/skia/experimental/skottie/Skottie.cpp -FILE: ../../../third_party/skia/experimental/skottie/Skottie.h -FILE: ../../../third_party/skia/experimental/skottie/SkottieAnimator.cpp -FILE: ../../../third_party/skia/experimental/skottie/SkottieAnimator.h -FILE: ../../../third_party/skia/experimental/skottie/SkottieProperties.cpp -FILE: ../../../third_party/skia/experimental/skottie/SkottieProperties.h -FILE: ../../../third_party/skia/experimental/sksg/SkSGDraw.cpp -FILE: ../../../third_party/skia/experimental/sksg/SkSGDraw.h -FILE: ../../../third_party/skia/experimental/sksg/SkSGEffectNode.cpp -FILE: ../../../third_party/skia/experimental/sksg/SkSGEffectNode.h -FILE: ../../../third_party/skia/experimental/sksg/SkSGGeometryNode.cpp -FILE: ../../../third_party/skia/experimental/sksg/SkSGGeometryNode.h -FILE: ../../../third_party/skia/experimental/sksg/SkSGGroup.cpp -FILE: ../../../third_party/skia/experimental/sksg/SkSGGroup.h -FILE: ../../../third_party/skia/experimental/sksg/SkSGInvalidationController.cpp -FILE: ../../../third_party/skia/experimental/sksg/SkSGInvalidationController.h -FILE: ../../../third_party/skia/experimental/sksg/SkSGNode.cpp -FILE: ../../../third_party/skia/experimental/sksg/SkSGNode.h -FILE: ../../../third_party/skia/experimental/sksg/SkSGPaintNode.cpp -FILE: ../../../third_party/skia/experimental/sksg/SkSGPaintNode.h -FILE: ../../../third_party/skia/experimental/sksg/SkSGRenderNode.cpp -FILE: ../../../third_party/skia/experimental/sksg/SkSGRenderNode.h -FILE: ../../../third_party/skia/experimental/sksg/effects/SkSGTransform.cpp -FILE: ../../../third_party/skia/experimental/sksg/effects/SkSGTransform.h -FILE: ../../../third_party/skia/experimental/sksg/geometry/SkSGMerge.cpp -FILE: ../../../third_party/skia/experimental/sksg/geometry/SkSGMerge.h -FILE: ../../../third_party/skia/experimental/sksg/geometry/SkSGPath.cpp -FILE: ../../../third_party/skia/experimental/sksg/geometry/SkSGPath.h -FILE: ../../../third_party/skia/experimental/sksg/geometry/SkSGRect.cpp -FILE: ../../../third_party/skia/experimental/sksg/geometry/SkSGRect.h -FILE: ../../../third_party/skia/experimental/sksg/geometry/SkSGTrimEffect.cpp -FILE: ../../../third_party/skia/experimental/sksg/geometry/SkSGTrimEffect.h -FILE: ../../../third_party/skia/experimental/sksg/paint/SkSGColor.cpp -FILE: ../../../third_party/skia/experimental/sksg/paint/SkSGColor.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGGradient.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGGradient.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGPattern.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGPattern.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGRadialGradient.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGRadialGradient.h -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGUse.cpp -FILE: ../../../third_party/skia/experimental/svg/model/SkSVGUse.h -FILE: ../../../third_party/skia/fuzz/FuzzCanvas.cpp -FILE: ../../../third_party/skia/gm/alpha_image.cpp -FILE: ../../../third_party/skia/gm/atlastext.cpp -FILE: ../../../third_party/skia/gm/bitmaptiled.cpp -FILE: ../../../third_party/skia/gm/blurignorexform.cpp -FILE: ../../../third_party/skia/gm/blurimagevmask.cpp -FILE: ../../../third_party/skia/gm/blurtextsmallradii.cpp -FILE: ../../../third_party/skia/gm/bug6643.cpp -FILE: ../../../third_party/skia/gm/bug6783.cpp -FILE: ../../../third_party/skia/gm/circle_sizes.cpp -FILE: ../../../third_party/skia/gm/crbug_691386.cpp -FILE: ../../../third_party/skia/gm/crbug_788500.cpp -FILE: ../../../third_party/skia/gm/crosscontextimage.cpp -FILE: ../../../third_party/skia/gm/dftext_blob_persp.cpp -FILE: ../../../third_party/skia/gm/drrect_small_inner.cpp -FILE: ../../../third_party/skia/gm/encode-alpha-jpeg.cpp -FILE: ../../../third_party/skia/gm/flippity.cpp -FILE: ../../../third_party/skia/gm/gammaencodedpremul.cpp -FILE: ../../../third_party/skia/gm/highcontrastfilter.cpp -FILE: ../../../third_party/skia/gm/hsl.cpp -FILE: ../../../third_party/skia/gm/imageblurclampmode.cpp -FILE: ../../../third_party/skia/gm/imageblurrepeatmode.cpp -FILE: ../../../third_party/skia/gm/jpg_color_cube.cpp -FILE: ../../../third_party/skia/gm/makecolorspace.cpp -FILE: ../../../third_party/skia/gm/manypaths.cpp -FILE: ../../../third_party/skia/gm/pictureshadercache.cpp -FILE: ../../../third_party/skia/gm/radial_gradient_precision.cpp -FILE: ../../../third_party/skia/gm/savelayer.cpp -FILE: ../../../third_party/skia/gm/shadowutils.cpp -FILE: ../../../third_party/skia/gm/shapes_as_paths.cpp -FILE: ../../../third_party/skia/gm/simple_magnification.cpp -FILE: ../../../third_party/skia/gm/srgb.cpp -FILE: ../../../third_party/skia/gm/testgradient.cpp -FILE: ../../../third_party/skia/gm/text_scale_skew.cpp -FILE: ../../../third_party/skia/gm/thinconcavepaths.cpp -FILE: ../../../third_party/skia/gm/tonalshadows.cpp -FILE: ../../../third_party/skia/gm/tosrgb_colorfilter.cpp -FILE: ../../../third_party/skia/include/android/SkAndroidFrameworkUtils.h -FILE: ../../../third_party/skia/include/atlastext/SkAtlasTextContext.h -FILE: ../../../third_party/skia/include/atlastext/SkAtlasTextFont.h -FILE: ../../../third_party/skia/include/atlastext/SkAtlasTextRenderer.h -FILE: ../../../third_party/skia/include/atlastext/SkAtlasTextTarget.h -FILE: ../../../third_party/skia/include/codec/SkEncodedOrigin.h -FILE: ../../../third_party/skia/include/core/SkColorSpaceXformCanvas.h -FILE: ../../../third_party/skia/include/core/SkDeferredDisplayListRecorder.h -FILE: ../../../third_party/skia/include/core/SkExecutor.h -FILE: ../../../third_party/skia/include/core/SkFontArguments.h -FILE: ../../../third_party/skia/include/core/SkSerialProcs.h -FILE: ../../../third_party/skia/include/core/SkSurfaceCharacterization.h -FILE: ../../../third_party/skia/include/core/SkVertices.h -FILE: ../../../third_party/skia/include/effects/SkHighContrastFilter.h -FILE: ../../../third_party/skia/include/effects/SkToSRGBColorFilter.h -FILE: ../../../third_party/skia/include/encode/SkEncoder.h -FILE: ../../../third_party/skia/include/encode/SkJpegEncoder.h -FILE: ../../../third_party/skia/include/encode/SkPngEncoder.h -FILE: ../../../third_party/skia/include/encode/SkWebpEncoder.h -FILE: ../../../third_party/skia/include/gpu/GrBackendSemaphore.h -FILE: ../../../third_party/skia/include/gpu/GrBackendSurface.h -FILE: ../../../third_party/skia/include/gpu/mock/GrMockTypes.h -FILE: ../../../third_party/skia/include/gpu/mtl/GrMtlTypes.h -FILE: ../../../third_party/skia/include/private/GrSharedEnums.h -FILE: ../../../third_party/skia/include/private/SkDeferredDisplayList.h -FILE: ../../../third_party/skia/include/private/SkMalloc.h -FILE: ../../../third_party/skia/include/private/SkShadowFlags.h -FILE: ../../../third_party/skia/include/utils/SkShadowUtils.h -FILE: ../../../third_party/skia/samplecode/SampleCCPRGeometry.cpp -FILE: ../../../third_party/skia/samplecode/SampleChineseFling.cpp -FILE: ../../../third_party/skia/samplecode/SampleCowboy.cpp -FILE: ../../../third_party/skia/samplecode/SamplePathText.cpp -FILE: ../../../third_party/skia/samplecode/SampleSGInval.cpp -FILE: ../../../third_party/skia/samplecode/SampleShadowColor.cpp -FILE: ../../../third_party/skia/samplecode/SampleShadowReference.cpp -FILE: ../../../third_party/skia/samplecode/SampleShadowUtils.cpp -FILE: ../../../third_party/skia/src/android/SkAndroidFrameworkUtils.cpp -FILE: ../../../third_party/skia/src/atlastext/SkAtlasTextContext.cpp -FILE: ../../../third_party/skia/src/atlastext/SkAtlasTextTarget.cpp -FILE: ../../../third_party/skia/src/atlastext/SkInternalAtlasTextContext.cpp -FILE: ../../../third_party/skia/src/atlastext/SkInternalAtlasTextContext.h -FILE: ../../../third_party/skia/src/c/sk_effects.cpp -FILE: ../../../third_party/skia/src/codec/SkBmpBaseCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkBmpBaseCodec.h -FILE: ../../../third_party/skia/src/codec/SkFrameHolder.h -FILE: ../../../third_party/skia/src/codec/SkHeifCodec.cpp -FILE: ../../../third_party/skia/src/codec/SkHeifCodec.h -FILE: ../../../third_party/skia/src/codec/SkJpegPriv.h -FILE: ../../../third_party/skia/src/codec/SkPngPriv.h -FILE: ../../../third_party/skia/src/codec/SkStubHeifDecoderAPI.h -FILE: ../../../third_party/skia/src/core/SkArenaAllocList.h -FILE: ../../../third_party/skia/src/core/SkAutoBlitterChoose.h -FILE: ../../../third_party/skia/src/core/SkBitmapProcState_utils.h -FILE: ../../../third_party/skia/src/core/SkBlendMode.cpp -FILE: ../../../third_party/skia/src/core/SkBlitter_RGB565.cpp -FILE: ../../../third_party/skia/src/core/SkClipStackDevice.cpp -FILE: ../../../third_party/skia/src/core/SkClipStackDevice.h -FILE: ../../../third_party/skia/src/core/SkColorSpaceXformCanvas.cpp -FILE: ../../../third_party/skia/src/core/SkColorSpaceXformer.cpp -FILE: ../../../third_party/skia/src/core/SkColorSpaceXformer.h -FILE: ../../../third_party/skia/src/core/SkColorSpace_New.cpp -FILE: ../../../third_party/skia/src/core/SkColorSpace_New.h -FILE: ../../../third_party/skia/src/core/SkCoverageDelta.cpp -FILE: ../../../third_party/skia/src/core/SkCoverageDelta.h -FILE: ../../../third_party/skia/src/core/SkDeferredDisplayListRecorder.cpp -FILE: ../../../third_party/skia/src/core/SkDrawShadowInfo.cpp -FILE: ../../../third_party/skia/src/core/SkDrawShadowInfo.h -FILE: ../../../third_party/skia/src/core/SkDraw_vertices.cpp -FILE: ../../../third_party/skia/src/core/SkExecutor.cpp -FILE: ../../../third_party/skia/src/core/SkFDot6Constants.cpp -FILE: ../../../third_party/skia/src/core/SkFontMgrPriv.h -FILE: ../../../third_party/skia/src/core/SkGaussFilter.cpp -FILE: ../../../third_party/skia/src/core/SkGaussFilter.h -FILE: ../../../third_party/skia/src/core/SkImageFilterPriv.h -FILE: ../../../third_party/skia/src/core/SkImageInfoPriv.h -FILE: ../../../third_party/skia/src/core/SkMaskBlurFilter.cpp -FILE: ../../../third_party/skia/src/core/SkMaskBlurFilter.h -FILE: ../../../third_party/skia/src/core/SkRasterClipStack.h -FILE: ../../../third_party/skia/src/core/SkSafeMath.h -FILE: ../../../third_party/skia/src/core/SkSpriteBlitter_RGB565.cpp -FILE: ../../../third_party/skia/src/core/SkTaskGroup2D.cpp -FILE: ../../../third_party/skia/src/core/SkTaskGroup2D.h -FILE: ../../../third_party/skia/src/core/SkThreadedBMPDevice.cpp -FILE: ../../../third_party/skia/src/core/SkThreadedBMPDevice.h -FILE: ../../../third_party/skia/src/core/SkUnPreMultiplyPriv.h -FILE: ../../../third_party/skia/src/core/SkVertices.cpp -FILE: ../../../third_party/skia/src/core/SkVptr.h -FILE: ../../../third_party/skia/src/core/SkWritePixelsRec.h -FILE: ../../../third_party/skia/src/effects/SkDashImpl.h -FILE: ../../../third_party/skia/src/effects/SkHighContrastFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkToSRGBColorFilter.cpp -FILE: ../../../third_party/skia/src/gpu/GrAHardwareBufferImageGenerator.cpp -FILE: ../../../third_party/skia/src/gpu/GrAHardwareBufferImageGenerator.h -FILE: ../../../third_party/skia/src/gpu/GrBackendSurface.cpp -FILE: ../../../third_party/skia/src/gpu/GrBackendTextureImageGenerator.cpp -FILE: ../../../third_party/skia/src/gpu/GrBackendTextureImageGenerator.h -FILE: ../../../third_party/skia/src/gpu/GrColorSpaceInfo.cpp -FILE: ../../../third_party/skia/src/gpu/GrColorSpaceInfo.h -FILE: ../../../third_party/skia/src/gpu/GrDeferredProxyUploader.h -FILE: ../../../third_party/skia/src/gpu/GrDeferredUpload.h -FILE: ../../../third_party/skia/src/gpu/GrOnFlushResourceProvider.cpp -FILE: ../../../third_party/skia/src/gpu/GrOnFlushResourceProvider.h -FILE: ../../../third_party/skia/src/gpu/GrProcessorSet.cpp -FILE: ../../../third_party/skia/src/gpu/GrProcessorSet.h -FILE: ../../../third_party/skia/src/gpu/GrResourceAllocator.cpp -FILE: ../../../third_party/skia/src/gpu/GrResourceAllocator.h -FILE: ../../../third_party/skia/src/gpu/GrSemaphore.h -FILE: ../../../third_party/skia/src/gpu/GrStencilClip.h -FILE: ../../../third_party/skia/src/gpu/GrSurfaceProxyPriv.h -FILE: ../../../third_party/skia/src/gpu/GrTextureProxyCacheAccess.h -FILE: ../../../third_party/skia/src/gpu/GrTextureProxyPriv.h -FILE: ../../../third_party/skia/src/gpu/SkGr.h -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCAtlas.cpp -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCAtlas.h -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCClipProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCClipProcessor.h -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCCoverageProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCCoverageProcessor.h -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCCoverageProcessor_GSImpl.cpp -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCCoverageProcessor_VSImpl.cpp -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCCubicShader.cpp -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCCubicShader.h -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCGeometry.cpp -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCGeometry.h -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCPathParser.cpp -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCPathParser.h -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCPathProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCPathProcessor.h -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCQuadraticShader.cpp -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCQuadraticShader.h -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCCTriangleShader.h -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCoverageCountingPathRenderer.cpp -FILE: ../../../third_party/skia/src/gpu/ccpr/GrCoverageCountingPathRenderer.h -FILE: ../../../third_party/skia/src/gpu/effects/GrAtlasedShaderHelpers.h -FILE: ../../../third_party/skia/src/gpu/effects/GrBlurredEdgeFragmentProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrBlurredEdgeFragmentProcessor.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrBlurredEdgeFragmentProcessor.h -FILE: ../../../third_party/skia/src/gpu/effects/GrCircleEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrCircleEffect.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrCircleEffect.h -FILE: ../../../third_party/skia/src/gpu/effects/GrEllipseEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrEllipseEffect.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrEllipseEffect.h -FILE: ../../../third_party/skia/src/gpu/effects/GrNonlinearColorSpaceXformEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrNonlinearColorSpaceXformEffect.h -FILE: ../../../third_party/skia/src/gpu/effects/GrSimpleTextureEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrSimpleTextureEffect.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrSimpleTextureEffect.h -FILE: ../../../third_party/skia/src/gpu/gl/GrGLGpuCommandBuffer.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLSemaphore.cpp -FILE: ../../../third_party/skia/src/gpu/gl/GrGLSemaphore.h -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLVertexGeoBuilder.cpp -FILE: ../../../third_party/skia/src/gpu/glsl/GrGLSLVertexGeoBuilder.h -FILE: ../../../third_party/skia/src/gpu/mock/GrMockBuffer.h -FILE: ../../../third_party/skia/src/gpu/mock/GrMockCaps.h -FILE: ../../../third_party/skia/src/gpu/mock/GrMockGpu.cpp -FILE: ../../../third_party/skia/src/gpu/mock/GrMockGpu.h -FILE: ../../../third_party/skia/src/gpu/mock/GrMockGpuCommandBuffer.h -FILE: ../../../third_party/skia/src/gpu/mock/GrMockStencilAttachment.h -FILE: ../../../third_party/skia/src/gpu/mock/GrMockTexture.h -FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlCaps.h -FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlCaps.mm -FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlGpu.h -FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlGpu.mm -FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlRenderTarget.h -FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlRenderTarget.mm -FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlTexture.h -FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlTexture.mm -FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlTrampoline.h -FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlTrampoline.mm -FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlUtil.h -FILE: ../../../third_party/skia/src/gpu/mtl/GrMtlUtil.mm -FILE: ../../../third_party/skia/src/gpu/ops/GrClearOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrDebugMarkerOp.h -FILE: ../../../third_party/skia/src/gpu/ops/GrNonAAFillRectOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrRectOpFactory.h -FILE: ../../../third_party/skia/src/gpu/ops/GrSemaphoreOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrSemaphoreOp.h -FILE: ../../../third_party/skia/src/gpu/ops/GrSimpleMeshDrawOpHelper.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrSimpleMeshDrawOpHelper.h -FILE: ../../../third_party/skia/src/gpu/ops/GrStencilPathOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrTextureOp.cpp -FILE: ../../../third_party/skia/src/gpu/ops/GrTextureOp.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkBufferView.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkBufferView.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkSemaphore.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkSemaphore.h -FILE: ../../../third_party/skia/src/gpu/vk/GrVkTexelBuffer.cpp -FILE: ../../../third_party/skia/src/gpu/vk/GrVkTexelBuffer.h -FILE: ../../../third_party/skia/src/jumper/SkJumper.cpp -FILE: ../../../third_party/skia/src/jumper/SkJumper.h -FILE: ../../../third_party/skia/src/jumper/SkJumper_misc.h -FILE: ../../../third_party/skia/src/opts/SkUtils_opts.h -FILE: ../../../third_party/skia/src/pdf/SkKeyedImage.cpp -FILE: ../../../third_party/skia/src/pdf/SkKeyedImage.h -FILE: ../../../third_party/skia/src/pdf/SkPDFGradientShader.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFGradientShader.h -FILE: ../../../third_party/skia/src/ports/SkFontMgr_custom_directory.cpp -FILE: ../../../third_party/skia/src/ports/SkFontMgr_custom_embedded.cpp -FILE: ../../../third_party/skia/src/ports/SkFontMgr_custom_empty.cpp -FILE: ../../../third_party/skia/src/ports/SkGlobalInitialization_none.cpp -FILE: ../../../third_party/skia/src/ports/SkOSFile_ios.h -FILE: ../../../third_party/skia/src/sfnt/SkOTTable_fvar.h -FILE: ../../../third_party/skia/src/shaders/SkShaderBase.h -FILE: ../../../third_party/skia/src/sksl/SkSLCPP.h -FILE: ../../../third_party/skia/src/sksl/SkSLCPPCodeGenerator.h -FILE: ../../../third_party/skia/src/sksl/SkSLFileOutputStream.h -FILE: ../../../third_party/skia/src/sksl/SkSLHCodeGenerator.h -FILE: ../../../third_party/skia/src/sksl/SkSLLayoutLexer.cpp -FILE: ../../../third_party/skia/src/sksl/SkSLLayoutLexer.h -FILE: ../../../third_party/skia/src/sksl/SkSLLexer.cpp -FILE: ../../../third_party/skia/src/sksl/SkSLLexer.h -FILE: ../../../third_party/skia/src/sksl/SkSLOutputStream.h -FILE: ../../../third_party/skia/src/sksl/SkSLSectionAndParameterHelper.h -FILE: ../../../third_party/skia/src/sksl/SkSLString.cpp -FILE: ../../../third_party/skia/src/sksl/SkSLString.h -FILE: ../../../third_party/skia/src/sksl/SkSLStringStream.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTEnum.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTSwitchCase.h -FILE: ../../../third_party/skia/src/sksl/ast/SkSLASTSwitchStatement.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLEnum.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLSetting.cpp -FILE: ../../../third_party/skia/src/sksl/ir/SkSLSwitchCase.h -FILE: ../../../third_party/skia/src/sksl/ir/SkSLSwitchStatement.h -FILE: ../../../third_party/skia/src/sksl/lex/DFA.h -FILE: ../../../third_party/skia/src/sksl/lex/DFAState.h -FILE: ../../../third_party/skia/src/sksl/lex/LexUtil.h -FILE: ../../../third_party/skia/src/sksl/lex/Main.cpp -FILE: ../../../third_party/skia/src/sksl/lex/NFA.cpp -FILE: ../../../third_party/skia/src/sksl/lex/NFA.h -FILE: ../../../third_party/skia/src/sksl/lex/NFAState.h -FILE: ../../../third_party/skia/src/sksl/lex/NFAtoDFA.h -FILE: ../../../third_party/skia/src/sksl/lex/RegexNode.cpp -FILE: ../../../third_party/skia/src/sksl/lex/RegexNode.h -FILE: ../../../third_party/skia/src/sksl/lex/RegexParser.cpp -FILE: ../../../third_party/skia/src/sksl/lex/RegexParser.h -FILE: ../../../third_party/skia/src/sksl/sksl_enums.inc -FILE: ../../../third_party/skia/src/utils/SkFloatToDecimal.cpp -FILE: ../../../third_party/skia/src/utils/SkFloatToDecimal.h -FILE: ../../../third_party/skia/src/utils/SkInsetConvexPolygon.cpp -FILE: ../../../third_party/skia/src/utils/SkInsetConvexPolygon.h -FILE: ../../../third_party/skia/src/utils/SkJSONWriter.cpp -FILE: ../../../third_party/skia/src/utils/SkJSONWriter.h -FILE: ../../../third_party/skia/src/utils/SkShadowTessellator.cpp -FILE: ../../../third_party/skia/src/utils/SkShadowTessellator.h -FILE: ../../../third_party/skia/src/utils/SkShadowUtils.cpp -FILE: ../../../third_party/skia/src/utils/SkThreadUtils_pthread.cpp -FILE: ../../../third_party/skia/src/utils/SkThreadUtils_win.cpp -FILE: ../../../third_party/skia/src/xps/SkXPSDocument.h ----------------------------------------------------------------------------------------------------- -Copyright 2017 Google Inc. +10.2. Effect of New Versions -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +10.3. Modified Versions -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/bench/ReadPixBench.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/bench/ReadPixBench.cpp -FILE: ../../../third_party/skia/bench/WriterBench.cpp -FILE: ../../../third_party/skia/include/effects/SkColorFilterImageFilter.h -FILE: ../../../third_party/skia/include/effects/SkLightingImageFilter.h -FILE: ../../../third_party/skia/include/effects/SkMagnifierImageFilter.h -FILE: ../../../third_party/skia/include/effects/SkMatrixConvolutionImageFilter.h -FILE: ../../../third_party/skia/include/effects/SkMergeImageFilter.h -FILE: ../../../third_party/skia/include/effects/SkMorphologyImageFilter.h -FILE: ../../../third_party/skia/include/effects/SkOffsetImageFilter.h -FILE: ../../../third_party/skia/src/core/SkImageFilter.cpp -FILE: ../../../third_party/skia/src/core/SkUtilsArm.cpp -FILE: ../../../third_party/skia/src/core/SkUtilsArm.h -FILE: ../../../third_party/skia/src/effects/SkColorFilterImageFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkLightingImageFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkMagnifierImageFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkMatrixConvolutionImageFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkMergeImageFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkMorphologyImageFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkOffsetImageFilter.cpp -FILE: ../../../third_party/skia/src/images/SkImageEncoderFns.h -FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_filter_neon.h -FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_opts_SSSE3.cpp -FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_opts_SSSE3.h -FILE: ../../../third_party/skia/src/opts/SkBlitRow_opts_SSE2.cpp -FILE: ../../../third_party/skia/src/opts/SkBlitRow_opts_arm.cpp -FILE: ../../../third_party/skia/src/opts/SkBlitRow_opts_arm_neon.cpp ----------------------------------------------------------------------------------------------------- -Copyright 2012 The Android Open Source Project +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +Exhibit A - Source Code Form License Notice -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/experimental/skottie/SkottieParser.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/experimental/skottie/SkottieParser.cpp -FILE: ../../../third_party/skia/experimental/skottie/SkottieParser.h -FILE: ../../../third_party/skia/experimental/sksg/SkSGImage.cpp -FILE: ../../../third_party/skia/experimental/sksg/SkSGImage.h -FILE: ../../../third_party/skia/experimental/sksg/SkSGScene.cpp -FILE: ../../../third_party/skia/experimental/sksg/SkSGScene.h -FILE: ../../../third_party/skia/experimental/sksg/effects/SkSGClipEffect.cpp -FILE: ../../../third_party/skia/experimental/sksg/effects/SkSGClipEffect.h -FILE: ../../../third_party/skia/experimental/sksg/effects/SkSGMaskEffect.cpp -FILE: ../../../third_party/skia/experimental/sksg/effects/SkSGMaskEffect.h -FILE: ../../../third_party/skia/experimental/sksg/effects/SkSGOpacityEffect.cpp -FILE: ../../../third_party/skia/experimental/sksg/effects/SkSGOpacityEffect.h -FILE: ../../../third_party/skia/experimental/sksg/geometry/SkSGGeometryTransform.cpp -FILE: ../../../third_party/skia/experimental/sksg/geometry/SkSGGeometryTransform.h -FILE: ../../../third_party/skia/experimental/sksg/geometry/SkSGPlane.cpp -FILE: ../../../third_party/skia/experimental/sksg/geometry/SkSGPlane.h -FILE: ../../../third_party/skia/experimental/sksg/geometry/SkSGText.cpp -FILE: ../../../third_party/skia/experimental/sksg/geometry/SkSGText.h -FILE: ../../../third_party/skia/experimental/sksg/paint/SkSGGradient.cpp -FILE: ../../../third_party/skia/experimental/sksg/paint/SkSGGradient.h -FILE: ../../../third_party/skia/fuzz/FuzzCommon.cpp -FILE: ../../../third_party/skia/fuzz/FuzzPathMeasure.cpp -FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzImageFilterDeserialize.cpp -FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzPathDeserialize.cpp -FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzRegionDeserialize.cpp -FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzRegionSetPath.cpp -FILE: ../../../third_party/skia/gm/hugepath.cpp -FILE: ../../../third_party/skia/gm/makeRasterImage.cpp -FILE: ../../../third_party/skia/gm/orientation.cpp -FILE: ../../../third_party/skia/gm/scaledemoji.cpp -FILE: ../../../third_party/skia/gm/shadermaskfilter.cpp -FILE: ../../../third_party/skia/gm/sharedcorners.cpp -FILE: ../../../third_party/skia/include/android/SkAnimatedImage.h -FILE: ../../../third_party/skia/include/core/SkCanvasVirtualEnforcer.h -FILE: ../../../third_party/skia/include/core/SkCoverageMode.h -FILE: ../../../third_party/skia/include/effects/SkShaderMaskFilter.h -FILE: ../../../third_party/skia/include/effects/SkTrimPathEffect.h -FILE: ../../../third_party/skia/include/private/GrSurfaceProxyRef.h -FILE: ../../../third_party/skia/include/private/SkSafe32.h -FILE: ../../../third_party/skia/infra/cts/run_testlab.go -FILE: ../../../third_party/skia/samplecode/SampleAnimatedImage.cpp -FILE: ../../../third_party/skia/samplecode/SampleFlutterAnimate.cpp -FILE: ../../../third_party/skia/src/android/SkAnimatedImage.cpp -FILE: ../../../third_party/skia/src/core/SkBlurPriv.h -FILE: ../../../third_party/skia/src/core/SkCanvasPriv.cpp -FILE: ../../../third_party/skia/src/core/SkCoverageModePriv.h -FILE: ../../../third_party/skia/src/core/SkCubicMap.cpp -FILE: ../../../third_party/skia/src/core/SkCubicMap.h -FILE: ../../../third_party/skia/src/core/SkDeferredDisplayList.cpp -FILE: ../../../third_party/skia/src/core/SkGlyph.cpp -FILE: ../../../third_party/skia/src/core/SkMaskFilterBase.h -FILE: ../../../third_party/skia/src/core/SkPath_serial.cpp -FILE: ../../../third_party/skia/src/core/SkRRectPriv.h -FILE: ../../../third_party/skia/src/core/SkRectPriv.h -FILE: ../../../third_party/skia/src/core/SkRemoteGlyphCache.cpp -FILE: ../../../third_party/skia/src/core/SkRemoteGlyphCache.h -FILE: ../../../third_party/skia/src/core/SkSafeRange.h -FILE: ../../../third_party/skia/src/core/SkTypeface_remote.cpp -FILE: ../../../third_party/skia/src/core/SkTypeface_remote.h -FILE: ../../../third_party/skia/src/effects/GrAlphaThresholdFragmentProcessor.cpp -FILE: ../../../third_party/skia/src/effects/GrAlphaThresholdFragmentProcessor.fp -FILE: ../../../third_party/skia/src/effects/GrAlphaThresholdFragmentProcessor.h -FILE: ../../../third_party/skia/src/effects/SkShaderMaskFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkTrimPE.h -FILE: ../../../third_party/skia/src/effects/SkTrimPathEffect.cpp -FILE: ../../../third_party/skia/src/gpu/GrDDLContext.cpp -FILE: ../../../third_party/skia/src/gpu/GrDirectContext.cpp -FILE: ../../../third_party/skia/src/gpu/GrFPArgs.h -FILE: ../../../third_party/skia/src/gpu/GrProxyProvider.cpp -FILE: ../../../third_party/skia/src/gpu/GrProxyProvider.h -FILE: ../../../third_party/skia/src/gpu/GrResourceProviderPriv.h -FILE: ../../../third_party/skia/src/gpu/GrSurfaceProxyRef.cpp -FILE: ../../../third_party/skia/src/gpu/GrUninstantiateProxyTracker.cpp -FILE: ../../../third_party/skia/src/gpu/GrUninstantiateProxyTracker.h -FILE: ../../../third_party/skia/src/gpu/effects/GrAARectEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrAARectEffect.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrAARectEffect.h -FILE: ../../../third_party/skia/src/gpu/effects/GrArithmeticFP.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrArithmeticFP.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrArithmeticFP.h -FILE: ../../../third_party/skia/src/gpu/effects/GrCircleBlurFragmentProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrCircleBlurFragmentProcessor.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrCircleBlurFragmentProcessor.h -FILE: ../../../third_party/skia/src/gpu/effects/GrConfigConversionEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrConfigConversionEffect.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrConfigConversionEffect.h -FILE: ../../../third_party/skia/src/gpu/effects/GrConstColorProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrConstColorProcessor.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrConstColorProcessor.h -FILE: ../../../third_party/skia/src/gpu/effects/GrDitherEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrDitherEffect.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrDitherEffect.h -FILE: ../../../third_party/skia/src/gpu/effects/GrLumaColorFilterEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrLumaColorFilterEffect.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrLumaColorFilterEffect.h -FILE: ../../../third_party/skia/src/gpu/effects/GrMagnifierEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrMagnifierEffect.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrMagnifierEffect.h -FILE: ../../../third_party/skia/src/gpu/effects/GrOverdrawFragmentProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrOverdrawFragmentProcessor.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrOverdrawFragmentProcessor.h -FILE: ../../../third_party/skia/src/gpu/effects/GrPremulInputFragmentProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrPremulInputFragmentProcessor.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrPremulInputFragmentProcessor.h -FILE: ../../../third_party/skia/src/gpu/effects/GrRRectBlurEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrRRectBlurEffect.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrRRectBlurEffect.h -FILE: ../../../third_party/skia/src/gpu/effects/GrRectBlurEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrRectBlurEffect.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrRectBlurEffect.h -FILE: ../../../third_party/skia/src/gpu/effects/GrUnpremulInputFragmentProcessor.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrUnpremulInputFragmentProcessor.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrUnpremulInputFragmentProcessor.h -FILE: ../../../third_party/skia/src/gpu/effects/GrYUVtoRGBEffect.cpp -FILE: ../../../third_party/skia/src/gpu/effects/GrYUVtoRGBEffect.fp -FILE: ../../../third_party/skia/src/gpu/effects/GrYUVtoRGBEffect.h -FILE: ../../../third_party/skia/src/gpu/text/GrAtlasManager.cpp -FILE: ../../../third_party/skia/src/gpu/text/GrAtlasManager.h -FILE: ../../../third_party/skia/src/opts/SkOpts_hsw.cpp -FILE: ../../../third_party/skia/src/opts/SkRasterPipeline_opts.h ----------------------------------------------------------------------------------------------------- -Copyright 2018 Google Inc. +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +You may add additional accurate notices of copyright ownership. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +Exhibit B - "Incompatible With Secondary Licenses" Notice -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. ==================================================================================================== ==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/fuzz/FuzzDrawFunctions.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/fuzz/FuzzDrawFunctions.cpp +LIBRARY: root_certificates +ORIGIN: ../../../third_party/root_certificates/certdata.pem +TYPE: LicenseType.mpl +FILE: ../../../third_party/root_certificates/certdata.pem ---------------------------------------------------------------------------------------------------- -Copyright 2016 Mozilla Foundation +Mozilla Public License +Version 2.0 -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +1. Definitions - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +1.1. “Contributor” -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +means each individual or legal entity that creates, contributes to the creation of, or owns Covered Software. -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/fuzz/oss_fuzz/FuzzAPIImageFilter.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/fuzz/FuzzCommon.h -FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzAPIImageFilter.cpp -FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzAnimatedImage.cpp -FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzDrawFunctions.cpp -FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzGradients.cpp -FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzImage.cpp -FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzPathMeasure.cpp -FILE: ../../../third_party/skia/fuzz/oss_fuzz/FuzzTextBlobDeserialize.cpp ----------------------------------------------------------------------------------------------------- -Copyright 2018 Google, LLC +1.2. “Contributor Version” -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +means the combination of the Contributions of others (if any) used by a Contributor and that particular Contributor’s Contribution. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +1.3. “Contribution” -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +means Covered Software of a particular Contributor. -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/gm/circles.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/gm/circles.cpp ----------------------------------------------------------------------------------------------------- -Copyright 2012 Intel Inc. +1.4. “Covered Software” -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +means Source Code Form to which the initial Contributor has attached the notice in Exhibit A, the Executable Form of such Source Code Form, and Modifications of such Source Code Form, in each case including portions thereof. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +1.5. “Incompatible With Secondary Licenses” -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +means -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/include/config/SkUserConfig.h + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/include/config/SkUserConfig.h -FILE: ../../../third_party/skia/include/core/SkBitmap.h -FILE: ../../../third_party/skia/include/core/SkCanvas.h -FILE: ../../../third_party/skia/include/core/SkColor.h -FILE: ../../../third_party/skia/include/core/SkColorFilter.h -FILE: ../../../third_party/skia/include/core/SkColorPriv.h -FILE: ../../../third_party/skia/include/core/SkDeque.h -FILE: ../../../third_party/skia/include/core/SkFlattenable.h -FILE: ../../../third_party/skia/include/core/SkGraphics.h -FILE: ../../../third_party/skia/include/core/SkMaskFilter.h -FILE: ../../../third_party/skia/include/core/SkMath.h -FILE: ../../../third_party/skia/include/core/SkMatrix.h -FILE: ../../../third_party/skia/include/core/SkMetaData.h -FILE: ../../../third_party/skia/include/core/SkPaint.h -FILE: ../../../third_party/skia/include/core/SkPath.h -FILE: ../../../third_party/skia/include/core/SkPathEffect.h -FILE: ../../../third_party/skia/include/core/SkPathMeasure.h -FILE: ../../../third_party/skia/include/core/SkPoint.h -FILE: ../../../third_party/skia/include/core/SkPostConfig.h -FILE: ../../../third_party/skia/include/core/SkPreConfig.h -FILE: ../../../third_party/skia/include/core/SkRect.h -FILE: ../../../third_party/skia/include/core/SkRefCnt.h -FILE: ../../../third_party/skia/include/core/SkScalar.h -FILE: ../../../third_party/skia/include/core/SkShader.h -FILE: ../../../third_party/skia/include/core/SkStream.h -FILE: ../../../third_party/skia/include/core/SkString.h -FILE: ../../../third_party/skia/include/core/SkTime.h -FILE: ../../../third_party/skia/include/core/SkTypeface.h -FILE: ../../../third_party/skia/include/core/SkTypes.h -FILE: ../../../third_party/skia/include/effects/Sk1DPathEffect.h -FILE: ../../../third_party/skia/include/effects/Sk2DPathEffect.h -FILE: ../../../third_party/skia/include/effects/SkBlurMaskFilter.h -FILE: ../../../third_party/skia/include/effects/SkCornerPathEffect.h -FILE: ../../../third_party/skia/include/effects/SkDashPathEffect.h -FILE: ../../../third_party/skia/include/effects/SkDiscretePathEffect.h -FILE: ../../../third_party/skia/include/effects/SkGradientShader.h -FILE: ../../../third_party/skia/include/effects/SkTableMaskFilter.h -FILE: ../../../third_party/skia/include/private/SkFixed.h -FILE: ../../../third_party/skia/include/private/SkFloatingPoint.h -FILE: ../../../third_party/skia/include/private/SkTDArray.h -FILE: ../../../third_party/skia/include/private/SkTSearch.h -FILE: ../../../third_party/skia/include/private/SkTemplates.h -FILE: ../../../third_party/skia/include/utils/SkCamera.h -FILE: ../../../third_party/skia/include/utils/SkInterpolator.h -FILE: ../../../third_party/skia/include/utils/SkParse.h -FILE: ../../../third_party/skia/include/utils/SkParsePath.h -FILE: ../../../third_party/skia/include/utils/SkRandom.h -FILE: ../../../third_party/skia/include/utils/SkTextBox.h -FILE: ../../../third_party/skia/include/views/SkEvent.h -FILE: ../../../third_party/skia/include/views/SkEventSink.h -FILE: ../../../third_party/skia/include/views/SkKey.h -FILE: ../../../third_party/skia/include/views/SkView.h -FILE: ../../../third_party/skia/src/core/SkAlphaRuns.cpp -FILE: ../../../third_party/skia/src/core/SkAnalyticEdge.cpp -FILE: ../../../third_party/skia/src/core/SkAnalyticEdge.h -FILE: ../../../third_party/skia/src/core/SkAntiRun.h -FILE: ../../../third_party/skia/src/core/SkAutoKern.h -FILE: ../../../third_party/skia/src/core/SkBlitBWMaskTemplate.h -FILE: ../../../third_party/skia/src/core/SkBlitter.cpp -FILE: ../../../third_party/skia/src/core/SkBlitter.h -FILE: ../../../third_party/skia/src/core/SkBlitter_A8.cpp -FILE: ../../../third_party/skia/src/core/SkBlitter_ARGB32.cpp -FILE: ../../../third_party/skia/src/core/SkBlitter_Sprite.cpp -FILE: ../../../third_party/skia/src/core/SkBlurMF.cpp -FILE: ../../../third_party/skia/src/core/SkBlurMask.cpp -FILE: ../../../third_party/skia/src/core/SkBlurMask.h -FILE: ../../../third_party/skia/src/core/SkBuffer.cpp -FILE: ../../../third_party/skia/src/core/SkBuffer.h -FILE: ../../../third_party/skia/src/core/SkColor.cpp -FILE: ../../../third_party/skia/src/core/SkColorData.h -FILE: ../../../third_party/skia/src/core/SkColorFilter.cpp -FILE: ../../../third_party/skia/src/core/SkCoreBlitters.h -FILE: ../../../third_party/skia/src/core/SkDebug.cpp -FILE: ../../../third_party/skia/src/core/SkDeque.cpp -FILE: ../../../third_party/skia/src/core/SkDescriptor.h -FILE: ../../../third_party/skia/src/core/SkDraw.cpp -FILE: ../../../third_party/skia/src/core/SkDraw.h -FILE: ../../../third_party/skia/src/core/SkEdge.cpp -FILE: ../../../third_party/skia/src/core/SkEdge.h -FILE: ../../../third_party/skia/src/core/SkEndian.h -FILE: ../../../third_party/skia/src/core/SkFDot6.h -FILE: ../../../third_party/skia/src/core/SkFDot6Constants.h -FILE: ../../../third_party/skia/src/core/SkGeometry.cpp -FILE: ../../../third_party/skia/src/core/SkGeometry.h -FILE: ../../../third_party/skia/src/core/SkGlyph.h -FILE: ../../../third_party/skia/src/core/SkGlyphCache.cpp -FILE: ../../../third_party/skia/src/core/SkGlyphCache.h -FILE: ../../../third_party/skia/src/core/SkGraphics.cpp -FILE: ../../../third_party/skia/src/core/SkMask.h -FILE: ../../../third_party/skia/src/core/SkMaskFilter.cpp -FILE: ../../../third_party/skia/src/core/SkMatrix.cpp -FILE: ../../../third_party/skia/src/core/SkMetaData.cpp -FILE: ../../../third_party/skia/src/core/SkModeColorFilter.cpp -FILE: ../../../third_party/skia/src/core/SkOSFile.h -FILE: ../../../third_party/skia/src/core/SkPaint.cpp -FILE: ../../../third_party/skia/src/core/SkPath.cpp -FILE: ../../../third_party/skia/src/core/SkPathEffect.cpp -FILE: ../../../third_party/skia/src/core/SkPointPriv.h -FILE: ../../../third_party/skia/src/core/SkRect.cpp -FILE: ../../../third_party/skia/src/core/SkRegion.cpp -FILE: ../../../third_party/skia/src/core/SkRegionPriv.h -FILE: ../../../third_party/skia/src/core/SkRegion_path.cpp -FILE: ../../../third_party/skia/src/core/SkScalerContext.cpp -FILE: ../../../third_party/skia/src/core/SkScalerContext.h -FILE: ../../../third_party/skia/src/core/SkScan.cpp -FILE: ../../../third_party/skia/src/core/SkScanPriv.h -FILE: ../../../third_party/skia/src/core/SkScan_AntiPath.cpp -FILE: ../../../third_party/skia/src/core/SkScan_Hairline.cpp -FILE: ../../../third_party/skia/src/core/SkScan_Path.cpp -FILE: ../../../third_party/skia/src/core/SkSpriteBlitter.h -FILE: ../../../third_party/skia/src/core/SkSpriteBlitter_ARGB32.cpp -FILE: ../../../third_party/skia/src/core/SkStream.cpp -FILE: ../../../third_party/skia/src/core/SkString.cpp -FILE: ../../../third_party/skia/src/core/SkStroke.h -FILE: ../../../third_party/skia/src/core/SkStrokerPriv.cpp -FILE: ../../../third_party/skia/src/core/SkStrokerPriv.h -FILE: ../../../third_party/skia/src/core/SkTSearch.cpp -FILE: ../../../third_party/skia/src/core/SkTSort.h -FILE: ../../../third_party/skia/src/core/SkUtils.cpp -FILE: ../../../third_party/skia/src/core/SkUtils.h -FILE: ../../../third_party/skia/src/core/SkXfermode.cpp -FILE: ../../../third_party/skia/src/core/SkXfermodePriv.h -FILE: ../../../third_party/skia/src/effects/Sk1DPathEffect.cpp -FILE: ../../../third_party/skia/src/effects/Sk2DPathEffect.cpp -FILE: ../../../third_party/skia/src/effects/SkBlurMaskFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkCornerPathEffect.cpp -FILE: ../../../third_party/skia/src/effects/SkDashPathEffect.cpp -FILE: ../../../third_party/skia/src/effects/SkDiscretePathEffect.cpp -FILE: ../../../third_party/skia/src/effects/SkEmbossMask.cpp -FILE: ../../../third_party/skia/src/effects/SkEmbossMask.h -FILE: ../../../third_party/skia/src/effects/SkEmbossMaskFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkEmbossMaskFilter.h -FILE: ../../../third_party/skia/src/images/SkPngEncoder.cpp -FILE: ../../../third_party/skia/src/ports/SkDebug_android.cpp -FILE: ../../../third_party/skia/src/ports/SkDebug_stdio.cpp -FILE: ../../../third_party/skia/src/ports/SkFontHost_FreeType.cpp -FILE: ../../../third_party/skia/src/ports/SkFontHost_mac.cpp -FILE: ../../../third_party/skia/src/ports/SkFontHost_win.cpp -FILE: ../../../third_party/skia/src/ports/SkFontMgr_custom.cpp -FILE: ../../../third_party/skia/src/ports/SkFontMgr_custom.h -FILE: ../../../third_party/skia/src/ports/SkOSFile_stdio.cpp -FILE: ../../../third_party/skia/src/shaders/SkBitmapProcShader.h -FILE: ../../../third_party/skia/src/shaders/SkComposeShader.cpp -FILE: ../../../third_party/skia/src/shaders/SkComposeShader.h -FILE: ../../../third_party/skia/src/shaders/SkShader.cpp -FILE: ../../../third_party/skia/src/shaders/gradients/SkGradientShader.cpp -FILE: ../../../third_party/skia/src/utils/SkBase64.cpp -FILE: ../../../third_party/skia/src/utils/SkBase64.h -FILE: ../../../third_party/skia/src/utils/SkCamera.cpp -FILE: ../../../third_party/skia/src/utils/SkParse.cpp -FILE: ../../../third_party/skia/src/utils/SkParseColor.cpp -FILE: ../../../third_party/skia/src/utils/SkTextBox.cpp -FILE: ../../../third_party/skia/src/views/SkEvent.cpp -FILE: ../../../third_party/skia/src/views/SkEventSink.cpp -FILE: ../../../third_party/skia/src/xml/SkDOM.cpp -FILE: ../../../third_party/skia/src/xml/SkDOM.h -FILE: ../../../third_party/skia/src/xml/SkXMLParser.cpp -FILE: ../../../third_party/skia/src/xml/SkXMLParser.h -FILE: ../../../third_party/skia/src/xml/SkXMLWriter.cpp -FILE: ../../../third_party/skia/src/xml/SkXMLWriter.h ----------------------------------------------------------------------------------------------------- -Copyright 2006 The Android Open Source Project + a. that the initial Contributor has attached the notice described in Exhibit B to the Covered Software; or -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: + b. that the Covered Software was made available under the terms of version 1.1 or earlier of the License, but not also under the terms of a Secondary License. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +1.6. “Executable Form” -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +means any form of the work other than Source Code Form. -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/include/core/SkDrawFilter.h + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/include/core/SkDrawFilter.h -FILE: ../../../third_party/skia/include/core/SkDrawLooper.h -FILE: ../../../third_party/skia/include/effects/SkBlurImageFilter.h -FILE: ../../../third_party/skia/src/core/SkBlurImageFilter.cpp -FILE: ../../../third_party/skia/src/core/SkScan.h -FILE: ../../../third_party/skia/src/core/SkScan_Antihair.cpp -FILE: ../../../third_party/skia/src/core/SkTypeface.cpp -FILE: ../../../third_party/skia/src/ports/SkFontMgr_android_parser.cpp -FILE: ../../../third_party/skia/src/ports/SkFontMgr_android_parser.h ----------------------------------------------------------------------------------------------------- -Copyright 2011 The Android Open Source Project +1.7. “Larger Work” -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +means a work that combines Covered Software with other material, in a separate file or files, that is not Covered Software. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +1.8. “License” -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +means this document. -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/include/core/SkMallocPixelRef.h + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/include/core/SkMallocPixelRef.h -FILE: ../../../third_party/skia/include/core/SkPixelRef.h -FILE: ../../../third_party/skia/include/core/SkUnPreMultiply.h -FILE: ../../../third_party/skia/include/effects/SkBlurDrawLooper.h -FILE: ../../../third_party/skia/include/effects/SkPaintFlagsDrawFilter.h -FILE: ../../../third_party/skia/include/private/SkFloatBits.h -FILE: ../../../third_party/skia/src/core/SkBitmap.cpp -FILE: ../../../third_party/skia/src/core/SkCanvas.cpp -FILE: ../../../third_party/skia/src/core/SkDither.h -FILE: ../../../third_party/skia/src/core/SkMath.cpp -FILE: ../../../third_party/skia/src/core/SkPathMeasure.cpp -FILE: ../../../third_party/skia/src/core/SkPoint.cpp -FILE: ../../../third_party/skia/src/core/SkPtrRecorder.h -FILE: ../../../third_party/skia/src/core/SkReader32.h -FILE: ../../../third_party/skia/src/core/SkStroke.cpp -FILE: ../../../third_party/skia/src/core/SkWriter32.h -FILE: ../../../third_party/skia/src/effects/SkPackBits.h -FILE: ../../../third_party/skia/src/ports/SkFontMgr_empty_factory.cpp -FILE: ../../../third_party/skia/src/ports/SkImageEncoder_CG.cpp -FILE: ../../../third_party/skia/src/utils/SkInterpolator.cpp ----------------------------------------------------------------------------------------------------- -Copyright 2008 The Android Open Source Project +1.9. “Licensable” -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently, any and all of the rights conveyed by this License. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +1.10. “Modifications” -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +means any of the following: -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/include/core/SkPicture.h + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/include/core/SkPicture.h -FILE: ../../../third_party/skia/include/effects/SkColorMatrix.h -FILE: ../../../third_party/skia/include/effects/SkColorMatrixFilter.h -FILE: ../../../third_party/skia/src/core/SkBitmapProcState.h -FILE: ../../../third_party/skia/src/core/SkMask.cpp -FILE: ../../../third_party/skia/src/core/SkPicture.cpp -FILE: ../../../third_party/skia/src/images/SkJpegEncoder.cpp -FILE: ../../../third_party/skia/src/shaders/SkColorShader.h ----------------------------------------------------------------------------------------------------- -Copyright 2007 The Android Open Source Project + a. any file in Source Code Form that results from an addition to, deletion from, or modification of the contents of Covered Software; or -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: + b. any new file in Source Code Form that contains any Covered Software. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +1.11. “Patent Claims” of a Contributor -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +means any patent claim(s), including without limitation, method, process, and apparatus claims, in any patent Licensable by such Contributor that would be infringed, but for the grant of the License, by the making, using, selling, offering for sale, having made, import, or transfer of either its Contributions or its Contributor Version. -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/include/core/SkRegion.h + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/include/core/SkRegion.h ----------------------------------------------------------------------------------------------------- -Copyright 2005 The Android Open Source Project +1.12. “Secondary License” -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +means either the GNU General Public License, Version 2.0, the GNU Lesser General Public License, Version 2.1, the GNU Affero General Public License, Version 3.0, or any later versions of those licenses. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +1.13. “Source Code Form” -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +means the form of the work preferred for making modifications. + +1.14. “You” (or “Your”) + +means an individual or a legal entity exercising rights under this License. For legal entities, “You” includes any entity that controls, is controlled by, or is under common control with You. For purposes of this definition, “control” means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. + +2. License Grants and Conditions + +2.1. Grants -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/include/effects/SkPictureImageFilter.h + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/include/effects/SkPictureImageFilter.h -FILE: ../../../third_party/skia/include/effects/SkXfermodeImageFilter.h -FILE: ../../../third_party/skia/src/effects/SkPictureImageFilter.cpp -FILE: ../../../third_party/skia/src/effects/SkXfermodeImageFilter.cpp ----------------------------------------------------------------------------------------------------- -Copyright 2013 The Android Open Source Project +Each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license: -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: + a. under intellectual property rights (other than patent or trademark) Licensable by such Contributor to use, reproduce, make available, modify, display, perform, distribute, and otherwise exploit its Contributions, either on an unmodified basis, with Modifications, or as part of a Larger Work; and - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + b. under Patent Claims of such Contributor to make, use, sell, offer for sale, have made, import, and otherwise transfer either its Contributions or its Contributor Version. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +2.2. Effective Date -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/include/gpu/GrConfig.h + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/include/gpu/GrConfig.h -FILE: ../../../third_party/skia/include/gpu/GrContext.h -FILE: ../../../third_party/skia/include/gpu/GrTypes.h -FILE: ../../../third_party/skia/include/private/GrColor.h -FILE: ../../../third_party/skia/src/core/SkGlyphCache_Globals.h -FILE: ../../../third_party/skia/src/core/SkImageInfo.cpp -FILE: ../../../third_party/skia/src/core/SkRasterClip.cpp -FILE: ../../../third_party/skia/src/core/SkRasterClip.h -FILE: ../../../third_party/skia/src/gpu/GrAllocator.h -FILE: ../../../third_party/skia/src/gpu/GrBufferAllocPool.cpp -FILE: ../../../third_party/skia/src/gpu/GrBufferAllocPool.h -FILE: ../../../third_party/skia/src/gpu/GrClip.h -FILE: ../../../third_party/skia/src/gpu/GrFixedClip.cpp -FILE: ../../../third_party/skia/src/gpu/GrGlyph.h -FILE: ../../../third_party/skia/src/gpu/GrGpu.cpp -FILE: ../../../third_party/skia/src/gpu/GrRect.h -FILE: ../../../third_party/skia/src/gpu/GrRectanizer.h -FILE: ../../../third_party/skia/src/gpu/GrRectanizer_pow2.cpp -FILE: ../../../third_party/skia/src/gpu/GrRenderTargetOpList.cpp -FILE: ../../../third_party/skia/src/gpu/GrRenderTargetOpList.h -FILE: ../../../third_party/skia/src/gpu/SkGpuDevice.h -FILE: ../../../third_party/skia/src/gpu/SkGr.cpp -FILE: ../../../third_party/skia/src/ports/SkDebug_win.cpp -FILE: ../../../third_party/skia/src/shaders/gradients/SkGradientBitmapCache.cpp -FILE: ../../../third_party/skia/src/shaders/gradients/SkGradientBitmapCache.h -FILE: ../../../third_party/skia/src/views/SkTouchGesture.cpp ----------------------------------------------------------------------------------------------------- -Copyright 2010 Google Inc. +The licenses granted in Section 2.1 with respect to any Contribution become effective for each Contribution on the date the Contributor first distributes such Contribution. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +2.3. Limitations on Grant Scope - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +The licenses granted in this Section 2 are the only rights granted under this License. No additional rights or licenses will be implied from the distribution or licensing of Covered Software under this License. Notwithstanding Section 2.1(b) above, no patent license is granted by a Contributor: -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== + a. for any code that a Contributor has removed from Covered Software; or -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/include/utils/SkEventTracer.h + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/include/utils/SkEventTracer.h ----------------------------------------------------------------------------------------------------- -Copyright (C) 2014 Google Inc. All rights reserved. + b. for infringements caused by: (i) Your and any other third party’s modifications of Covered Software, or (ii) the combination of its Contributions with other software (except as part of its Contributor Version); or -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: + c. under Patent Claims infringed by Covered Software in the absence of its Contributions. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +This License does not grant any rights in the trademarks, service marks, or logos of any Contributor (except as may be necessary to comply with the notice requirements in Section 3.4). -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +2.4. Subsequent Licenses -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/infra/bots/ct/ct_skps.isolate + ../../../LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/infra/bots/ct/ct_skps.isolate ----------------------------------------------------------------------------------------------------- -Copyright (c) 2015 The Chromium Authors. All rights reserved. +No Contributor makes additional grants as a result of Your choice to distribute the Covered Software under a subsequent version of this License (see Section 10.2) or under the terms of a Secondary License (if permitted under the terms of Section 3.3). -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +2.5. Representation - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +Each Contributor represents that the Contributor believes its Contributions are its original creation(s) or it has sufficient rights to grant the rights to its Contributions conveyed by this License. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +2.6. Fair Use -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/src/codec/SkCodecPriv.h + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/src/codec/SkCodecPriv.h -FILE: ../../../third_party/skia/src/core/SkLocalMatrixImageFilter.h -FILE: ../../../third_party/skia/src/ports/SkImageGenerator_none.cpp -FILE: ../../../third_party/skia/src/ports/SkImageGenerator_skia.cpp ----------------------------------------------------------------------------------------------------- -Copyright 2015 The Android Open Source Project +This License is not intended to limit any rights You have under applicable copyright doctrines of fair use, fair dealing, or other equivalents. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +2.7. Conditions - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in Section 2.1. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +3. Responsibilities -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/src/codec/SkGifCodec.cpp -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/src/codec/SkGifCodec.cpp ----------------------------------------------------------------------------------------------------- -Copyright (C) 2006 Apple Computer, Inc. All rights reserved. +3.1. Distribution of Source Form -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. +All distribution of Covered Software in Source Code Form, including any Modifications that You create or to which You contribute, must be under the terms of this License. You must inform recipients that the Source Code Form of the Covered Software is governed by the terms of this License, and how they can obtain a copy of this License. You may not attempt to alter or restrict the recipients’ rights in the Source Code Form. -THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY -EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY -OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +3.2. Distribution of Executable Form -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/src/core/SkBitmapProcState_filter.h + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/src/core/SkBitmapProcState_filter.h -FILE: ../../../third_party/skia/src/core/SkColorTable.cpp -FILE: ../../../third_party/skia/src/core/SkCubicClipper.cpp -FILE: ../../../third_party/skia/src/core/SkCubicClipper.h -FILE: ../../../third_party/skia/src/core/SkEdgeClipper.cpp -FILE: ../../../third_party/skia/src/core/SkEdgeClipper.h -FILE: ../../../third_party/skia/src/core/SkFontLCDConfig.cpp -FILE: ../../../third_party/skia/src/core/SkQuadClipper.cpp -FILE: ../../../third_party/skia/src/core/SkQuadClipper.h -FILE: ../../../third_party/skia/src/images/SkImageEncoder.cpp -FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_opts_SSE2.cpp -FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_opts_SSE2.h -FILE: ../../../third_party/skia/src/opts/SkBlitRow_opts_SSE2.h -FILE: ../../../third_party/skia/src/opts/opts_check_x86.cpp ----------------------------------------------------------------------------------------------------- -Copyright 2009 The Android Open Source Project +If You distribute Covered Software in Executable Form then: -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: + a. such Covered Software must also be made available in Source Code Form, as described in Section 3.1, and You must inform recipients of the Executable Form how they can obtain a copy of such Source Code Form by reasonable means in a timely manner, at a charge no more than the cost of distribution to the recipient; and - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + b. You may distribute such Executable Form under the terms of this License, or sublicense it under different terms, provided that the license for the Executable Form does not attempt to limit or alter the recipients’ rights in the Source Code Form under this License. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +3.3. Distribution of a Larger Work -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/src/core/SkBitmapProcState_matrixProcs.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/src/core/SkBitmapProcState_matrixProcs.cpp ----------------------------------------------------------------------------------------------------- -NEON optimized code (C) COPYRIGHT 2009 Motorola +You may create and distribute a Larger Work under terms of Your choice, provided that You also comply with the requirements of this License for the Covered Software. If the Larger Work is a combination of Covered Software with a work governed by one or more Secondary Licenses, and the Covered Software is not Incompatible With Secondary Licenses, this License permits You to additionally distribute such Covered Software under the terms of such Secondary License(s), so that the recipient of the Larger Work may, at their option, further distribute the Covered Software under the terms of either this License or such Secondary License(s). -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +3.4. Notices - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +You may not remove or alter the substance of any license notices (including copyright notices, patent notices, disclaimers of warranty, or limitations of liability) contained within the Source Code Form of the Covered Software, except that You may alter any license notices to the extent required to remedy known factual inaccuracies. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +3.5. Application of Additional Terms -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/src/core/SkBitmapProcState_matrixProcs.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/src/core/SkBitmapProcState_matrixProcs.cpp -FILE: ../../../third_party/skia/src/ports/SkFontMgr_FontConfigInterface_factory.cpp ----------------------------------------------------------------------------------------------------- -Copyright 2008 Google Inc. +You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Software. However, You may do so only on Your own behalf, and not on behalf of any Contributor. You must make it absolutely clear that any such warranty, support, indemnity, or liability obligation is offered by You alone, and You hereby agree to indemnify every Contributor for any liability incurred by such Contributor as a result of warranty, support, indemnity or liability terms You offer. You may include additional disclaimers of warranty and limitations of liability specific to any jurisdiction. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +4. Inability to Comply Due to Statute or Regulation - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Software due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be placed in a text file included with all distributions of the Covered Software under this License. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. + +5. Termination + +5.1. The rights granted under this License will terminate automatically if You fail to comply with any of its terms. However, if You become compliant, then the rights granted under this License from a particular Contributor are reinstated (a) provisionally, unless and until such Contributor explicitly and finally terminates Your grants, and (b) on an ongoing basis, if such Contributor fails to notify You of the non-compliance by some reasonable means prior to 60 days after You have come back into compliance. Moreover, Your grants from a particular Contributor are reinstated on an ongoing basis if such Contributor notifies You of the non-compliance by some reasonable means, this is the first time You have received notice of non-compliance with this License from such Contributor, and You become compliant prior to 30 days after Your receipt of the notice. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +5.2. If You initiate litigation against any entity by asserting a patent infringement claim (excluding declaratory judgment actions, counter-claims, and cross-claims) alleging that a Contributor Version directly or indirectly infringes any patent, then the rights granted to You by any and all Contributors for the Covered Software under Section 2.1 of this License shall terminate. -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/src/core/SkDevice.h + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/src/core/SkDevice.h -FILE: ../../../third_party/skia/src/core/SkScalar.cpp -FILE: ../../../third_party/skia/src/core/SkTextFormatParams.h -FILE: ../../../third_party/skia/src/images/SkJPEGWriteUtility.cpp -FILE: ../../../third_party/skia/src/images/SkJPEGWriteUtility.h -FILE: ../../../third_party/skia/src/pdf/SkDeflate.cpp -FILE: ../../../third_party/skia/src/pdf/SkDeflate.h -FILE: ../../../third_party/skia/src/pdf/SkPDFFormXObject.cpp -FILE: ../../../third_party/skia/src/pdf/SkPDFFormXObject.h -FILE: ../../../third_party/skia/src/pdf/SkPDFGraphicState.h -FILE: ../../../third_party/skia/src/pdf/SkPDFTypes.h ----------------------------------------------------------------------------------------------------- -Copyright 2010 The Android Open Source Project +5.3. In the event of termination under Sections 5.1 or 5.2 above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or Your distributors under this License prior to termination shall survive termination. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +6. Disclaimer of Warranty - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. + Covered Software is provided under this License on an “as is” basis, without warranty of any kind, either expressed, implied, or statutory, including, without limitation, warranties that the Covered Software is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the Covered Software is with You. Should any Covered Software prove defective in any respect, You (not any Contributor) assume the cost of any necessary servicing, repair, or correction. This disclaimer of warranty constitutes an essential part of this License. No use of any Covered Software is authorized under this License except under this disclaimer. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +7. Limitation of Liability -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/src/core/SkMatrixImageFilter.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/src/core/SkMatrixImageFilter.cpp -FILE: ../../../third_party/skia/src/core/SkMatrixImageFilter.h -FILE: ../../../third_party/skia/src/opts/SkColor_opts_SSE2.h ----------------------------------------------------------------------------------------------------- -Copyright 2014 The Android Open Source Project + Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall any Contributor, or anyone who distributes Covered Software as permitted above, be liable to You for any direct, indirect, special, incidental, or consequential damages of any character including, without limitation, damages for lost profits, loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party’s negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +8. Litigation - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +Any litigation relating to this License may be brought only in the courts of a jurisdiction where the defendant maintains its principal place of business and such litigation shall be governed by laws of that jurisdiction, without reference to its conflict-of-law provisions. Nothing in this Section shall prevent a party’s ability to bring cross-claims or counter-claims. -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +9. Miscellaneous -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/src/core/SkScan_AAAPath.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/src/core/SkScan_AAAPath.cpp -FILE: ../../../third_party/skia/src/core/SkScan_DAAPath.cpp ----------------------------------------------------------------------------------------------------- -Copyright 2016 The Android Open Source Project +This License represents the complete agreement concerning the subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not be used to construe this License against a Contributor. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +10. Versions of the License - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +10.1. New Versions -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +Mozilla Foundation is the license steward. Except as provided in Section 10.3, no one other than the license steward has the right to modify or publish new versions of this License. Each version will be given a distinguishing version number. -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/src/core/SkTraceEvent.h + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/src/core/SkTraceEvent.h ----------------------------------------------------------------------------------------------------- -Copyright (c) 2014 Google Inc. +10.2. Effect of New Versions -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +You may distribute the Covered Software under the terms of the version of the License under which You originally received the Covered Software, or under the terms of any subsequent version published by the license steward. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +10.3. Modified Versions -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== +If you create software not governed by this License, and you want to create a new license for such software, you may create and use a modified version of this License if you rename the license and remove any references to the name of the license steward (except to note that such modified license differs from this License). -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/src/gpu/GrDistanceFieldGenFromVector.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/src/gpu/GrDistanceFieldGenFromVector.cpp -FILE: ../../../third_party/skia/src/gpu/GrDistanceFieldGenFromVector.h ----------------------------------------------------------------------------------------------------- -Copyright 2017 ARM Ltd. +10.4. Distributing Source Code Form that is Incompatible With Secondary Licenses -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +If You choose to distribute Source Code Form that is Incompatible With Secondary Licenses under the terms of this version of the License, the notice described in Exhibit B of this License must be attached. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +Exhibit A - Source Code Form License Notice -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -==================================================================================================== + This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. -==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/src/gpu/ops/GrSmallPathRenderer.cpp + ../../../third_party/skia/LICENSE -TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/src/gpu/ops/GrSmallPathRenderer.cpp ----------------------------------------------------------------------------------------------------- -Copyright 2014 Google Inc. -Copyright 2017 ARM Ltd. +If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: +You may add additional accurate notices of copyright ownership. - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. +Exhibit B - “Incompatible With Secondary Licenses” Notice -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + This Source Code Form is “Incompatible With Secondary Licenses”, as defined by the Mozilla Public License, v. 2.0. ==================================================================================================== ==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/src/opts/SkBitmapProcState_matrixProcs_neon.cpp + ../../../third_party/skia/LICENSE +LIBRARY: tcmalloc +ORIGIN: ../../../third_party/dart/third_party/tcmalloc/COPYING TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/src/opts/SkBitmapProcState_matrixProcs_neon.cpp +FILE: ../../../third_party/dart/third_party/tcmalloc/configure_command +FILE: ../../../third_party/dart/third_party/tcmalloc/include/config.h ---------------------------------------------------------------------------------------------------- -Copyright 2009 Motorola +Copyright (c) 2005, Google Inc. +All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright + * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above + * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of Google Inc. nor the names of its + * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. @@ -21411,26 +16668,25 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/src/ports/SkFontConfigInterface_direct.cpp + ../../../third_party/skia/LICENSE +LIBRARY: tcmalloc +ORIGIN: ../../../third_party/dart/third_party/tcmalloc/include/gperftools/tcmalloc.h TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/src/ports/SkFontConfigInterface_direct.cpp -FILE: ../../../third_party/skia/src/ports/SkFontConfigInterface_direct.h -FILE: ../../../third_party/skia/src/ports/SkFontConfigInterface_direct_factory.cpp +FILE: ../../../third_party/dart/third_party/tcmalloc/include/gperftools/tcmalloc.h ---------------------------------------------------------------------------------------------------- -Copyright 2009-2015 Google Inc. +Copyright (c) 2003, Google Inc. +All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright + * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above + * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of Google Inc. nor the names of its + * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. @@ -21448,14 +16704,39 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/src/ports/SkFontHost_FreeType_common.cpp + ../../../third_party/skia/LICENSE +LIBRARY: tonic +ORIGIN: ../../../third_party/tonic/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/src/ports/SkFontHost_FreeType_common.cpp -FILE: ../../../third_party/skia/src/ports/SkFontHost_FreeType_common.h ----------------------------------------------------------------------------------------------------- -Copyright 2006-2012 The Android Open Source Project -Copyright 2012 Mozilla Foundation +FILE: ../../../third_party/tonic/common/build_config.h +FILE: ../../../third_party/tonic/converter/dart_converter.cc +FILE: ../../../third_party/tonic/converter/dart_converter.h +FILE: ../../../third_party/tonic/dart_message_handler.cc +FILE: ../../../third_party/tonic/dart_message_handler.h +FILE: ../../../third_party/tonic/dart_microtask_queue.cc +FILE: ../../../third_party/tonic/dart_microtask_queue.h +FILE: ../../../third_party/tonic/dart_sticky_error.cc +FILE: ../../../third_party/tonic/dart_sticky_error.h +FILE: ../../../third_party/tonic/file_loader/file_loader.cc +FILE: ../../../third_party/tonic/file_loader/file_loader.h +FILE: ../../../third_party/tonic/filesystem/filesystem/eintr_wrapper.h +FILE: ../../../third_party/tonic/filesystem/filesystem/file.cc +FILE: ../../../third_party/tonic/filesystem/filesystem/file.h +FILE: ../../../third_party/tonic/filesystem/filesystem/path.h +FILE: ../../../third_party/tonic/filesystem/filesystem/path_posix.cc +FILE: ../../../third_party/tonic/logging/dart_error.cc +FILE: ../../../third_party/tonic/logging/dart_error.h +FILE: ../../../third_party/tonic/logging/dart_invoke.cc +FILE: ../../../third_party/tonic/logging/dart_invoke.h +FILE: ../../../third_party/tonic/parsers/packages_map.cc +FILE: ../../../third_party/tonic/parsers/packages_map.h +FILE: ../../../third_party/tonic/scopes/dart_api_scope.h +FILE: ../../../third_party/tonic/scopes/dart_isolate_scope.cc +FILE: ../../../third_party/tonic/scopes/dart_isolate_scope.h +FILE: ../../../third_party/tonic/typed_data/dart_byte_data.h +FILE: ../../../third_party/tonic/typed_data/int32_list.h +FILE: ../../../third_party/tonic/typed_data/uint8_list.h +---------------------------------------------------------------------------------------------------- +Copyright 2016 The Fuchsia Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -21485,13 +16766,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/src/ports/SkMemory_mozalloc.cpp + ../../../third_party/skia/LICENSE +LIBRARY: tonic +ORIGIN: ../../../third_party/tonic/common/log.cc + ../../../third_party/tonic/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/skia/src/ports/SkMemory_mozalloc.cpp +FILE: ../../../third_party/tonic/common/log.cc +FILE: ../../../third_party/tonic/common/log.h +FILE: ../../../third_party/tonic/common/macros.h ---------------------------------------------------------------------------------------------------- -Copyright 2011 Google Inc. -Copyright 2012 Mozilla Foundation +Copyright 2018 The Fuchsia Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -21521,46 +16803,33 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: skia -ORIGIN: ../../../third_party/skia/src/sksl/GLSL.std.450.h -TYPE: LicenseType.unknown -FILE: ../../../third_party/skia/src/sksl/GLSL.std.450.h -FILE: ../../../third_party/skia/src/sksl/spirv.h ----------------------------------------------------------------------------------------------------- -Copyright (c) 2014-2016 The Khronos Group Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and/or associated documentation files (the "Materials"), -to deal in the Materials without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Materials, and to permit persons to whom the -Materials are furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Materials. -==================================================================================================== - -==================================================================================================== -LIBRARY: tcmalloc -ORIGIN: ../../../third_party/dart/third_party/tcmalloc/COPYING +LIBRARY: tonic +ORIGIN: ../../../third_party/tonic/file_loader/file_loader_fuchsia.cc + ../../../third_party/tonic/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/tcmalloc/configure_command -FILE: ../../../third_party/dart/third_party/tcmalloc/include/config.h ----------------------------------------------------------------------------------------------------- -Copyright (c) 2005, Google Inc. -All rights reserved. +FILE: ../../../third_party/tonic/dart_list.cc +FILE: ../../../third_party/tonic/dart_list.h +FILE: ../../../third_party/tonic/file_loader/file_loader_fuchsia.cc +FILE: ../../../third_party/tonic/file_loader/file_loader_posix.cc +FILE: ../../../third_party/tonic/file_loader/file_loader_win.cc +FILE: ../../../third_party/tonic/filesystem/filesystem/path_win.cc +FILE: ../../../third_party/tonic/filesystem/filesystem/portable_unistd.h +FILE: ../../../third_party/tonic/platform/platform_utils.h +FILE: ../../../third_party/tonic/platform/platform_utils_posix.cc +FILE: ../../../third_party/tonic/platform/platform_utils_win.cc +---------------------------------------------------------------------------------------------------- +Copyright 2017 The Fuchsia Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright + * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above + * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of Google Inc. nor the names of its + * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. @@ -21578,25 +16847,45 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ==================================================================================================== ==================================================================================================== -LIBRARY: tcmalloc -ORIGIN: ../../../third_party/dart/third_party/tcmalloc/include/gperftools/tcmalloc.h +LIBRARY: tonic +ORIGIN: ../../../third_party/tonic/typed_data/dart_byte_data.cc + ../../../third_party/tonic/LICENSE TYPE: LicenseType.bsd -FILE: ../../../third_party/dart/third_party/tcmalloc/include/gperftools/tcmalloc.h ----------------------------------------------------------------------------------------------------- -Copyright (c) 2003, Google Inc. -All rights reserved. +FILE: ../../../third_party/tonic/dart_args.h +FILE: ../../../third_party/tonic/dart_binding_macros.h +FILE: ../../../third_party/tonic/dart_class_library.cc +FILE: ../../../third_party/tonic/dart_class_library.h +FILE: ../../../third_party/tonic/dart_class_provider.cc +FILE: ../../../third_party/tonic/dart_class_provider.h +FILE: ../../../third_party/tonic/dart_library_natives.cc +FILE: ../../../third_party/tonic/dart_library_natives.h +FILE: ../../../third_party/tonic/dart_persistent_value.cc +FILE: ../../../third_party/tonic/dart_persistent_value.h +FILE: ../../../third_party/tonic/dart_state.cc +FILE: ../../../third_party/tonic/dart_state.h +FILE: ../../../third_party/tonic/dart_wrappable.cc +FILE: ../../../third_party/tonic/dart_wrappable.h +FILE: ../../../third_party/tonic/dart_wrapper_info.h +FILE: ../../../third_party/tonic/typed_data/dart_byte_data.cc +FILE: ../../../third_party/tonic/typed_data/float32_list.cc +FILE: ../../../third_party/tonic/typed_data/float32_list.h +FILE: ../../../third_party/tonic/typed_data/float64_list.cc +FILE: ../../../third_party/tonic/typed_data/float64_list.h +FILE: ../../../third_party/tonic/typed_data/int32_list.cc +FILE: ../../../third_party/tonic/typed_data/uint8_list.cc +---------------------------------------------------------------------------------------------------- +Copyright 2015 The Fuchsia Authors. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - * Redistributions of source code must retain the above copyright + * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above + * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of Google Inc. nor the names of its + * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. @@ -22348,4 +17637,4 @@ freely, subject to the following restrictions: misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. ==================================================================================================== -Total license count: 319 +Total license count: 299 diff --git a/ci/test.sh b/ci/test.sh new file mode 100755 index 0000000000000..c0ea5babca926 --- /dev/null +++ b/ci/test.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +cd frontend_server +dart test/server_test.dart diff --git a/common/BUILD.gn b/common/BUILD.gn index 53b71914d49d1..c0212e3528920 100644 --- a/common/BUILD.gn +++ b/common/BUILD.gn @@ -12,12 +12,12 @@ source_set("common") { sources = [ "settings.cc", "settings.h", - "threads.cc", - "threads.h", + "task_runners.cc", + "task_runners.h", ] deps = [ - "//garnet/public/lib/fxl", + "$flutter_root/fml", ] public_configs = [ diff --git a/common/config.gni b/common/config.gni index 0f50113027a3b..dd08c934dc22d 100644 --- a/common/config.gni +++ b/common/config.gni @@ -11,13 +11,10 @@ if (target_cpu == "arm" || target_cpu == "arm64") { } declare_args() { - # Enable asserts, even in release builds. - flutter_asserts_always_on = false - # Enable ahead-of-time compilation on platforms where AOT is optional. flutter_aot = false - # The runtime mode ("debug", "profile", or "release") + # The runtime mode ("debug", "profile", "release", "dynamic_profile", or "dynamic_release") flutter_runtime_mode = "debug" } @@ -27,6 +24,8 @@ feature_defines_list = [ "FLUTTER_RUNTIME_MODE_DEBUG=1", "FLUTTER_RUNTIME_MODE_PROFILE=2", "FLUTTER_RUNTIME_MODE_RELEASE=3", + "FLUTTER_RUNTIME_MODE_DYNAMIC_PROFILE=4", + "FLUTTER_RUNTIME_MODE_DYNAMIC_RELEASE=5", ] if (flutter_runtime_mode == "debug") { @@ -35,25 +34,14 @@ if (flutter_runtime_mode == "debug") { feature_defines_list += [ "FLUTTER_RUNTIME_MODE=2" ] } else if (flutter_runtime_mode == "release") { feature_defines_list += [ "FLUTTER_RUNTIME_MODE=3" ] +} else if (flutter_runtime_mode == "dynamic_profile") { + feature_defines_list += [ "FLUTTER_RUNTIME_MODE=4" ] +} else if (flutter_runtime_mode == "dynamic_release") { + feature_defines_list += [ "FLUTTER_RUNTIME_MODE=5" ] } else { feature_defines_list += [ "FLUTTER_RUNTIME_MODE=0" ] } -if (is_debug) { - # TODO(GYP) this should also be set when release_valgrind_build is set, - # but we don't have that flag in the GN build yet. - feature_defines_list += [ "WTF_USE_DYNAMIC_ANNOTATIONS=1" ] -} - -if (!is_mac) { - # Mac OS X has not implemented support for ENABLE(OPENTYPE_VERTICAL) yet. - feature_defines_list += [ "ENABLE_OPENTYPE_VERTICAL=1" ] -} - -if (flutter_asserts_always_on) { - feature_defines_list += [ "ENABLE_ASSERT=1" ] -} - if (flutter_aot) { feature_defines_list += [ "FLUTTER_AOT=1" ] } diff --git a/common/settings.cc b/common/settings.cc index 0198f714cbaad..8123b1d321ef6 100644 --- a/common/settings.cc +++ b/common/settings.cc @@ -4,26 +4,46 @@ #include "flutter/common/settings.h" -#include - -#include "lib/fxl/logging.h" +#include namespace blink { -namespace { - -Settings* g_settings = nullptr; - -} // namespace - -const Settings& Settings::Get() { - FXL_CHECK(g_settings); - return *g_settings; -} -void Settings::Set(const Settings& settings) { - FXL_CHECK(!g_settings); - g_settings = new Settings(); - *g_settings = settings; +std::string Settings::ToString() const { + std::stringstream stream; + stream << "Settings: " << std::endl; + stream << "script_snapshot_path: " << script_snapshot_path << std::endl; + stream << "vm_snapshot_data_path: " << vm_snapshot_data_path << std::endl; + stream << "vm_snapshot_instr_path: " << vm_snapshot_instr_path << std::endl; + stream << "isolate_snapshot_data_path: " << isolate_snapshot_data_path + << std::endl; + stream << "isolate_snapshot_instr_path: " << isolate_snapshot_instr_path + << std::endl; + stream << "application_library_path: " << application_library_path + << std::endl; + stream << "main_dart_file_path: " << main_dart_file_path << std::endl; + stream << "packages_file_path: " << packages_file_path << std::endl; + stream << "temp_directory_path: " << temp_directory_path << std::endl; + stream << "dart_flags:" << std::endl; + for (const auto& dart_flag : dart_flags) { + stream << " " << dart_flag << std::endl; + } + stream << "start_paused: " << start_paused << std::endl; + stream << "trace_skia: " << trace_skia << std::endl; + stream << "trace_startup: " << trace_startup << std::endl; + stream << "endless_trace_buffer: " << endless_trace_buffer << std::endl; + stream << "enable_dart_profiling: " << enable_dart_profiling << std::endl; + stream << "dart_non_checked_mode: " << dart_non_checked_mode << std::endl; + stream << "enable_observatory: " << enable_observatory << std::endl; + stream << "observatory_port: " << observatory_port << std::endl; + stream << "ipv6: " << ipv6 << std::endl; + stream << "use_test_fonts: " << use_test_fonts << std::endl; + stream << "enable_software_rendering: " << enable_software_rendering + << std::endl; + stream << "log_tag: " << log_tag << std::endl; + stream << "icu_data_path: " << icu_data_path << std::endl; + stream << "assets_dir: " << assets_dir << std::endl; + stream << "assets_path: " << assets_path << std::endl; + return stream.str(); } } // namespace blink diff --git a/common/settings.h b/common/settings.h index 5bb5c6cbbea42..124529b90c57d 100644 --- a/common/settings.h +++ b/common/settings.h @@ -5,40 +5,88 @@ #ifndef FLUTTER_COMMON_SETTINGS_H_ #define FLUTTER_COMMON_SETTINGS_H_ +#include #include +#include #include #include +#include "flutter/fml/closure.h" +#include "flutter/fml/unique_fd.h" + namespace blink { +using TaskObserverAdd = + std::function; +using TaskObserverRemove = std::function; + struct Settings { + // VM settings + std::string script_snapshot_path; + std::string platform_kernel_path; + + std::string vm_snapshot_data_path; + std::string vm_snapshot_instr_path; + std::string isolate_snapshot_data_path; + std::string isolate_snapshot_instr_path; + + std::string application_library_path; + std::string application_kernel_asset; + std::string application_kernel_list_asset; + + std::string main_dart_file_path; + std::string packages_file_path; + + std::string temp_directory_path; + std::vector dart_flags; + + // Isolate settings + bool start_paused = false; + bool trace_skia = false; + bool trace_startup = false; + bool endless_trace_buffer = false; + bool enable_dart_profiling = false; + bool dart_non_checked_mode = false; + // Used as the script URI in debug messages. Does not affect how the Dart code + // is executed. + std::string advisory_script_uri = "main.dart"; + // Used as the script entrypoint in debug messages. Does not affect how the + // Dart code is executed. + std::string advisory_script_entrypoint = "main"; + + // Observatory settings bool enable_observatory = false; // Port on target will be auto selected by the OS. A message will be printed // on the target with the port after it has been selected. uint32_t observatory_port = 0; bool ipv6 = false; - bool start_paused = false; - bool trace_startup = false; - bool endless_trace_buffer = false; - bool enable_dart_profiling = false; + + // Font settings bool use_test_fonts = false; - bool dart_non_checked_mode = false; + + // Engine settings + TaskObserverAdd task_observer_add; + TaskObserverRemove task_observer_remove; + // The main isolate is current when this callback is made. This is a good spot + // to perform native Dart bindings for libraries not built in. + fml::closure root_isolate_create_callback; + // The isolate is not current and may have already been destroyed when this + // call is made. + fml::closure root_isolate_shutdown_callback; bool enable_software_rendering = false; - bool using_blink = true; - std::string aot_shared_library_path; - std::string aot_snapshot_path; - std::string aot_vm_snapshot_data_filename; - std::string aot_vm_snapshot_instr_filename; - std::string aot_isolate_snapshot_data_filename; - std::string aot_isolate_snapshot_instr_filename; - std::string application_library_path; - std::string temp_directory_path; - std::vector dart_flags; + bool skia_deterministic_rendering_on_cpu = false; + bool verbose_logging = false; std::string log_tag = "flutter"; + std::string icu_data_path; + + // Assets settings + fml::UniqueFD::element_type assets_dir = + fml::UniqueFD::traits_type::InvalidValue(); + std::string assets_path; + std::string flx_path; - static const Settings& Get(); - static void Set(const Settings& settings); + std::string ToString() const; }; } // namespace blink diff --git a/common/task_runners.cc b/common/task_runners.cc new file mode 100644 index 0000000000000..bb62c8e9c04e3 --- /dev/null +++ b/common/task_runners.cc @@ -0,0 +1,48 @@ +// Copyright 2017 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "flutter/common/task_runners.h" + +#include + +namespace blink { + +TaskRunners::TaskRunners(std::string label, + fml::RefPtr platform, + fml::RefPtr gpu, + fml::RefPtr ui, + fml::RefPtr io) + : label_(std::move(label)), + platform_(std::move(platform)), + gpu_(std::move(gpu)), + ui_(std::move(ui)), + io_(std::move(io)) {} + +TaskRunners::~TaskRunners() = default; + +const std::string& TaskRunners::GetLabel() const { + return label_; +} + +fml::RefPtr TaskRunners::GetPlatformTaskRunner() const { + return platform_; +} + +fml::RefPtr TaskRunners::GetUITaskRunner() const { + return ui_; +} + +fml::RefPtr TaskRunners::GetIOTaskRunner() const { + return io_; +} + +fml::RefPtr TaskRunners::GetGPUTaskRunner() const { + return gpu_; +} + +bool TaskRunners::IsValid() const { + return platform_ && gpu_ && ui_ && io_; +} + +} // namespace blink diff --git a/common/task_runners.h b/common/task_runners.h new file mode 100644 index 0000000000000..642a8a158f12d --- /dev/null +++ b/common/task_runners.h @@ -0,0 +1,47 @@ +// Copyright 2017 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_COMMON_TASK_RUNNERS_H_ +#define FLUTTER_COMMON_TASK_RUNNERS_H_ + +#include + +#include "flutter/fml/macros.h" +#include "flutter/fml/task_runner.h" + +namespace blink { + +class TaskRunners { + public: + TaskRunners(std::string label, + fml::RefPtr platform, + fml::RefPtr gpu, + fml::RefPtr ui, + fml::RefPtr io); + + ~TaskRunners(); + + const std::string& GetLabel() const; + + fml::RefPtr GetPlatformTaskRunner() const; + + fml::RefPtr GetUITaskRunner() const; + + fml::RefPtr GetIOTaskRunner() const; + + fml::RefPtr GetGPUTaskRunner() const; + + bool IsValid() const; + + private: + const std::string label_; + fml::RefPtr platform_; + fml::RefPtr gpu_; + fml::RefPtr ui_; + fml::RefPtr io_; +}; + +} // namespace blink + +#endif // FLUTTER_COMMON_TASK_RUNNERS_H_ diff --git a/common/threads.cc b/common/threads.cc deleted file mode 100644 index 3634d8d7c8723..0000000000000 --- a/common/threads.cc +++ /dev/null @@ -1,56 +0,0 @@ -// Copyright 2016 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "flutter/common/threads.h" - -#include - -namespace blink { -namespace { - -Threads* g_threads = nullptr; - -} // namespace - -Threads::Threads() {} - -Threads::Threads(fxl::RefPtr platform, - fxl::RefPtr gpu, - fxl::RefPtr ui, - fxl::RefPtr io) - : platform_(std::move(platform)), - gpu_(std::move(gpu)), - ui_(std::move(ui)), - io_(std::move(io)) {} - -Threads::~Threads() {} - -const fxl::RefPtr& Threads::Platform() { - return Get().platform_; -} - -const fxl::RefPtr& Threads::Gpu() { - return Get().gpu_; -} - -const fxl::RefPtr& Threads::UI() { - return Get().ui_; -} - -const fxl::RefPtr& Threads::IO() { - return Get().io_; -} - -const Threads& Threads::Get() { - FXL_CHECK(g_threads); - return *g_threads; -} - -void Threads::Set(const Threads& threads) { - FXL_CHECK(!g_threads); - g_threads = new Threads(); - *g_threads = threads; -} - -} // namespace blink diff --git a/common/threads.h b/common/threads.h deleted file mode 100644 index 456a5eba8ad97..0000000000000 --- a/common/threads.h +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright 2016 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef FLUTTER_COMMON_THREADS_H_ -#define FLUTTER_COMMON_THREADS_H_ - -#include "lib/fxl/tasks/task_runner.h" - -#define ASSERT_IS_PLATFORM_THREAD \ - FXL_DCHECK(::blink::Threads::Platform()->RunsTasksOnCurrentThread()); -#define ASSERT_IS_GPU_THREAD \ - FXL_DCHECK(::blink::Threads::Gpu()->RunsTasksOnCurrentThread()); -#define ASSERT_IS_UI_THREAD \ - FXL_DCHECK(::blink::Threads::UI()->RunsTasksOnCurrentThread()); -#define ASSERT_IS_IO_THREAD \ - FXL_DCHECK(::blink::Threads::IO()->RunsTasksOnCurrentThread()); - -namespace blink { - -class Threads { - public: - Threads(); - Threads(fxl::RefPtr platform, - fxl::RefPtr gpu, - fxl::RefPtr ui, - fxl::RefPtr io); - ~Threads(); - - static const fxl::RefPtr& Platform(); - static const fxl::RefPtr& Gpu(); - static const fxl::RefPtr& UI(); - static const fxl::RefPtr& IO(); - - static void Set(const Threads& settings); - - private: - static const Threads& Get(); - - fxl::RefPtr platform_; - fxl::RefPtr gpu_; - fxl::RefPtr ui_; - fxl::RefPtr io_; -}; - -} // namespace blink - -#endif // FLUTTER_COMMON_THREADS_H_ diff --git a/content_handler/BUILD.gn b/content_handler/BUILD.gn deleted file mode 100644 index 2c0fb37963050..0000000000000 --- a/content_handler/BUILD.gn +++ /dev/null @@ -1,101 +0,0 @@ -# Copyright 2016 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -assert(is_fuchsia) - -import("//build/vulkan/config.gni") - -template("flutter_content_handler") { - invoker_output_name = invoker.output_name - extra_deps = invoker.extra_deps - - executable(target_name) { - output_name = invoker_output_name - - defines = [] - - libs = [] - - sources = [ - "accessibility_bridge.cc", - "accessibility_bridge.h", - "app.cc", - "app.h", - "application_controller_impl.cc", - "application_controller_impl.h", - "fuchsia_font_manager.cc", - "fuchsia_font_manager.h", - "main.cc", - "rasterizer.cc", - "rasterizer.h", - "runtime_holder.cc", - "runtime_holder.h", - "service_protocol_hooks.cc", - "service_protocol_hooks.h", - "session_connection.cc", - "session_connection.h", - "vulkan_rasterizer.cc", - "vulkan_rasterizer.h", - "vulkan_surface.cc", - "vulkan_surface.h", - "vulkan_surface_pool.cc", - "vulkan_surface_pool.h", - "vulkan_surface_producer.cc", - "vulkan_surface_producer.h", - ] - - deps = [ - "//third_party/dart/runtime/bin:libdart_builtin", - "//third_party/dart/runtime/platform:libdart_platform", - "$flutter_root/assets", - "$flutter_root/common", - "$flutter_root/flow", - "$flutter_root/glue", - "$flutter_root/lib/ui", - "$flutter_root/runtime", - "$flutter_root/sky/engine/platform", - "$flutter_root/third_party/txt", - "$flutter_root/vulkan", - "//garnet/public/lib/app/cpp", - "//garnet/public/lib/fsl", - "//garnet/public/lib/fxl", - "//garnet/public/lib/icu_data/cpp", - "//garnet/public/lib/svc/cpp", - "//garnet/public/lib/ui/input/fidl", - "//garnet/public/lib/ui/scenic:client", - "//garnet/public/lib/ui/views/fidl", - "//garnet/public/lib/vulkan", - "//garnet/public/lib/zip", - "//peridot/public/lib/clipboard/fidl", - "//peridot/public/lib/context/fidl", - "//third_party/rapidjson", - "//third_party/skia", - "//topaz/lib/tonic", - "//topaz/public/dart-pkg/fuchsia", - "//topaz/public/lib/ui/flutter/sdk_ext", - "//zircon/public/lib/trace-provider", - ] + extra_deps - - # The flags below are needed so that Dart's CPU profiler can walk the - # C++ stack. - cflags = [ - "-mno-omit-leaf-frame-pointer", - "-fno-omit-frame-pointer", - ] - - # This flag is needed so that the call to dladdr() in Dart's native symbol - # resolver can report good symbol information for the CPU profiler. - ldflags = [ "-rdynamic" ] - } -} - -flutter_content_handler("aot") { - output_name = "flutter_aot_runner" - extra_deps = [ "//third_party/dart/runtime:libdart_precompiled_runtime" ] -} - -flutter_content_handler("jit") { - output_name = "flutter_jit_runner" - extra_deps = [ "//third_party/dart/runtime:libdart_jit" ] -} diff --git a/content_handler/accessibility_bridge.cc b/content_handler/accessibility_bridge.cc deleted file mode 100644 index 7547d2678f369..0000000000000 --- a/content_handler/accessibility_bridge.cc +++ /dev/null @@ -1,81 +0,0 @@ -// Copyright 2017 The Fuchsia Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "flutter/content_handler/accessibility_bridge.h" - -#include - -#include "flutter/lib/ui/semantics/semantics_node.h" -#include "lib/app/cpp/application_context.h" -#include "lib/context/fidl/context_writer.fidl.h" -#include "lib/fxl/macros.h" -#include "third_party/rapidjson/rapidjson/document.h" -#include "third_party/rapidjson/rapidjson/stringbuffer.h" -#include "third_party/rapidjson/rapidjson/writer.h" - -namespace flutter_runner { - -AccessibilityBridge::AccessibilityBridge(component::ApplicationContext* context) - : writer_(context->ConnectToEnvironmentService()) {} - -void AccessibilityBridge::UpdateSemantics( - const blink::SemanticsNodeUpdates& update) { - for (const auto& update : update) { - const auto& node = update.second; - semantics_nodes_[node.id] = node; - } - std::vector visited_nodes; - UpdateVisitedForNodeAndChildren(0, &visited_nodes); - EraseUnvisitedNodes(visited_nodes); - - // The data sent to the Context Service is a JSON formatted list of labels - // for all on screen widgets. - rapidjson::Document nodes_json(rapidjson::kArrayType); - for (const int node_index : visited_nodes) { - const auto& node = semantics_nodes_[node_index]; - if (!node.label.empty()) { - rapidjson::Value value; - value.SetString(node.label.data(), node.label.size()); - nodes_json.PushBack(value, nodes_json.GetAllocator()); - } - } - - if (nodes_json.Size() > 0) { - rapidjson::StringBuffer buffer; - rapidjson::Writer writer(buffer); - nodes_json.Accept(writer); - writer_->WriteEntityTopic("/inferred/accessibility_text", - buffer.GetString()); - } -} - -void AccessibilityBridge::UpdateVisitedForNodeAndChildren( - const int id, - std::vector* visited_nodes) { - std::map::const_iterator it = - semantics_nodes_.find(id); - if (it == semantics_nodes_.end()) { - return; - } - - visited_nodes->push_back(id); - for (const int child : it->second.children) { - UpdateVisitedForNodeAndChildren(child, visited_nodes); - } -} - -void AccessibilityBridge::EraseUnvisitedNodes( - const std::vector& visited_nodes) { - const std::unordered_set visited_nodes_lookup(visited_nodes.begin(), - visited_nodes.end()); - for (auto it = semantics_nodes_.begin(); it != semantics_nodes_.end();) { - if (visited_nodes_lookup.find((*it).first) == visited_nodes_lookup.end()) { - it = semantics_nodes_.erase(it); - } else { - ++it; - } - } -} - -} // namespace flutter_runner diff --git a/content_handler/accessibility_bridge.h b/content_handler/accessibility_bridge.h deleted file mode 100644 index 07c8d248c2407..0000000000000 --- a/content_handler/accessibility_bridge.h +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright 2017 The Fuchsia Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef FLUTTER_CONTENT_HANDLER_ACCESSIBILITY_BRIDGE_H_ -#define FLUTTER_CONTENT_HANDLER_ACCESSIBILITY_BRIDGE_H_ - -#include - -#include "flutter/lib/ui/semantics/semantics_node.h" -#include "lib/app/cpp/application_context.h" -#include "lib/context/fidl/context_writer.fidl.h" - -namespace flutter_runner { - -// Maintain an up-to-date list of SemanticsNodes on screen, and communicate -// with the Context Service. -class AccessibilityBridge { - public: - explicit AccessibilityBridge(component::ApplicationContext* context); - - // Update the internal representation of the semantics nodes, and write the - // semantics to Context Service. - void UpdateSemantics(const blink::SemanticsNodeUpdates& update); - - private: - // Walk the semantics node tree starting at |id|, and store the id of each - // visited child in |visited_nodes|. - void UpdateVisitedForNodeAndChildren(const int id, - std::vector* visited_nodes); - - // Remove any node from |semantics_nodes_| that doesn't have an id in - // |visited_nodes|. - void EraseUnvisitedNodes(const std::vector& visited_nodes); - - std::map semantics_nodes_; - maxwell::ContextWriterPtr writer_; -}; - -} // namespace flutter_runner - -#endif // FLUTTER_CONTENT_HANDLER_ACCESSIBILITY_BRIDGE_H_ diff --git a/content_handler/app.cc b/content_handler/app.cc deleted file mode 100644 index dd72e32226ff3..0000000000000 --- a/content_handler/app.cc +++ /dev/null @@ -1,174 +0,0 @@ -// Copyright 2016 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "flutter/content_handler/app.h" - -#include -#include - -#include "flutter/common/settings.h" -#include "flutter/common/threads.h" -#include "flutter/content_handler/fuchsia_font_manager.h" -#include "flutter/lib/ui/text/font_collection.h" -#include "flutter/sky/engine/platform/fonts/fuchsia/FontCacheFuchsia.h" -#include "lib/fsl/tasks/message_loop.h" -#include "lib/fxl/macros.h" -#include "lib/fxl/tasks/task_runner.h" -#include "lib/icu_data/cpp/icu_data.h" -#include "third_party/dart/runtime/include/dart_tools_api.h" - -namespace flutter_runner { -namespace { - -static App* g_app = nullptr; - -void QuitMessageLoop() { - fsl::MessageLoop::GetCurrent()->QuitNow(); -} - -std::string GetLabelFromURL(const std::string& url) { - size_t last_slash = url.rfind('/'); - if (last_slash == std::string::npos || last_slash + 1 == url.length()) - return url; - return url.substr(last_slash + 1); -} - -} // namespace - -App::App() { - g_app = this; - context_ = component::ApplicationContext::CreateFromStartupInfo(); - - gpu_thread_ = std::make_unique(); - io_thread_ = std::make_unique(); - - auto gpu_thread_success = gpu_thread_->Run(); - auto io_thread_success = io_thread_->Run(); - - FXL_CHECK(gpu_thread_success) << "Must be able to create the GPU thread"; - FXL_CHECK(io_thread_success) << "Must be able to create the IO thread"; - - auto ui_task_runner = fsl::MessageLoop::GetCurrent()->task_runner(); - auto gpu_task_runner = gpu_thread_->TaskRunner(); - auto io_task_runner = io_thread_->TaskRunner(); - - // Notice that the Platform and UI threads are actually the same. - blink::Threads::Set(blink::Threads(ui_task_runner, // Platform - gpu_task_runner, // GPU - ui_task_runner, // UI - io_task_runner // IO - )); - - if (!icu_data::Initialize(context_.get())) { - FXL_LOG(ERROR) << "Could not initialize ICU data."; - } - - blink::Settings settings; - settings.enable_observatory = true; - blink::Settings::Set(settings); - - fonts::FontProviderPtr font_provider( - context_->ConnectToEnvironmentService()); - if (settings.using_blink) { - blink::SetFontProvider(std::move(font_provider)); - } else { - blink::FontCollection::ForProcess().GetFontCollection()-> - SetAssetFontManager( - sk_make_sp(std::move(font_provider))); - } - - context_->outgoing_services()->AddService( - [this](f1dl::InterfaceRequest request) { - runner_bindings_.AddBinding(this, std::move(request)); - }); -} - -App::~App() { - icu_data::Release(); - blink::Threads::Gpu()->PostTask(QuitMessageLoop); - blink::Threads::IO()->PostTask(QuitMessageLoop); - g_app = nullptr; -} - -App& App::Shared() { - FXL_DCHECK(g_app); - return *g_app; -} - -void App::WaitForPlatformViewIds( - std::vector* platform_view_ids) { - fxl::AutoResetWaitableEvent latch; - - blink::Threads::UI()->PostTask([this, platform_view_ids, &latch]() { - WaitForPlatformViewsIdsUIThread(platform_view_ids, &latch); - }); - - latch.Wait(); -} - -void App::WaitForPlatformViewsIdsUIThread( - std::vector* platform_view_ids, - fxl::AutoResetWaitableEvent* latch) { - for (auto it = controllers_.begin(); it != controllers_.end(); it++) { - ApplicationControllerImpl* controller = it->first; - - if (!controller) { - continue; - } - - PlatformViewInfo info; - // TODO(zra): We should create real IDs for these instead of relying on the - // address of the controller. Maybe just use the UI Isolate main port? - info.view_id = reinterpret_cast(controller); - info.isolate_id = controller->GetUIIsolateMainPort(); - info.isolate_name = controller->GetUIIsolateName(); - platform_view_ids->push_back(info); - } - latch->Signal(); -} - -void App::StartApplication( - component::ApplicationPackagePtr application, - component::ApplicationStartupInfoPtr startup_info, - f1dl::InterfaceRequest controller) { - if (controllers_.empty()) { - // Name this process after the url of the first application being launched. - base_label_ = "flutter:" + GetLabelFromURL(startup_info->launch_info->url); - } - - std::unique_ptr impl = - std::make_unique(this, std::move(application), - std::move(startup_info), - std::move(controller)); - ApplicationControllerImpl* key = impl.get(); - controllers_.emplace(key, std::move(impl)); - - UpdateProcessLabel(); -} - -void App::Destroy(ApplicationControllerImpl* controller) { - auto it = controllers_.find(controller); - if (it == controllers_.end()) - return; - controllers_.erase(it); - UpdateProcessLabel(); -} - -void App::UpdateProcessLabel() { - std::string label; - if (controllers_.size() < 2) { - label = base_label_; - } else { - std::string suffix = " (+" + std::to_string(controllers_.size() - 1) + ")"; - if (base_label_.size() + suffix.size() <= ZX_MAX_NAME_LEN - 1) { - label = base_label_ + suffix; - } else { - label = base_label_.substr(0, ZX_MAX_NAME_LEN - 1 - suffix.size() - 3) + - "..." + suffix; - } - } - zx::process::self().set_property(ZX_PROP_NAME, label.c_str(), label.size()); -} - -} // namespace flutter_runner diff --git a/content_handler/app.h b/content_handler/app.h deleted file mode 100644 index 9faeaa78dba66..0000000000000 --- a/content_handler/app.h +++ /dev/null @@ -1,64 +0,0 @@ -// Copyright 2016 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef FLUTTER_CONTENT_HANDLER_APP_H_ -#define FLUTTER_CONTENT_HANDLER_APP_H_ - -#include -#include - -#include "flutter/content_handler/application_controller_impl.h" -#include "lib/app/cpp/application_context.h" -#include "lib/app/fidl/application_runner.fidl.h" -#include "lib/fsl/threading/thread.h" -#include "lib/fxl/macros.h" -#include "lib/fxl/synchronization/waitable_event.h" - -namespace flutter_runner { - -class App : public component::ApplicationRunner { - public: - App(); - ~App(); - - static App& Shared(); - - // |component::ApplicationRunner| implementation: - - void StartApplication( - component::ApplicationPackagePtr application, - component::ApplicationStartupInfoPtr startup_info, - f1dl::InterfaceRequest controller) override; - - void Destroy(ApplicationControllerImpl* controller); - - struct PlatformViewInfo { - uintptr_t view_id; - int64_t isolate_id; - std::string isolate_name; - }; - - void WaitForPlatformViewIds(std::vector* platform_view_ids); - - private: - void WaitForPlatformViewsIdsUIThread( - std::vector* platform_view_ids, - fxl::AutoResetWaitableEvent* latch); - void UpdateProcessLabel(); - - std::unique_ptr context_; - std::unique_ptr gpu_thread_; - std::unique_ptr io_thread_; - f1dl::BindingSet runner_bindings_; - std::unordered_map> - controllers_; - std::string base_label_; - - FXL_DISALLOW_COPY_AND_ASSIGN(App); -}; - -} // namespace flutter_runner - -#endif // FLUTTER_CONTENT_HANDLER_APP_H_ diff --git a/content_handler/application_controller_impl.cc b/content_handler/application_controller_impl.cc deleted file mode 100644 index c38e27d9e39ac..0000000000000 --- a/content_handler/application_controller_impl.cc +++ /dev/null @@ -1,147 +0,0 @@ -// Copyright 2016 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "flutter/content_handler/application_controller_impl.h" - -#include - -#include -#include - -#include "flutter/content_handler/app.h" -#include "flutter/content_handler/runtime_holder.h" -#include "lib/app/cpp/connect.h" -#include "lib/fsl/vmo/vector.h" -#include "lib/fxl/logging.h" - -namespace flutter_runner { - -ApplicationControllerImpl::ApplicationControllerImpl( - App* app, - component::ApplicationPackagePtr application, - component::ApplicationStartupInfoPtr startup_info, - f1dl::InterfaceRequest controller) - : app_(app), binding_(this) { - if (controller.is_valid()) { - binding_.Bind(std::move(controller)); - binding_.set_error_handler([this] { - app_->Destroy(this); - // |this| has been deleted at this point. - }); - } - - std::vector bundle; - if (application->data) { - if (!fsl::VectorFromVmo(std::move(application->data), &bundle)) { - FXL_LOG(ERROR) << "Failed to receive bundle."; - return; - } - } - - // TODO(jeffbrown): Decide what to do with command-line arguments and - // startup handles. - - if (startup_info->launch_info->directory_request.is_valid()) { - service_provider_bridge_.ServeDirectory( - std::move(startup_info->launch_info->directory_request)); - } - - service_provider_bridge_.AddService( - [this](f1dl::InterfaceRequest request) { - view_provider_bindings_.AddBinding(this, std::move(request)); - }); - - component::ServiceProviderPtr service_provider; - auto request = service_provider.NewRequest(); - service_provider_bridge_.set_backend(std::move(service_provider)); - - fdio_ns_t* fdio_ns = SetupNamespace(startup_info->flat_namespace); - if (fdio_ns == nullptr) { - FXL_LOG(ERROR) << "Failed to initialize namespace"; - return; - } - - url_ = startup_info->launch_info->url; - runtime_holder_.reset(new RuntimeHolder()); - runtime_holder_->SetMainIsolateShutdownCallback([this]() { Kill(); }); - runtime_holder_->Init( - fdio_ns, component::ApplicationContext::CreateFrom(std::move(startup_info)), - std::move(request), std::move(bundle)); -} - -ApplicationControllerImpl::~ApplicationControllerImpl() = default; - -constexpr char kServiceRootPath[] = "/svc"; - -fdio_ns_t* ApplicationControllerImpl::SetupNamespace( - const component::FlatNamespacePtr& flat) { - fdio_ns_t* fdio_namespc; - zx_status_t status = fdio_ns_create(&fdio_namespc); - if (status != ZX_OK) { - FXL_LOG(ERROR) << "Failed to create namespace"; - return nullptr; - } - for (size_t i = 0; i < flat->paths->size(); ++i) { - if (flat->paths->at(i) == kServiceRootPath) { - // Ownership of /svc goes to the ApplicationContext created above. - continue; - } - zx::channel dir = std::move(flat->directories->at(i)); - zx_handle_t dir_handle = dir.release(); - const char* path = flat->paths->at(i)->data(); - status = fdio_ns_bind(fdio_namespc, path, dir_handle); - if (status != ZX_OK) { - FXL_LOG(ERROR) << "Failed to bind " << flat->paths->at(i) - << " to namespace"; - zx_handle_close(dir_handle); - fdio_ns_destroy(fdio_namespc); - return nullptr; - } - } - return fdio_namespc; -} - -void ApplicationControllerImpl::Kill() { - SendReturnCode(runtime_holder_->return_code()); - runtime_holder_.reset(); - app_->Destroy(this); - // |this| has been deleted at this point. -} - -void ApplicationControllerImpl::Detach() { - binding_.set_error_handler(fxl::Closure()); -} - -void ApplicationControllerImpl::Wait(const WaitCallback& callback) { - wait_callbacks_.push_back(callback); -} - -void ApplicationControllerImpl::SendReturnCode(int32_t return_code) { - for (const auto& iter : wait_callbacks_) { - iter(return_code); - } - wait_callbacks_.clear(); -} - -void ApplicationControllerImpl::CreateView( - f1dl::InterfaceRequest view_owner_request, - f1dl::InterfaceRequest services) { - runtime_holder_->CreateView(url_, std::move(view_owner_request), - std::move(services)); -} - -Dart_Port ApplicationControllerImpl::GetUIIsolateMainPort() { - if (!runtime_holder_) - return ILLEGAL_PORT; - return runtime_holder_->GetUIIsolateMainPort(); -} - -std::string ApplicationControllerImpl::GetUIIsolateName() { - if (!runtime_holder_) { - return ""; - } - return runtime_holder_->GetUIIsolateName(); -} - -} // namespace flutter_runner diff --git a/content_handler/application_controller_impl.h b/content_handler/application_controller_impl.h deleted file mode 100644 index 812afb35024e9..0000000000000 --- a/content_handler/application_controller_impl.h +++ /dev/null @@ -1,76 +0,0 @@ -// Copyright 2016 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef FLUTTER_CONTENT_HANDLER_APPLICATION_IMPL_H_ -#define FLUTTER_CONTENT_HANDLER_APPLICATION_IMPL_H_ - -#include - -#include - -#include "lib/app/fidl/application_controller.fidl.h" -#include "lib/app/fidl/application_runner.fidl.h" -#include "lib/app/fidl/service_provider.fidl.h" -#include "lib/fidl/cpp/bindings/binding.h" -#include "lib/fidl/cpp/bindings/binding_set.h" -#include "lib/fxl/macros.h" -#include "lib/fxl/synchronization/waitable_event.h" -#include "lib/svc/cpp/service_provider_bridge.h" -#include "lib/ui/views/fidl/view_provider.fidl.h" -#include "third_party/dart/runtime/include/dart_api.h" - -namespace flutter_runner { -class App; -class RuntimeHolder; - -class ApplicationControllerImpl : public component::ApplicationController, - public mozart::ViewProvider { - public: - ApplicationControllerImpl( - App* app, - component::ApplicationPackagePtr application, - component::ApplicationStartupInfoPtr startup_info, - f1dl::InterfaceRequest controller); - - ~ApplicationControllerImpl() override; - - // |component::ApplicationController| implementation - - void Kill() override; - void Detach() override; - void Wait(const WaitCallback& callback) override; - - // |mozart::ViewProvider| implementation - - void CreateView( - f1dl::InterfaceRequest view_owner_request, - f1dl::InterfaceRequest services) override; - - Dart_Port GetUIIsolateMainPort(); - std::string GetUIIsolateName(); - - private: - void StartRuntimeIfReady(); - void SendReturnCode(int32_t return_code); - - fdio_ns_t* SetupNamespace(const component::FlatNamespacePtr& flat); - - App* app_; - f1dl::Binding binding_; - - component::ServiceProviderBridge service_provider_bridge_; - - f1dl::BindingSet view_provider_bindings_; - - std::string url_; - std::unique_ptr runtime_holder_; - - std::vector wait_callbacks_; - - FXL_DISALLOW_COPY_AND_ASSIGN(ApplicationControllerImpl); -}; - -} // namespace flutter_runner - -#endif // FLUTTER_CONTENT_HANDLER_APPLICATION_IMPL_H_ diff --git a/content_handler/fuchsia_font_manager.cc b/content_handler/fuchsia_font_manager.cc deleted file mode 100644 index 8138d1dfbf970..0000000000000 --- a/content_handler/fuchsia_font_manager.cc +++ /dev/null @@ -1,168 +0,0 @@ -/* - * Copyright 2017 Google Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include "flutter/content_handler/fuchsia_font_manager.h" - -#include - -#include "lib/fsl/vmo/sized_vmo.h" -#include "lib/fxl/logging.h" -#include "txt/asset_font_style_set.h" - -namespace txt { - -namespace { - -void UnmapMemory(const void* buffer, void* context) { - static_assert(sizeof(void*) == sizeof(uint64_t), "pointers aren't 64-bit"); - const uint64_t size = reinterpret_cast(context); - zx::vmar::root_self().unmap(reinterpret_cast(buffer), size); -} - -sk_sp MakeSkDataFromVMO(const fsl::SizedVmoTransportPtr& vmo) { - if (!fsl::SizedVmo::IsSizeValid(vmo->vmo, vmo->size) || - vmo->size > std::numeric_limits::max()) { - return nullptr; - } - uint64_t size = vmo->size; - uintptr_t buffer = 0; - zx_status_t status = zx::vmar::root_self().map(0, vmo->vmo, 0, size, - ZX_VM_FLAG_PERM_READ, &buffer); - if (status != ZX_OK) - return nullptr; - return SkData::MakeWithProc(reinterpret_cast(buffer), size, - UnmapMemory, reinterpret_cast(size)); -} - -fonts::FontSlant ToFontSlant(SkFontStyle::Slant slant) { - return (slant == SkFontStyle::kItalic_Slant) ? fonts::FontSlant::ITALIC - : fonts::FontSlant::UPRIGHT; -} - -} // anonymous namespace - -FuchsiaFontManager::FuchsiaFontManager(fonts::FontProviderPtr provider) - : font_provider_(std::move(provider)) {} - -FuchsiaFontManager::~FuchsiaFontManager() = default; - -int FuchsiaFontManager::onCountFamilies() const { - FXL_DCHECK(false); - return 0; -} - -void FuchsiaFontManager::onGetFamilyName(int index, SkString* familyName) const { - FXL_DCHECK(false); -} - -SkFontStyleSet* FuchsiaFontManager::onCreateStyleSet(int index) const { - FXL_DCHECK(false); - return nullptr; -} - -SkFontStyleSet* FuchsiaFontManager::onMatchFamily( - const char family_name[]) const { - sk_sp typeface(onMatchFamilyStyle(family_name, SkFontStyle())); - if (!typeface) - return nullptr; - - sk_sp font_style_set( - sk_make_sp()); - font_style_set->registerTypeface(typeface); - - return font_style_set.release(); -} - -SkTypeface* FuchsiaFontManager::onMatchFamilyStyle( - const char family_name[], const SkFontStyle& style) const { - auto request = fonts::FontRequest::New(); - request->family = family_name; - request->weight = style.weight(); - request->width = style.width(); - request->slant = ToFontSlant(style.slant()); - - fonts::FontResponsePtr response; - font_provider_->GetFont( - std::move(request), - [&response](fonts::FontResponsePtr r) { response = std::move(r); }); - font_provider_.WaitForResponse(); - - FXL_DCHECK(response) - << "Unable to contact the font provider. Did you run " - "Flutter in an environment that has a font manager?\n"; - - if (!response) - return nullptr; - - sk_sp data = MakeSkDataFromVMO(response->data->vmo); - if (!data) - return nullptr; - - sk_sp typeface = - SkFontMgr::RefDefault()->makeFromData(std::move(data)); - - return typeface.release(); -} - -SkTypeface* FuchsiaFontManager::onMatchFamilyStyleCharacter( - const char familyName[], - const SkFontStyle&, - const char* bcp47[], - int bcp47Count, - SkUnichar character) const { - return nullptr; -} - -SkTypeface* FuchsiaFontManager::onMatchFaceStyle(const SkTypeface*, - const SkFontStyle&) const { - FXL_DCHECK(false); - return nullptr; -} - -sk_sp FuchsiaFontManager::onMakeFromData(sk_sp, - int ttcIndex) const { - FXL_DCHECK(false); - return nullptr; -} - -sk_sp FuchsiaFontManager::onMakeFromStreamIndex( - std::unique_ptr, - int ttcIndex) const { - FXL_DCHECK(false); - return nullptr; -} - -sk_sp FuchsiaFontManager::onMakeFromStreamArgs( - std::unique_ptr, - const SkFontArguments&) const { - FXL_DCHECK(false); - return nullptr; -} - -sk_sp FuchsiaFontManager::onMakeFromFile(const char path[], - int ttcIndex) const { - FXL_DCHECK(false); - return nullptr; -} - -sk_sp FuchsiaFontManager::onLegacyMakeTypeface( - const char familyName[], - SkFontStyle) const { - FXL_DCHECK(false); - return nullptr; -} - -} // namespace txt diff --git a/content_handler/fuchsia_font_manager.h b/content_handler/fuchsia_font_manager.h deleted file mode 100644 index 1d13a88747f4f..0000000000000 --- a/content_handler/fuchsia_font_manager.h +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Copyright 2017 Google Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef TXT_FUCHSIA_FONT_MANAGER_H_ -#define TXT_FUCHSIA_FONT_MANAGER_H_ - -#include -#include "lib/fonts/fidl/font_provider.fidl.h" -#include "lib/fxl/macros.h" -#include "third_party/skia/include/core/SkStream.h" -#include "third_party/skia/include/core/SkTypeface.h" -#include "third_party/skia/include/ports/SkFontMgr.h" - -namespace txt { - -class FuchsiaFontManager : public SkFontMgr { - public: - FuchsiaFontManager(fonts::FontProviderPtr provider); - - ~FuchsiaFontManager() override; - - protected: - // |SkFontMgr| - int onCountFamilies() const override; - - // |SkFontMgr| - void onGetFamilyName(int index, SkString* familyName) const override; - - // |SkFontMgr| - SkFontStyleSet* onMatchFamily(const char familyName[]) const override; - - // |SkFontMgr| - SkFontStyleSet* onCreateStyleSet(int index) const override; - - // |SkFontMgr| - SkTypeface* onMatchFamilyStyle(const char familyName[], - const SkFontStyle&) const override; - - // |SkFontMgr| - SkTypeface* onMatchFamilyStyleCharacter(const char familyName[], - const SkFontStyle&, - const char* bcp47[], - int bcp47Count, - SkUnichar character) const override; - // |SkFontMgr| - SkTypeface* onMatchFaceStyle(const SkTypeface*, - const SkFontStyle&) const override; - - // |SkFontMgr| - sk_sp onMakeFromData(sk_sp, int ttcIndex) const override; - - // |SkFontMgr| - sk_sp onMakeFromStreamIndex(std::unique_ptr, - int ttcIndex) const override; - - // |SkFontMgr| - sk_sp onMakeFromStreamArgs(std::unique_ptr, - const SkFontArguments&) const override; - - // |SkFontMgr| - sk_sp onMakeFromFile(const char path[], - int ttcIndex) const override; - - // |SkFontMgr| - sk_sp onLegacyMakeTypeface(const char familyName[], - SkFontStyle) const override; - - FXL_DISALLOW_COPY_AND_ASSIGN(FuchsiaFontManager); - - private: - mutable fonts::FontProviderPtr font_provider_; -}; - -} // namespace txt - -#endif // TXT_FUCHSIA_FONT_MANAGER_H_ diff --git a/content_handler/main.cc b/content_handler/main.cc deleted file mode 100644 index d3eac3c81dcbf..0000000000000 --- a/content_handler/main.cc +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright 2016 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include - -#include "flutter/content_handler/app.h" -#include "lib/fsl/tasks/message_loop.h" - -int main(int argc, const char** argv) { - fsl::MessageLoop loop; - trace::TraceProvider provider(loop.async()); - flutter_runner::App app; - loop.Run(); - return 0; -} diff --git a/content_handler/meta/sandbox b/content_handler/meta/sandbox deleted file mode 100644 index 1fd4f971fdaac..0000000000000 --- a/content_handler/meta/sandbox +++ /dev/null @@ -1,7 +0,0 @@ -{ - "features": [ - "root-ssl-certificates", - "system-temp", - "vulkan" - ] -} diff --git a/content_handler/rasterizer.cc b/content_handler/rasterizer.cc deleted file mode 100644 index b720809b17a45..0000000000000 --- a/content_handler/rasterizer.cc +++ /dev/null @@ -1,19 +0,0 @@ -// Copyright 2016 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "flutter/content_handler/rasterizer.h" -#include "flutter/content_handler/vulkan_rasterizer.h" - -namespace flutter_runner { - -Rasterizer::~Rasterizer() = default; - -std::unique_ptr Rasterizer::Create() { - auto vulkan_rasterizer = std::make_unique(); - FXL_CHECK(vulkan_rasterizer) - << "The vulkan rasterizer must be correctly initialized."; - return vulkan_rasterizer; -} - -} // namespace flutter_runner diff --git a/content_handler/rasterizer.h b/content_handler/rasterizer.h deleted file mode 100644 index c00c39b3c457f..0000000000000 --- a/content_handler/rasterizer.h +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright 2016 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef FLUTTER_CONTENT_HANDLER_RASTERIZER_H_ -#define FLUTTER_CONTENT_HANDLER_RASTERIZER_H_ - -#include - -#include "flutter/flow/layers/layer_tree.h" -#include "lib/fxl/functional/closure.h" -#include "lib/fxl/macros.h" -#include "zircon/system/ulib/zx/include/zx/eventpair.h" - -namespace flutter_runner { - -class Rasterizer { - public: - virtual ~Rasterizer(); - - static std::unique_ptr Create(); - - virtual void SetScene( - f1dl::InterfaceHandle mozart, - zx::eventpair import_token, - fxl::Closure metrics_changed_callback) = 0; - - virtual void Draw(std::unique_ptr layer_tree, - fxl::Closure callback) = 0; -}; - -} // namespace flutter_runner - -#endif // FLUTTER_CONTENT_HANDLER_RASTERIZER_H_ diff --git a/content_handler/runtime_holder.cc b/content_handler/runtime_holder.cc deleted file mode 100644 index a69420896ffc7..0000000000000 --- a/content_handler/runtime_holder.cc +++ /dev/null @@ -1,917 +0,0 @@ -// Copyright 2016 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "flutter/content_handler/runtime_holder.h" - -#include -#include -#include -#include -#include - -#include "dart-pkg/zircon/sdk_ext/handle.h" -#include "flutter/assets/zip_asset_store.h" -#include "flutter/common/threads.h" -#include "flutter/content_handler/accessibility_bridge.h" -#include "flutter/content_handler/rasterizer.h" -#include "flutter/content_handler/service_protocol_hooks.h" -#include "flutter/lib/snapshot/snapshot.h" -#include "flutter/lib/ui/window/pointer_data_packet.h" -#include "flutter/runtime/asset_font_selector.h" -#include "flutter/runtime/dart_controller.h" -#include "flutter/runtime/dart_init.h" -#include "flutter/runtime/runtime_init.h" -#include "lib/app/cpp/connect.h" -#include "lib/fsl/vmo/vector.h" -#include "lib/fxl/files/path.h" -#include "lib/fxl/files/unique_fd.h" -#include "lib/fxl/functional/make_copyable.h" -#include "lib/fxl/logging.h" -#include "lib/fxl/time/time_delta.h" -#include "lib/tonic/logging/dart_error.h" -#include "lib/zip/create_unzipper.h" -#include "third_party/dart/runtime/include/dart_api.h" -#include "third_party/rapidjson/rapidjson/document.h" -#include "third_party/rapidjson/rapidjson/stringbuffer.h" -#include "third_party/rapidjson/rapidjson/writer.h" - -using tonic::DartConverter; -using tonic::ToDart; - -namespace flutter_runner { -namespace { - -constexpr char kKernelKey[] = "kernel_blob.bin"; -constexpr char kSnapshotKey[] = "snapshot_blob.bin"; -constexpr char kDylibKey[] = "libapp.so"; -constexpr char kAssetChannel[] = "flutter/assets"; -constexpr char kKeyEventChannel[] = "flutter/keyevent"; -constexpr char kTextInputChannel[] = "flutter/textinput"; -constexpr char kFlutterPlatformChannel[] = "flutter/platform"; -constexpr char kFuchsiaPackageResourceDirectory[] = "pkg/data"; -constexpr char kDartPkgContentsKey[] = "dart-pkg/contents"; - -void SetThreadName(fxl::RefPtr runner, std::string name) { - runner->PostTask([name]() { - zx::thread::self().set_property(ZX_PROP_NAME, name.c_str(), name.size()); - Dart_SetThreadName(name.c_str()); - }); -} - -blink::PointerData::Change GetChangeFromPointerEventPhase( - mozart::PointerEvent::Phase phase) { - switch (phase) { - case mozart::PointerEvent::Phase::ADD: - return blink::PointerData::Change::kAdd; - case mozart::PointerEvent::Phase::HOVER: - return blink::PointerData::Change::kHover; - case mozart::PointerEvent::Phase::DOWN: - return blink::PointerData::Change::kDown; - case mozart::PointerEvent::Phase::MOVE: - return blink::PointerData::Change::kMove; - case mozart::PointerEvent::Phase::UP: - return blink::PointerData::Change::kUp; - case mozart::PointerEvent::Phase::REMOVE: - return blink::PointerData::Change::kRemove; - case mozart::PointerEvent::Phase::CANCEL: - return blink::PointerData::Change::kCancel; - default: - return blink::PointerData::Change::kCancel; - } -} - -blink::PointerData::DeviceKind GetKindFromPointerType( - mozart::PointerEvent::Type type) { - switch (type) { - case mozart::PointerEvent::Type::TOUCH: - return blink::PointerData::DeviceKind::kTouch; - case mozart::PointerEvent::Type::MOUSE: - return blink::PointerData::DeviceKind::kMouse; - default: - return blink::PointerData::DeviceKind::kTouch; - } -} - -} // namespace - -RuntimeHolder::RuntimeHolder() - : view_listener_binding_(this), - input_listener_binding_(this), - text_input_binding_(this), - weak_factory_(this) {} - -RuntimeHolder::~RuntimeHolder() { - blink::Threads::Gpu()->PostTask( - fxl::MakeCopyable([rasterizer = std::move(rasterizer_)](){ - // Deletes rasterizer. - })); -} - -void RuntimeHolder::Init( - fdio_ns_t* namespc, - std::unique_ptr context, - f1dl::InterfaceRequest outgoing_services, - std::vector bundle) { - FXL_DCHECK(!rasterizer_); - rasterizer_ = Rasterizer::Create(); - FXL_DCHECK(rasterizer_); - - namespc_ = namespc; - dirfd_ = fdio_ns_opendir(namespc); - if (dirfd_ == -1) { - FXL_LOG(ERROR) << "Failed to get fd for namespace"; - return; - } - context_ = std::move(context); - outgoing_services_ = std::move(outgoing_services); - - context_->ConnectToEnvironmentService(view_manager_.NewRequest()); - - // TODO(zarah): remove bundle entirely once flx is removed. - InitRootBundle(std::move(bundle)); - - const uint8_t* vm_snapshot_data; - const uint8_t* vm_snapshot_instr; - const uint8_t* default_isolate_snapshot_data; - const uint8_t* default_isolate_snapshot_instr; - if (!Dart_IsPrecompiledRuntime()) { - vm_snapshot_data = ::kDartVmSnapshotData; - vm_snapshot_instr = ::kDartVmSnapshotInstructions; - default_isolate_snapshot_data = ::kDartIsolateCoreSnapshotData; - default_isolate_snapshot_instr = ::kDartIsolateCoreSnapshotInstructions; - } else { - std::vector dylib_blob; - if (!GetAssetAsBuffer(kDylibKey, &dylib_blob)) { - FXL_LOG(ERROR) << "Failed to extract app dylib"; - return; - } - - fsl::SizedVmo dylib_vmo; - if (!fsl::VmoFromVector(dylib_blob, &dylib_vmo)) { - FXL_LOG(ERROR) << "Failed to load app dylib"; - return; - } - - dlerror(); - dylib_handle_ = dlopen_vmo(dylib_vmo.vmo().get(), RTLD_LAZY); - if (dylib_handle_ == nullptr) { - FXL_LOG(ERROR) << "dlopen failed: " << dlerror(); - return; - } - vm_snapshot_data = reinterpret_cast( - dlsym(dylib_handle_, "_kDartVmSnapshotData")); - vm_snapshot_instr = reinterpret_cast( - dlsym(dylib_handle_, "_kDartVmSnapshotInstructions")); - default_isolate_snapshot_data = reinterpret_cast( - dlsym(dylib_handle_, "_kDartIsolateSnapshotData")); - default_isolate_snapshot_instr = reinterpret_cast( - dlsym(dylib_handle_, "_kDartIsolateSnapshotInstructions")); - } - - // TODO(rmacnak): We should generate the AOT vm snapshot separately from - // each app so we can initialize before receiving the first app bundle. - static bool first_app = true; - if (first_app) { - first_app = false; - blink::InitRuntime(vm_snapshot_data, vm_snapshot_instr, - default_isolate_snapshot_data, - default_isolate_snapshot_instr, - /* bundle_path = */ ""); - - // This has to happen after the Dart runtime is initialized. - SetThreadName(blink::Threads::UI(), "ui"); - SetThreadName(blink::Threads::Gpu(), "gpu"); - SetThreadName(blink::Threads::IO(), "io"); - - blink::SetRegisterNativeServiceProtocolExtensionHook( - ServiceProtocolHooks::RegisterHooks); - } - - accessibility_bridge_ = std::make_unique(context_.get()); -} - -void RuntimeHolder::CreateView( - const std::string& script_uri, - f1dl::InterfaceRequest view_owner_request, - f1dl::InterfaceRequest services) { - if (view_listener_binding_.is_bound()) { - // TODO(jeffbrown): Refactor this to support multiple view instances - // sharing the same underlying root bundle (but with different runtimes). - FXL_LOG(ERROR) << "The view has already been created."; - return; - } - - std::vector kernel; - std::vector snapshot; - bool maybe_running_from_source = false; - if (!Dart_IsPrecompiledRuntime()) { - if (!GetAssetAsBuffer(kKernelKey, &kernel) && - !GetAssetAsBuffer(kSnapshotKey, &snapshot)) { - maybe_running_from_source = true; - FXL_LOG(INFO) << "No kernel or snapshot in root bundle."; - } - } - - // Create the view. - zx::eventpair import_token, export_token; - zx_status_t status = zx::eventpair::create(0u, &import_token, &export_token); - if (status != ZX_OK) { - FXL_LOG(ERROR) << "Could not create an event pair."; - return; - } - mozart::ViewListenerPtr view_listener; - view_listener_binding_.Bind(view_listener.NewRequest()); - view_manager_->CreateView(view_.NewRequest(), // view - std::move(view_owner_request), // view owner - std::move(view_listener), // view listener - std::move(export_token), // export token - script_uri // diagnostic label - ); - component::ServiceProviderPtr view_services; - view_->GetServiceProvider(view_services.NewRequest()); - - // Listen for input events. - ConnectToService(view_services.get(), input_connection_.NewRequest()); - mozart::InputListenerPtr input_listener; - input_listener_binding_.Bind(input_listener.NewRequest()); - input_connection_->SetEventListener(std::move(input_listener)); - - // Setup the session. - f1dl::InterfaceHandle scenic; - view_manager_->GetScenic(scenic.NewRequest()); - - blink::Threads::Gpu()->PostTask(fxl::MakeCopyable([ - rasterizer = rasterizer_.get(), // - scenic = std::move(scenic), // - import_token = std::move(import_token), // - weak_runtime_holder = GetWeakPtr() - ]() mutable { - ASSERT_IS_GPU_THREAD; - rasterizer->SetScene( - std::move(scenic), std::move(import_token), - // TODO(MZ-222): Ideally we would immediately redraw the previous layer - // tree when the metrics change since there's no need to rerecord it. - // However, we want to make sure there's only one outstanding frame. - // We should improve the frame scheduling so that the rasterizer thread - // can self-schedule re-rasterization. - [weak_runtime_holder] { - // This is on the GPU thread thread. Post to the Platform/UI - // thread for the completion callback. - ASSERT_IS_GPU_THREAD; - blink::Threads::Platform()->PostTask([weak_runtime_holder]() { - // On the Platform/UI thread. - ASSERT_IS_UI_THREAD; - if (weak_runtime_holder) { - weak_runtime_holder->OnRedrawFrame(); - } - }); - }); - })); - runtime_ = blink::RuntimeController::Create(this); - - const uint8_t* isolate_snapshot_data; - const uint8_t* isolate_snapshot_instr; - if (!Dart_IsPrecompiledRuntime()) { - isolate_snapshot_data = ::kDartIsolateCoreSnapshotData; - isolate_snapshot_instr = ::kDartIsolateCoreSnapshotInstructions; - } else { - isolate_snapshot_data = reinterpret_cast( - dlsym(dylib_handle_, "_kDartIsolateSnapshotData")); - isolate_snapshot_instr = reinterpret_cast( - dlsym(dylib_handle_, "_kDartIsolateSnapshotInstructions")); - } - runtime_->CreateDartController(script_uri, isolate_snapshot_data, - isolate_snapshot_instr, dirfd_); - - runtime_->SetViewportMetrics(viewport_metrics_); - - if (Dart_IsPrecompiledRuntime()) { - runtime_->dart_controller()->RunFromPrecompiledSnapshot(); - } else if (!kernel.empty()) { - runtime_->dart_controller()->RunFromKernel(std::move(kernel)); - } else if (maybe_running_from_source) { - std::vector data; - if (!GetAssetAsBuffer(kDartPkgContentsKey, &data)) { - FXL_LOG(ERROR) << "Contents file not found for " << script_uri; - return; - } - std::string package_name(data.begin(), data.end()); - std::string main_dart = "pkg/data/dart-pkg/" + package_name + "/lib/main.dart"; - FXL_LOG(INFO) << "Running from source with entrypoint: '" << main_dart - << "'"; - runtime_->dart_controller()->RunFromSource(main_dart, "pkg/data/dart-pkg/.packages"); - } else { - runtime_->dart_controller()->RunFromScriptSnapshot(snapshot.data(), - snapshot.size()); - } - - runtime_->dart_controller()->dart_state()->SetReturnCodeCallback( - [this](int32_t return_code) { return_code_ = return_code; }); -} - -Dart_Port RuntimeHolder::GetUIIsolateMainPort() { - if (!runtime_) - return ILLEGAL_PORT; - return runtime_->GetMainPort(); -} - -void RuntimeHolder::DidShutdownMainIsolate() { - if (main_isolate_shutdown_callback_) { - main_isolate_shutdown_callback_(); - } -} - -void RuntimeHolder::SetMainIsolateShutdownCallback( - std::function callback) { - main_isolate_shutdown_callback_ = callback; -} - -std::string RuntimeHolder::GetUIIsolateName() { - if (!runtime_) { - return ""; - } - return runtime_->GetIsolateName(); -} - -std::string RuntimeHolder::DefaultRouteName() { - return "/"; -} - -void RuntimeHolder::ScheduleFrame(bool regenerate_layer_tree) { - ASSERT_IS_UI_THREAD; - // TODO(mravn): We assume regenerate_layer_tree is true (and thus ignore - // that we may be able to reuse the current layer tree.) - if (!frame_scheduled_) { - frame_scheduled_ = true; - if (!frame_outstanding_) - PostBeginFrame(); - } -} - -void RuntimeHolder::Render(std::unique_ptr layer_tree) { - if (!frame_outstanding_ || frame_rendering_) { - // TODO(MZ-193): We probably shouldn't be discarding the layer tree here. - // But then, Flutter shouldn't be calling Render() if we didn't call - // BeginFrame(). - return; // Spurious. - } - - frame_rendering_ = true; - - layer_tree->set_construction_time(fxl::TimePoint::Now() - - last_begin_frame_time_); - layer_tree->set_frame_size(SkISize::Make(viewport_metrics_.physical_width, - viewport_metrics_.physical_height)); - layer_tree->set_device_pixel_ratio(viewport_metrics_.device_pixel_ratio); - - // We are on the Platform/UI thread. Post to the GPU thread to render. - ASSERT_IS_PLATFORM_THREAD; - blink::Threads::Gpu()->PostTask(fxl::MakeCopyable([ - rasterizer = rasterizer_.get(), // - layer_tree = std::move(layer_tree), // - weak_runtime_holder = GetWeakPtr() // - ]() mutable { - // On the GPU Thread. - ASSERT_IS_GPU_THREAD; - rasterizer->Draw(std::move(layer_tree), [weak_runtime_holder]() { - // This is on the GPU thread thread. Post to the Platform/UI thread - // for the completion callback. - ASSERT_IS_GPU_THREAD; - blink::Threads::Platform()->PostTask([weak_runtime_holder]() { - // On the Platform/UI thread. - ASSERT_IS_UI_THREAD; - if (weak_runtime_holder) { - weak_runtime_holder->frame_rendering_ = false; - weak_runtime_holder->OnFrameComplete(); - } - }); - }); - })); -} - -void RuntimeHolder::UpdateSemantics(blink::SemanticsNodeUpdates update) { - accessibility_bridge_->UpdateSemantics(update); -} - -void RuntimeHolder::HandlePlatformMessage( - fxl::RefPtr message) { - if (message->channel() == kAssetChannel) { - if (HandleAssetPlatformMessage(message.get())) - return; - } else if (message->channel() == kTextInputChannel) { - if (HandleTextInputPlatformMessage(message.get())) - return; - } else if (message->channel() == kFlutterPlatformChannel) { - if (HandleFlutterPlatformMessage(message.get())) - return; - } - if (auto response = message->response()) - response->CompleteEmpty(); -} - -void RuntimeHolder::DidCreateMainIsolate(Dart_Isolate isolate) { - if (asset_provider_) { - blink::AssetFontSelector::Install(asset_provider_); - } else if (asset_store_) { - blink::AssetFontSelector::Install(asset_store_); - } - InitDartIoInternal(); - InitFuchsia(); - InitZircon(); - InitScenicInternal(); -} - -void RuntimeHolder::InitDartIoInternal() { - Dart_Handle io_lib = Dart_LookupLibrary(ToDart("dart:io")); - - // Set up the namespace. - Dart_Handle namespace_type = - Dart_GetType(io_lib, ToDart("_Namespace"), 0, nullptr); - DART_CHECK_VALID(namespace_type); - Dart_Handle namespace_args[1]; - namespace_args[0] = Dart_NewInteger(reinterpret_cast(namespc_)); - DART_CHECK_VALID(namespace_args[0]); - DART_CHECK_VALID(Dart_Invoke(namespace_type, ToDart("_setupNamespace"), 1, - namespace_args)); - - // Disable dart:io exit() - Dart_Handle embedder_config_type = - Dart_GetType(io_lib, ToDart("_EmbedderConfig"), 0, nullptr); - DART_CHECK_VALID(embedder_config_type); - DART_CHECK_VALID( - Dart_SetField(embedder_config_type, ToDart("_mayExit"), Dart_False())); -} - -void RuntimeHolder::InitFuchsia() { - f1dl::InterfaceHandle environment; - context_->ConnectToEnvironmentService(environment.NewRequest()); - fuchsia::dart::Initialize(std::move(environment), - std::move(outgoing_services_)); - - component::ServiceProviderPtr parent_env_service_provider; - context_->environment()->GetServices( - parent_env_service_provider.NewRequest()); - ConnectToService(parent_env_service_provider.get(), clipboard_.NewRequest()); -} - -void RuntimeHolder::InitZircon() { - Dart_Handle zircon_lib = Dart_LookupLibrary(ToDart("dart:zircon")); - DART_CHECK_VALID(zircon_lib); - - Dart_Handle namespace_type = - Dart_GetType(zircon_lib, ToDart("_Namespace"), 0, nullptr); - DART_CHECK_VALID(namespace_type); - DART_CHECK_VALID(Dart_SetField(namespace_type, ToDart("_namespace"), - ToDart(reinterpret_cast(namespc_)))); -} - -void RuntimeHolder::InitScenicInternal() { - f1dl::InterfaceHandle view_container; - view_->GetContainer(view_container.NewRequest()); - - Dart_Handle mozart_internal = - Dart_LookupLibrary(ToDart("dart:mozart.internal")); - - DART_CHECK_VALID(Dart_SetNativeResolver(mozart_internal, mozart::NativeLookup, - mozart::NativeSymbol)); - - DART_CHECK_VALID( - Dart_SetField(mozart_internal, ToDart("_context"), - DartConverter::ToDart(reinterpret_cast( - static_cast(this))))); - - DART_CHECK_VALID(Dart_SetField(mozart_internal, ToDart("_viewContainer"), - ToDart(zircon::dart::Handle::Create( - view_container.TakeChannel().release())))); -} - -void RuntimeHolder::InitRootBundle(std::vector bundle) { - if (!bundle.empty()) { - root_bundle_data_ = std::move(bundle); - asset_store_ = fxl::MakeRefCounted( - GetUnzipperProviderForRootBundle()); - } else { - fxl::UniqueFD root_dir(fdio_ns_opendir(namespc_)); - if (!root_dir.is_valid()) { - FXL_LOG(ERROR) << "Unable to load root dir"; - return; - } - fxl::UniqueFD data_dir(openat(root_dir.get(), - kFuchsiaPackageResourceDirectory, - O_RDONLY | O_DIRECTORY)); - if (!data_dir.is_valid()) { - FXL_LOG(ERROR) << "Unable to load data dir"; - return; - } - asset_provider_ = - fxl::MakeRefCounted(std::move(data_dir)); - } -} - -mozart::View* RuntimeHolder::GetMozartView() { - return view_.get(); -} - -bool RuntimeHolder::HandleAssetPlatformMessage( - blink::PlatformMessage* message) { - fxl::RefPtr response = message->response(); - if (!response) - return false; - const auto& data = message->data(); - std::string asset_name(reinterpret_cast(data.data()), - data.size()); - std::vector asset_data; - if (GetAssetAsBuffer(asset_name, &asset_data)) { - response->Complete(std::move(asset_data)); - } else { - response->CompleteEmpty(); - } - return true; -} - -bool RuntimeHolder::GetAssetAsBuffer(const std::string& name, - std::vector* data) { - return (asset_provider_ && - asset_provider_->GetAsBuffer(name, data)) || - (asset_store_ && asset_store_->GetAsBuffer(name, data)); -} - -bool RuntimeHolder::HandleFlutterPlatformMessage( - blink::PlatformMessage* message) { - const auto& data = message->data(); - rapidjson::Document document; - document.Parse(reinterpret_cast(data.data()), data.size()); - if (document.HasParseError() || !document.IsObject()) { - return false; - } - - auto root = document.GetObject(); - auto method = root.FindMember("method"); - if (method == root.MemberEnd() || !method->value.IsString()) { - return false; - } - - fxl::RefPtr response = message->response(); - if (method->value == "Clipboard.setData") { - auto text = root["args"]["text"].GetString(); - clipboard_->Push(text); - response->CompleteEmpty(); - } else if (method->value == "Clipboard.getData") { - clipboard_->Peek([response](const ::f1dl::String& text) { - rapidjson::StringBuffer json_buffer; - rapidjson::Writer writer(json_buffer); - writer.StartArray(); - writer.StartObject(); - writer.Key("text"); - writer.String(text); - writer.EndObject(); - writer.EndArray(); - - std::string result = json_buffer.GetString(); - response->Complete(std::vector{result.begin(), result.end()}); - }); - } else { - response->CompleteEmpty(); - } - return true; -} - -bool RuntimeHolder::HandleTextInputPlatformMessage( - blink::PlatformMessage* message) { - const auto& data = message->data(); - - rapidjson::Document document; - document.Parse(reinterpret_cast(data.data()), data.size()); - if (document.HasParseError() || !document.IsObject()) - return false; - auto root = document.GetObject(); - auto method = root.FindMember("method"); - if (method == root.MemberEnd() || !method->value.IsString()) - return false; - - if (method->value == "TextInput.show") { - if (input_method_editor_) { - input_method_editor_->Show(); - } - } else if (method->value == "TextInput.hide") { - if (input_method_editor_) { - input_method_editor_->Hide(); - } - } else if (method->value == "TextInput.setClient") { - current_text_input_client_ = 0; - if (text_input_binding_.is_bound()) - text_input_binding_.Unbind(); - input_method_editor_ = nullptr; - - auto args = root.FindMember("args"); - if (args == root.MemberEnd() || !args->value.IsArray() || - args->value.Size() != 2) - return false; - const auto& configuration = args->value[1]; - if (!configuration.IsObject()) - return false; - // TODO(abarth): Read the keyboard type form the configuration. - current_text_input_client_ = args->value[0].GetInt(); - mozart::TextInputStatePtr state = mozart::TextInputState::New(); - state->text = std::string(); - state->selection = mozart::TextSelection::New(); - state->composing = mozart::TextRange::New(); - input_connection_->GetInputMethodEditor( - mozart::KeyboardType::TEXT, mozart::InputMethodAction::DONE, - std::move(state), text_input_binding_.NewBinding(), - input_method_editor_.NewRequest()); - } else if (method->value == "TextInput.setEditingState") { - if (input_method_editor_) { - auto args_it = root.FindMember("args"); - if (args_it == root.MemberEnd() || !args_it->value.IsObject()) - return false; - const auto& args = args_it->value; - mozart::TextInputStatePtr state = mozart::TextInputState::New(); - state->selection = mozart::TextSelection::New(); - state->composing = mozart::TextRange::New(); - // TODO(abarth): Deserialize state. - auto text = args.FindMember("text"); - if (text != args.MemberEnd() && text->value.IsString()) - state->text = text->value.GetString(); - auto selection_base = args.FindMember("selectionBase"); - if (selection_base != args.MemberEnd() && selection_base->value.IsInt()) - state->selection->base = selection_base->value.GetInt(); - auto selection_extent = args.FindMember("selectionExtent"); - if (selection_extent != args.MemberEnd() && - selection_extent->value.IsInt()) - state->selection->extent = selection_extent->value.GetInt(); - auto selection_affinity = args.FindMember("selectionAffinity"); - if (selection_affinity != args.MemberEnd() && - selection_affinity->value.IsString() && - selection_affinity->value == "TextAffinity.upstream") - state->selection->affinity = mozart::TextAffinity::UPSTREAM; - else - state->selection->affinity = mozart::TextAffinity::DOWNSTREAM; - // We ignore selectionIsDirectional because that concept doesn't exist on - // Fuchsia. - auto composing_base = args.FindMember("composingBase"); - if (composing_base != args.MemberEnd() && composing_base->value.IsInt()) - state->composing->start = composing_base->value.GetInt(); - auto composing_extent = args.FindMember("composingExtent"); - if (composing_extent != args.MemberEnd() && - composing_extent->value.IsInt()) - state->composing->end = composing_extent->value.GetInt(); - input_method_editor_->SetState(std::move(state)); - } - } else if (method->value == "TextInput.clearClient") { - current_text_input_client_ = 0; - if (text_input_binding_.is_bound()) - text_input_binding_.Unbind(); - input_method_editor_ = nullptr; - } else { - FXL_DLOG(ERROR) << "Unknown " << kTextInputChannel << " method " - << method->value.GetString(); - } - - return false; -} - -blink::UnzipperProvider RuntimeHolder::GetUnzipperProviderForRootBundle() { - return [self = GetWeakPtr()]() { - if (!self) - return zip::UniqueUnzipper(); - return zip::CreateUnzipper(&self->root_bundle_data_); - }; -} - -void RuntimeHolder::OnEvent(mozart::InputEventPtr event, - const OnEventCallback& callback) { - bool handled = false; - if (event->is_pointer()) { - const mozart::PointerEventPtr& pointer = event->get_pointer(); - blink::PointerData pointer_data; - pointer_data.time_stamp = pointer->event_time / 1000; - pointer_data.change = GetChangeFromPointerEventPhase(pointer->phase); - pointer_data.kind = GetKindFromPointerType(pointer->type); - pointer_data.device = pointer->pointer_id; - pointer_data.physical_x = pointer->x * viewport_metrics_.device_pixel_ratio; - pointer_data.physical_y = pointer->y * viewport_metrics_.device_pixel_ratio; - // Buttons are single bit values starting with kMousePrimaryButton = 1. - pointer_data.buttons = static_cast(pointer->buttons); - - switch (pointer_data.change) { - case blink::PointerData::Change::kDown: - down_pointers_.insert(pointer_data.device); - break; - case blink::PointerData::Change::kCancel: - case blink::PointerData::Change::kUp: - down_pointers_.erase(pointer_data.device); - break; - case blink::PointerData::Change::kMove: - if (down_pointers_.count(pointer_data.device) == 0) - pointer_data.change = blink::PointerData::Change::kHover; - break; - case blink::PointerData::Change::kAdd: - if (down_pointers_.count(pointer_data.device) != 0) { - FXL_DLOG(ERROR) << "Received add event for down pointer."; - } - break; - case blink::PointerData::Change::kRemove: - if (down_pointers_.count(pointer_data.device) != 0) { - FXL_DLOG(ERROR) << "Received remove event for down pointer."; - } - break; - case blink::PointerData::Change::kHover: - if (down_pointers_.count(pointer_data.device) != 0) { - FXL_DLOG(ERROR) << "Received hover event for down pointer."; - } - break; - } - - blink::PointerDataPacket packet(1); - packet.SetPointerData(0, pointer_data); - runtime_->DispatchPointerDataPacket(packet); - - handled = true; - } else if (event->is_keyboard()) { - const mozart::KeyboardEventPtr& keyboard = event->get_keyboard(); - const char* type = nullptr; - if (keyboard->phase == mozart::KeyboardEvent::Phase::PRESSED) - type = "keydown"; - else if (keyboard->phase == mozart::KeyboardEvent::Phase::REPEAT) - type = "keydown"; // TODO change this to keyrepeat - else if (keyboard->phase == mozart::KeyboardEvent::Phase::RELEASED) - type = "keyup"; - - if (type) { - rapidjson::Document document; - auto& allocator = document.GetAllocator(); - document.SetObject(); - document.AddMember("type", rapidjson::Value(type, strlen(type)), - allocator); - document.AddMember("keymap", rapidjson::Value("fuchsia"), allocator); - document.AddMember("hidUsage", keyboard->hid_usage, allocator); - document.AddMember("codePoint", keyboard->code_point, allocator); - document.AddMember("modifiers", keyboard->modifiers, allocator); - rapidjson::StringBuffer buffer; - rapidjson::Writer writer(buffer); - document.Accept(writer); - - const uint8_t* data = - reinterpret_cast(buffer.GetString()); - runtime_->DispatchPlatformMessage( - fxl::MakeRefCounted( - kKeyEventChannel, - std::vector(data, data + buffer.GetSize()), nullptr)); - handled = true; - } - } - callback(handled); -} - -void RuntimeHolder::OnPropertiesChanged( - mozart::ViewPropertiesPtr properties, - const OnPropertiesChangedCallback& callback) { - FXL_DCHECK(properties); - - // Attempt to read the device pixel ratio. - float pixel_ratio = 1.f; - if (auto& metrics = properties->display_metrics) { - pixel_ratio = metrics->device_pixel_ratio; - } - - // Apply view property changes. - if (auto& layout = properties->view_layout) { - viewport_metrics_.physical_width = layout->size->width * pixel_ratio; - viewport_metrics_.physical_height = layout->size->height * pixel_ratio; - viewport_metrics_.physical_padding_top = layout->inset->top * pixel_ratio; - viewport_metrics_.physical_padding_right = - layout->inset->right * pixel_ratio; - viewport_metrics_.physical_padding_bottom = - layout->inset->bottom * pixel_ratio; - viewport_metrics_.physical_padding_left = layout->inset->left * pixel_ratio; - viewport_metrics_.device_pixel_ratio = pixel_ratio; - runtime_->SetViewportMetrics(viewport_metrics_); - } - - ScheduleFrame(); - - callback(); -} - -void RuntimeHolder::DidUpdateState(mozart::TextInputStatePtr state, - mozart::InputEventPtr event) { - rapidjson::Document document; - auto& allocator = document.GetAllocator(); - - rapidjson::Value encoded_state(rapidjson::kObjectType); - encoded_state.AddMember("text", state->text.get(), allocator); - encoded_state.AddMember("selectionBase", state->selection->base, allocator); - encoded_state.AddMember("selectionExtent", state->selection->extent, - allocator); - switch (state->selection->affinity) { - case mozart::TextAffinity::UPSTREAM: - encoded_state.AddMember("selectionAffinity", - rapidjson::Value("TextAffinity.upstream"), - allocator); - break; - case mozart::TextAffinity::DOWNSTREAM: - encoded_state.AddMember("selectionAffinity", - rapidjson::Value("TextAffinity.downstream"), - allocator); - break; - } - encoded_state.AddMember("selectionIsDirectional", true, allocator); - encoded_state.AddMember("composingBase", state->composing->start, allocator); - encoded_state.AddMember("composingExtent", state->composing->end, allocator); - - rapidjson::Value args(rapidjson::kArrayType); - args.PushBack(current_text_input_client_, allocator); - args.PushBack(encoded_state, allocator); - - document.SetObject(); - document.AddMember("method", - rapidjson::Value("TextInputClient.updateEditingState"), - allocator); - document.AddMember("args", args, allocator); - - rapidjson::StringBuffer buffer; - rapidjson::Writer writer(buffer); - document.Accept(writer); - - const uint8_t* data = reinterpret_cast(buffer.GetString()); - runtime_->DispatchPlatformMessage(fxl::MakeRefCounted( - kTextInputChannel, std::vector(data, data + buffer.GetSize()), - nullptr)); -} - -void RuntimeHolder::OnAction(mozart::InputMethodAction action) { - rapidjson::Document document; - auto& allocator = document.GetAllocator(); - - rapidjson::Value args(rapidjson::kArrayType); - args.PushBack(current_text_input_client_, allocator); - - // Done is currently the only text input action defined by Flutter. - args.PushBack("TextInputAction.done", allocator); - - document.SetObject(); - document.AddMember( - "method", rapidjson::Value("TextInputClient.performAction"), allocator); - document.AddMember("args", args, allocator); - - rapidjson::StringBuffer buffer; - rapidjson::Writer writer(buffer); - document.Accept(writer); - - const uint8_t* data = reinterpret_cast(buffer.GetString()); - runtime_->DispatchPlatformMessage(fxl::MakeRefCounted( - kTextInputChannel, std::vector(data, data + buffer.GetSize()), - nullptr)); -} - -fxl::WeakPtr RuntimeHolder::GetWeakPtr() { - return weak_factory_.GetWeakPtr(); -} - -void RuntimeHolder::PostBeginFrame() { - blink::Threads::Platform()->PostTask([weak_runtime_holder = GetWeakPtr()]() { - // On the Platform/UI thread. - ASSERT_IS_UI_THREAD; - if (weak_runtime_holder) { - weak_runtime_holder->BeginFrame(); - } - }); -} - -void RuntimeHolder::BeginFrame() { - ASSERT_IS_UI_THREAD - FXL_DCHECK(frame_scheduled_); - FXL_DCHECK(!frame_outstanding_); - frame_scheduled_ = false; - frame_outstanding_ = true; - int64_t dart_frame_start_micros = Dart_TimelineGetMicros(); - last_begin_frame_time_ = fxl::TimePoint::Now(); - runtime_->BeginFrame(last_begin_frame_time_); - - if (frame_scheduled_) { - // HACK(rmacnak): This assumes 16ms/frame; it should use the frame deadline - // once we have access to it. Compare shell/common/animator.cc. - runtime_->NotifyIdle(dart_frame_start_micros + 16000); - } else { - // We don't have another frame pending, so we're waiting on user input - // or I/O. Allow the Dart VM 100 ms. - runtime_->NotifyIdle(dart_frame_start_micros + 100000); - } -} - -void RuntimeHolder::OnFrameComplete() { - ASSERT_IS_UI_THREAD - FXL_DCHECK(frame_outstanding_); - frame_outstanding_ = false; - if (frame_scheduled_) - PostBeginFrame(); -} - -void RuntimeHolder::OnRedrawFrame() { - if (!frame_outstanding_) - ScheduleFrame(); -} - -} // namespace flutter_runner diff --git a/content_handler/runtime_holder.h b/content_handler/runtime_holder.h deleted file mode 100644 index b22839a6ec17c..0000000000000 --- a/content_handler/runtime_holder.h +++ /dev/null @@ -1,152 +0,0 @@ -// Copyright 2016 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef FLUTTER_CONTENT_HANDLER_RUNTIME_HOLDER_H_ -#define FLUTTER_CONTENT_HANDLER_RUNTIME_HOLDER_H_ - -#include -#include - -#include - -#include "dart-pkg/fuchsia/sdk_ext/fuchsia.h" -#include "flutter/assets/asset_provider.h" -#include "flutter/assets/directory_asset_bundle.h" -#include "flutter/assets/unzipper_provider.h" -#include "flutter/assets/zip_asset_store.h" -#include "flutter/content_handler/accessibility_bridge.h" -#include "flutter/flow/layers/layer_tree.h" -#include "flutter/lib/ui/window/viewport_metrics.h" -#include "flutter/runtime/runtime_controller.h" -#include "flutter/runtime/runtime_delegate.h" -#include "lib/app/cpp/application_context.h" -#include "lib/app/fidl/application_environment.fidl.h" -#include "lib/app/fidl/service_provider.fidl.h" -#include "lib/clipboard/fidl/clipboard.fidl.h" -#include "lib/fidl/cpp/bindings/binding.h" -#include "lib/fxl/functional/closure.h" -#include "lib/fxl/macros.h" -#include "lib/fxl/memory/weak_ptr.h" -#include "lib/ui/flutter/sdk_ext/src/natives.h" -#include "lib/ui/input/fidl/input_connection.fidl.h" -#include "lib/ui/input/fidl/text_input.fidl.h" -#include "lib/ui/views/fidl/view_manager.fidl.h" - -namespace flutter_runner { - -class Rasterizer; - -class RuntimeHolder : public blink::RuntimeDelegate, - public mozart::NativesDelegate, - public mozart::ViewListener, - public mozart::InputListener, - public mozart::InputMethodEditorClient { - public: - RuntimeHolder(); - ~RuntimeHolder(); - - void Init(fdio_ns_t* namespc, - std::unique_ptr context, - f1dl::InterfaceRequest outgoing_services, - std::vector bundle); - void CreateView(const std::string& script_uri, - f1dl::InterfaceRequest view_owner_request, - f1dl::InterfaceRequest services); - - Dart_Port GetUIIsolateMainPort(); - std::string GetUIIsolateName(); - - int32_t return_code() { return return_code_; } - - void SetMainIsolateShutdownCallback(std::function callback); - - private: - // |blink::RuntimeDelegate| implementation: - std::string DefaultRouteName() override; - void ScheduleFrame(bool regenerate_layer_tree = true) override; - void Render(std::unique_ptr layer_tree) override; - void UpdateSemantics(blink::SemanticsNodeUpdates update) override; - void HandlePlatformMessage( - fxl::RefPtr message) override; - void DidCreateMainIsolate(Dart_Isolate isolate) override; - void DidShutdownMainIsolate() override; - - // |mozart::NativesDelegate| implementation: - mozart::View* GetMozartView() override; - - // |mozart::InputListener| implementation: - void OnEvent(mozart::InputEventPtr event, - const OnEventCallback& callback) override; - - // |mozart::ViewListener| implementation: - void OnPropertiesChanged( - mozart::ViewPropertiesPtr properties, - const OnPropertiesChangedCallback& callback) override; - - // |mozart::InputMethodEditorClient| implementation: - void DidUpdateState(mozart::TextInputStatePtr state, - mozart::InputEventPtr event) override; - void OnAction(mozart::InputMethodAction action) override; - - fxl::WeakPtr GetWeakPtr(); - - void InitRootBundle(std::vector bundle); - blink::UnzipperProvider GetUnzipperProviderForRootBundle(); - bool HandleAssetPlatformMessage(blink::PlatformMessage* message); - bool GetAssetAsBuffer(const std::string& name, std::vector* data); - bool HandleTextInputPlatformMessage(blink::PlatformMessage* message); - bool HandleFlutterPlatformMessage(blink::PlatformMessage* message); - - void InitDartIoInternal(); - void InitFuchsia(); - void InitZircon(); - void InitScenicInternal(); - - void PostBeginFrame(); - void BeginFrame(); - void OnFrameComplete(); - void OnRedrawFrame(); - void Invalidate(); - - fdio_ns_t* namespc_; - int dirfd_; - std::unique_ptr context_; - f1dl::InterfaceRequest outgoing_services_; - std::vector root_bundle_data_; - // TODO(zarah): Remove asset_store_ when flx is completely removed - fxl::RefPtr asset_store_; - fxl::RefPtr asset_provider_; - void* dylib_handle_ = nullptr; - std::unique_ptr rasterizer_; - std::unique_ptr runtime_; - blink::ViewportMetrics viewport_metrics_; - mozart::ViewManagerPtr view_manager_; - f1dl::Binding view_listener_binding_; - f1dl::Binding input_listener_binding_; - mozart::InputConnectionPtr input_connection_; - mozart::ViewPtr view_; - std::unordered_set down_pointers_; - mozart::InputMethodEditorPtr input_method_editor_; - f1dl::Binding text_input_binding_; - int current_text_input_client_ = 0; - fxl::TimePoint last_begin_frame_time_; - bool frame_outstanding_ = false; - bool frame_scheduled_ = false; - bool frame_rendering_ = false; - int32_t return_code_ = 0; - - fxl::WeakPtrFactory weak_factory_; - - std::unique_ptr accessibility_bridge_; - - std::function main_isolate_shutdown_callback_; - - modular::ClipboardPtr clipboard_; - - FXL_DISALLOW_COPY_AND_ASSIGN(RuntimeHolder); -}; - -} // namespace flutter_runner - -#endif // FLUTTER_CONTENT_HANDLER_RUNTIME_HOLDER_H_ diff --git a/content_handler/service_protocol_hooks.cc b/content_handler/service_protocol_hooks.cc deleted file mode 100644 index 947f2a226e615..0000000000000 --- a/content_handler/service_protocol_hooks.cc +++ /dev/null @@ -1,91 +0,0 @@ -// Copyright 2017 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "flutter/content_handler/service_protocol_hooks.h" - -#include - -#include -#include - -#include "flutter/common/threads.h" -#include "flutter/content_handler/app.h" -#include "lib/fxl/memory/weak_ptr.h" - -namespace flutter_runner { -namespace { - -constexpr char kViewIdPrefx[] = "_flutterView/"; - -static void AppendIsolateRef(std::stringstream* stream, - int64_t main_port, - const std::string name) { - *stream << "{\"type\":\"@Isolate\",\"fixedId\":true,\"id\":\"isolates/"; - *stream << main_port << "\",\"name\":\"" << name << "\","; - *stream << "\"number\":\"" << main_port << "\"}"; -} - -static void AppendFlutterView(std::stringstream* stream, - uintptr_t view_id, - int64_t isolate_id, - const std::string isolate_name) { - *stream << "{\"type\":\"FlutterView\", \"id\": \"" << kViewIdPrefx << "0x" - << std::hex << view_id << std::dec << "\""; - if (isolate_id != ILLEGAL_PORT) { - // Append the isolate (if it exists). - *stream << "," - << "\"isolate\":"; - AppendIsolateRef(stream, isolate_id, isolate_name); - } - *stream << "}"; -} - -} // namespace - -void ServiceProtocolHooks::RegisterHooks(bool running_precompiled_code) { - // Listing of FlutterViews. - Dart_RegisterRootServiceRequestCallback(kListViewsExtensionName, &ListViews, - nullptr); -} - -const char* ServiceProtocolHooks::kListViewsExtensionName = - "_flutter.listViews"; - -bool ServiceProtocolHooks::ListViews(const char* method, - const char** param_keys, - const char** param_values, - intptr_t num_params, - void* user_data, - const char** json_object) { - // Ask the App for the list of platform views. This will run a task on - // the UI thread before returning. - App& app = App::Shared(); - std::vector platform_views; - app.WaitForPlatformViewIds(&platform_views); - - std::stringstream response; - - response << "{\"type\":\"FlutterViewList\",\"views\":["; - bool prefix_comma = false; - for (auto it = platform_views.begin(); it != platform_views.end(); it++) { - uintptr_t view_id = it->view_id; - int64_t isolate_id = it->isolate_id; - const std::string& isolate_name = it->isolate_name; - if (!view_id) { - continue; - } - if (prefix_comma) { - response << ','; - } else { - prefix_comma = true; - } - AppendFlutterView(&response, view_id, isolate_id, isolate_name); - } - response << "]}"; - // Copy the response. - *json_object = strdup(response.str().c_str()); - return true; -} - -} // namespace flutter_runner diff --git a/content_handler/service_protocol_hooks.h b/content_handler/service_protocol_hooks.h deleted file mode 100644 index eb73a6c869f49..0000000000000 --- a/content_handler/service_protocol_hooks.h +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright 2017 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef FLUTTER_CONTENT_HANDLER_SERVICE_PROTOCOL_HOOKS_H_ -#define FLUTTER_CONTENT_HANDLER_SERVICE_PROTOCOL_HOOKS_H_ - -#include "lib/fxl/synchronization/waitable_event.h" -#include "third_party/dart/runtime/include/dart_tools_api.h" - -namespace flutter_runner { - -class ServiceProtocolHooks { - public: - static void RegisterHooks(bool running_precompiled_code); - - private: - static const char* kListViewsExtensionName; - static bool ListViews(const char* method, - const char** param_keys, - const char** param_values, - intptr_t num_params, - void* user_data, - const char** json_object); -}; - -} // namespace flutter_runner - -#endif // FLUTTER_CONTENT_HANDLER_SERVICE_PROTOCOL_HOOKS_H_ diff --git a/content_handler/session_connection.cc b/content_handler/session_connection.cc deleted file mode 100644 index e003e92bd0842..0000000000000 --- a/content_handler/session_connection.cc +++ /dev/null @@ -1,97 +0,0 @@ -// Copyright 2017 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "flutter/content_handler/session_connection.h" -#include "lib/ui/scenic/fidl_helpers.h" - -namespace flutter_runner { - -SessionConnection::SessionConnection(ui::ScenicPtr scenic, - zx::eventpair import_token) - : session_(scenic.get()), - root_node_(&session_), - surface_producer_(std::make_unique(&session_)), - scene_update_context_(&session_, surface_producer_.get()) { - ASSERT_IS_GPU_THREAD; - - session_.set_error_handler( - std::bind(&SessionConnection::OnSessionError, this)); - session_.set_event_handler(std::bind(&SessionConnection::OnSessionEvents, - this, std::placeholders::_1)); - - root_node_.Bind(std::move(import_token)); - root_node_.SetEventMask(ui::gfx::kMetricsEventMask); - session_.Present(0, [](ui::PresentationInfoPtr info) {}); - - present_callback_ = - std::bind(&SessionConnection::OnPresent, this, std::placeholders::_1); -} - -SessionConnection::~SessionConnection() { - ASSERT_IS_GPU_THREAD; -} - -void SessionConnection::OnSessionError() { - ASSERT_IS_GPU_THREAD; - // TODO: Not this. - FXL_CHECK(false) << "Session connection was terminated."; -} - -void SessionConnection::OnSessionEvents(f1dl::Array events) { - ui::gfx::MetricsPtr new_metrics; - for (const auto& event : *events) { - if (event->is_gfx() && event->get_gfx()->is_metrics() && - event->get_gfx()->get_metrics()->node_id == root_node_.id()) { - new_metrics = std::move(event->get_gfx()->get_metrics()->metrics); - } - } - if (!new_metrics) - return; - - scene_update_context_.set_metrics(std::move(new_metrics)); - - if (metrics_changed_callback_) - metrics_changed_callback_(); -} - -void SessionConnection::Present(flow::CompositorContext::ScopedFrame& frame, - fxl::Closure on_present_callback) { - ASSERT_IS_GPU_THREAD; - FXL_DCHECK(pending_on_present_callback_ == nullptr); - FXL_DCHECK(on_present_callback != nullptr); - pending_on_present_callback_ = on_present_callback; - - // Flush all session ops. Paint tasks have not yet executed but those are - // fenced. The compositor can start processing ops while we finalize paint - // tasks. - session_.Present(0, // presentation_time. Placeholder for now. - present_callback_ // callback - ); - - // Execute paint tasks and signal fences. - auto surfaces_to_submit = scene_update_context_.ExecutePaintTasks(frame); - - // Tell the surface producer that a present has occurred so it can perform - // book-keeping on buffer caches. - surface_producer_->OnSurfacesPresented(std::move(surfaces_to_submit)); - - // Prepare for the next frame. - EnqueueClearCommands(); -} - -void SessionConnection::OnPresent(ui::PresentationInfoPtr info) { - ASSERT_IS_GPU_THREAD; - auto callback = pending_on_present_callback_; - pending_on_present_callback_ = nullptr; - callback(); -} - -void SessionConnection::EnqueueClearCommands() { - ASSERT_IS_GPU_THREAD; - // We are going to be sending down a fresh node hierarchy every frame. So just - // enqueue a detach command on the imported root node. - session_.Enqueue(scenic_lib::NewDetachChildrenCommand(root_node_.id())); -} - -} // namespace flutter_runner diff --git a/content_handler/session_connection.h b/content_handler/session_connection.h deleted file mode 100644 index a33266f148ff2..0000000000000 --- a/content_handler/session_connection.h +++ /dev/null @@ -1,70 +0,0 @@ -// Copyright 2017 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef FLUTTER_CONTENT_HANDLER_SESSION_CONNECTION_H_ -#define FLUTTER_CONTENT_HANDLER_SESSION_CONNECTION_H_ - -#include "flutter/common/threads.h" -#include "flutter/content_handler/vulkan_surface_producer.h" -#include "flutter/flow/compositor_context.h" -#include "flutter/flow/scene_update_context.h" -#include "lib/fidl/cpp/bindings/interface_handle.h" -#include "lib/fxl/functional/closure.h" -#include "lib/fxl/macros.h" -#include "lib/ui/scenic/client/resources.h" -#include "lib/ui/scenic/client/session.h" -#include "zircon/system/ulib/zx/include/zx/eventpair.h" - -namespace flutter_runner { - -class SessionConnection { - public: - SessionConnection(ui::ScenicPtr scenic, zx::eventpair import_token); - - ~SessionConnection(); - - bool has_metrics() const { return scene_update_context_.has_metrics(); } - - const ui::gfx::MetricsPtr& metrics() const { - return scene_update_context_.metrics(); - } - - void set_metrics_changed_callback(fxl::Closure callback) { - metrics_changed_callback_ = std::move(callback); - } - - flow::SceneUpdateContext& scene_update_context() { - return scene_update_context_; - } - - scenic_lib::ImportNode& root_node() { - ASSERT_IS_GPU_THREAD; - return root_node_; - } - - void Present(flow::CompositorContext::ScopedFrame& frame, - fxl::Closure on_present_callback); - - private: - scenic_lib::Session session_; - scenic_lib::ImportNode root_node_; - scenic_lib::Session::PresentCallback present_callback_; - fxl::Closure pending_on_present_callback_; - std::unique_ptr surface_producer_; - flow::SceneUpdateContext scene_update_context_; - fxl::Closure metrics_changed_callback_; - - void OnSessionError(); - void OnSessionEvents(f1dl::Array events); - - void EnqueueClearCommands(); - - void OnPresent(ui::PresentationInfoPtr info); - - FXL_DISALLOW_COPY_AND_ASSIGN(SessionConnection); -}; - -} // namespace flutter_runner - -#endif // FLUTTER_CONTENT_HANDLER_SESSION_CONNECTION_H_ diff --git a/content_handler/vulkan_rasterizer.cc b/content_handler/vulkan_rasterizer.cc deleted file mode 100644 index 4394b8712d09d..0000000000000 --- a/content_handler/vulkan_rasterizer.cc +++ /dev/null @@ -1,117 +0,0 @@ -// Copyright 2017 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "flutter/content_handler/vulkan_rasterizer.h" - -#include -#include -#include -#include - -#include -#include -#include - -#include "flutter/common/threads.h" -#include "flutter/glue/trace_event.h" -#include "lib/fxl/files/unique_fd.h" - -namespace flutter_runner { - -constexpr char kGpuDriverClass[] = "/dev/class/gpu"; - -static zx_status_t DriverWatcher(int dirfd, - int event, - const char* fn, - void* cookie) { - if (event == WATCH_EVENT_ADD_FILE && !strcmp(fn, "000")) { - return ZX_ERR_STOP; - } - return ZX_OK; -} - -bool WaitForFirstGpuDriver() { - fxl::UniqueFD fd(open(kGpuDriverClass, O_DIRECTORY | O_RDONLY)); - if (fd.get() < 0) { - FXL_DLOG(ERROR) << "Failed to open " << kGpuDriverClass; - return false; - } - - zx_status_t status = fdio_watch_directory( - fd.get(), DriverWatcher, zx_deadline_after(ZX_SEC(5)), nullptr); - return status == ZX_ERR_STOP; -} - -VulkanRasterizer::VulkanRasterizer() : compositor_context_(nullptr) { - valid_ = WaitForFirstGpuDriver(); -} - -VulkanRasterizer::~VulkanRasterizer() = default; - -bool VulkanRasterizer::IsValid() const { - return valid_; -} - -void VulkanRasterizer::SetScene(f1dl::InterfaceHandle scenic, - zx::eventpair import_token, - fxl::Closure metrics_changed_callback) { - ASSERT_IS_GPU_THREAD; - FXL_DCHECK(valid_ && !session_connection_); - session_connection_ = std::make_unique( - scenic.Bind(), std::move(import_token)); - session_connection_->set_metrics_changed_callback( - std::move(metrics_changed_callback)); -} - -void VulkanRasterizer::Draw(std::unique_ptr layer_tree, - fxl::Closure callback) { - ASSERT_IS_GPU_THREAD; - FXL_DCHECK(callback != nullptr); - - if (layer_tree == nullptr) { - FXL_LOG(ERROR) << "Layer tree was not valid."; - callback(); - return; - } - - if (!session_connection_) { - FXL_LOG(ERROR) << "Session was not valid."; - callback(); - return; - } - - if (!session_connection_->has_metrics()) { - // Still awaiting metrics. Will redraw when we get them. - callback(); - return; - } - - compositor_context_.engine_time().SetLapTime(layer_tree->construction_time()); - - flow::CompositorContext::ScopedFrame frame = compositor_context_.AcquireFrame( - nullptr, nullptr, true /* instrumentation enabled */); - { - // Preroll the Flutter layer tree. This allows Flutter to perform pre-paint - // optimizations. - TRACE_EVENT0("flutter", "Preroll"); - layer_tree->Preroll(frame, session_connection_->metrics().get()); - } - - { - // Traverse the Flutter layer tree so that the necessary session ops to - // represent the frame are enqueued in the underlying session. - TRACE_EVENT0("flutter", "UpdateScene"); - layer_tree->UpdateScene(session_connection_->scene_update_context(), - session_connection_->root_node()); - } - - { - // Flush all pending session ops. - TRACE_EVENT0("flutter", "SessionPresent"); - session_connection_->Present( - frame, [callback = std::move(callback)]() { callback(); }); - } -} - -} // namespace flutter_runner diff --git a/content_handler/vulkan_rasterizer.h b/content_handler/vulkan_rasterizer.h deleted file mode 100644 index 806bb66b7b3eb..0000000000000 --- a/content_handler/vulkan_rasterizer.h +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright 2017 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef FLUTTER_CONTENT_HANDLER_VULKAN_RASTERIZER_H_ -#define FLUTTER_CONTENT_HANDLER_VULKAN_RASTERIZER_H_ - -#include - -#include "flutter/content_handler/rasterizer.h" -#include "flutter/content_handler/session_connection.h" -#include "flutter/flow/compositor_context.h" -#include "lib/fxl/macros.h" - -namespace flutter_runner { - -class VulkanRasterizer : public Rasterizer { - public: - VulkanRasterizer(); - - ~VulkanRasterizer() override; - - bool IsValid() const; - - void SetScene(f1dl::InterfaceHandle scenic, - zx::eventpair import_token, - fxl::Closure metrics_changed_callback) override; - - void Draw(std::unique_ptr layer_tree, - fxl::Closure callback) override; - - private: - flow::CompositorContext compositor_context_; - std::unique_ptr session_connection_; - bool valid_; - - FXL_DISALLOW_COPY_AND_ASSIGN(VulkanRasterizer); -}; - -} // namespace flutter_runner - -#endif // FLUTTER_CONTENT_HANDLER_VULKAN_RASTERIZER_H_ diff --git a/content_handler/vulkan_surface.cc b/content_handler/vulkan_surface.cc deleted file mode 100644 index efb3f8934a49b..0000000000000 --- a/content_handler/vulkan_surface.cc +++ /dev/null @@ -1,421 +0,0 @@ -// Copyright 2017 The Fuchsia Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include - -#include "flutter/content_handler/vulkan_surface.h" -#include "flutter/common/threads.h" -#include "third_party/skia/include/core/SkCanvas.h" -#include "third_party/skia/include/gpu/GrBackendSemaphore.h" -#include "third_party/skia/include/gpu/GrBackendSurface.h" -#include "third_party/skia/include/gpu/GrContext.h" -#include "third_party/skia/src/gpu/vk/GrVkImage.h" - -namespace flutter_runner { - -VulkanSurface::VulkanSurface(vulkan::VulkanProvider& vulkan_provider, - sk_sp context, - sk_sp backend_context, - scenic_lib::Session* session, - const SkISize& size) - : vulkan_provider_(vulkan_provider), - backend_context_(std::move(backend_context)), - session_(session), - wait_(this) { - ASSERT_IS_GPU_THREAD; - - FXL_DCHECK(session_); - - zx::vmo exported_vmo; - if (!AllocateDeviceMemory(std::move(context), size, exported_vmo)) { - FXL_DLOG(INFO) << "Could not allocate device memory."; - return; - } - - if (!CreateFences()) { - FXL_DLOG(INFO) << "Could not create signal fences."; - return; - } - - if (!PushSessionImageSetupOps(session, std::move(exported_vmo))) { - FXL_DLOG(INFO) << "Could not push session image setup ops."; - return; - } - - wait_.set_object(release_event_.get()); - wait_.set_trigger(ZX_EVENT_SIGNALED); - async_ = async_get_default(); - wait_.Begin(async_); - - // Probably not necessary as the events should be in the unsignalled state - // already. - Reset(); - - valid_ = true; -} - -VulkanSurface::~VulkanSurface() { - ASSERT_IS_GPU_THREAD; - if (async_) { - wait_.Cancel(async_); - wait_.set_object(ZX_HANDLE_INVALID); - async_ = nullptr; - } -} - -bool VulkanSurface::IsValid() const { - return valid_; -} - -SkISize VulkanSurface::GetSize() const { - if (!valid_) { - return SkISize::Make(0, 0); - } - - return SkISize::Make(sk_surface_->width(), sk_surface_->height()); -} - -vulkan::VulkanHandle VulkanSurface::SemaphoreFromEvent( - const zx::event& event) const { - VkResult result; - VkSemaphore semaphore; - - zx::event semaphore_event; - zx_status_t status = event.duplicate(ZX_RIGHT_SAME_RIGHTS, &semaphore_event); - if (status != ZX_OK) { - FXL_DLOG(ERROR) << "failed to duplicate semaphore event"; - return vulkan::VulkanHandle(); - } - - VkSemaphoreCreateInfo create_info = { - .sType = VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO, - .pNext = nullptr, - .flags = 0, - }; - - result = VK_CALL_LOG_ERROR(vulkan_provider_.vk().CreateSemaphore( - vulkan_provider_.vk_device(), &create_info, nullptr, &semaphore)); - if (result != VK_SUCCESS) { - return vulkan::VulkanHandle(); - } - - VkImportSemaphoreFuchsiaHandleInfoKHR import_info = { - .sType = VK_STRUCTURE_TYPE_IMPORT_SEMAPHORE_FUCHSIA_HANDLE_INFO_KHR, - .pNext = nullptr, - .semaphore = semaphore, - .handleType = VK_EXTERNAL_SEMAPHORE_HANDLE_TYPE_FUCHSIA_FENCE_BIT_KHR, - .handle = static_cast(semaphore_event.release())}; - - result = - VK_CALL_LOG_ERROR(vulkan_provider_.vk().ImportSemaphoreFuchsiaHandleKHR( - vulkan_provider_.vk_device(), &import_info)); - if (result != VK_SUCCESS) { - return vulkan::VulkanHandle(); - } - - return vulkan::VulkanHandle( - semaphore, [&vulkan_provider = vulkan_provider_](VkSemaphore semaphore) { - vulkan_provider.vk().DestroySemaphore(vulkan_provider.vk_device(), - semaphore, nullptr); - }); -} - -bool VulkanSurface::CreateFences() { - if (zx::event::create(0, &acquire_event_) != ZX_OK) { - return false; - } - - acquire_semaphore_ = SemaphoreFromEvent(acquire_event_); - if (!acquire_semaphore_) { - FXL_DLOG(ERROR) << "failed to create acquire semaphore"; - return false; - } - - if (zx::event::create(0, &release_event_) != ZX_OK) { - return false; - } - - command_buffer_fence_ = vulkan_provider_.CreateFence(); - - return true; -} - -bool VulkanSurface::AllocateDeviceMemory(sk_sp context, - const SkISize& size, - zx::vmo& exported_vmo) { - if (size.isEmpty()) { - return false; - } - - if (backend_context_ == nullptr) { - return false; - } - - // Create the image. - const VkImageCreateInfo image_create_info = { - .sType = VK_STRUCTURE_TYPE_IMAGE_CREATE_INFO, - .pNext = nullptr, - .flags = VK_IMAGE_CREATE_MUTABLE_FORMAT_BIT, - .imageType = VK_IMAGE_TYPE_2D, - .format = VK_FORMAT_B8G8R8A8_UNORM, - .extent = VkExtent3D{static_cast(size.width()), - static_cast(size.height()), 1}, - .mipLevels = 1, - .arrayLayers = 1, - .samples = VK_SAMPLE_COUNT_1_BIT, - .tiling = VK_IMAGE_TILING_OPTIMAL, - .usage = VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT, - .sharingMode = VK_SHARING_MODE_EXCLUSIVE, - .queueFamilyIndexCount = 0, - .pQueueFamilyIndices = nullptr, - .initialLayout = VK_IMAGE_LAYOUT_UNDEFINED, - }; - - { - VkImage vk_image = VK_NULL_HANDLE; - - if (VK_CALL_LOG_ERROR(vulkan_provider_.vk().CreateImage( - vulkan_provider_.vk_device(), &image_create_info, nullptr, - &vk_image)) != VK_SUCCESS) { - return false; - } - - vk_image_ = {vk_image, - [& vulkan_provider = vulkan_provider_](VkImage image) { - vulkan_provider.vk().DestroyImage( - vulkan_provider.vk_device(), image, NULL); - }}; - } - - // Create the memory. - VkMemoryRequirements memory_reqs; - vulkan_provider_.vk().GetImageMemoryRequirements(vulkan_provider_.vk_device(), - vk_image_, &memory_reqs); - - uint32_t memory_type = 0; - for (; memory_type < 32; memory_type++) { - if ((memory_reqs.memoryTypeBits & (1 << memory_type))) { - break; - } - } - VkExportMemoryAllocateInfoKHR export_allocate_info = { - .sType = VK_STRUCTURE_TYPE_EXPORT_MEMORY_ALLOCATE_INFO_KHR, - .pNext = nullptr, - .handleTypes = VK_EXTERNAL_MEMORY_HANDLE_TYPE_FUCHSIA_VMO_BIT_KHR}; - const VkMemoryAllocateInfo alloc_info = { - .sType = VK_STRUCTURE_TYPE_MEMORY_ALLOCATE_INFO, - .pNext = &export_allocate_info, - .allocationSize = memory_reqs.size, - .memoryTypeIndex = memory_type, - }; - - { - VkDeviceMemory vk_memory = VK_NULL_HANDLE; - if (VK_CALL_LOG_ERROR(vulkan_provider_.vk().AllocateMemory( - vulkan_provider_.vk_device(), &alloc_info, NULL, &vk_memory)) != - VK_SUCCESS) { - return false; - } - - vk_memory_ = {vk_memory, [& vulkan_provider = - vulkan_provider_](VkDeviceMemory memory) { - vulkan_provider.vk().FreeMemory(vulkan_provider.vk_device(), - memory, NULL); - }}; - } - - // Bind image memory. - if (VK_CALL_LOG_ERROR(vulkan_provider_.vk().BindImageMemory( - vulkan_provider_.vk_device(), vk_image_, vk_memory_, 0)) != - VK_SUCCESS) { - return false; - } - - { - // Acquire the VMO for the device memory. - uint32_t vmo_handle = 0; - - VkMemoryGetFuchsiaHandleInfoKHR get_handle_info = { - VK_STRUCTURE_TYPE_MEMORY_GET_FUCHSIA_HANDLE_INFO_KHR, nullptr, - vk_memory_, VK_EXTERNAL_MEMORY_HANDLE_TYPE_FUCHSIA_VMO_BIT_KHR}; - if (VK_CALL_LOG_ERROR(vulkan_provider_.vk().GetMemoryFuchsiaHandleKHR( - vulkan_provider_.vk_device(), &get_handle_info, &vmo_handle)) != - VK_SUCCESS) { - return false; - } - - exported_vmo.reset(static_cast(vmo_handle)); - } - - // Assert that the VMO size was sufficient. - size_t vmo_size = 0; - if (exported_vmo.get_size(&vmo_size) != ZX_OK || - vmo_size < memory_reqs.size) { - return false; - } - - return SetupSkiaSurface(std::move(context), size, image_create_info, - memory_reqs); -} - -bool VulkanSurface::SetupSkiaSurface(sk_sp context, - const SkISize& size, - const VkImageCreateInfo& image_create_info, - const VkMemoryRequirements& memory_reqs) { - if (context == nullptr) { - return false; - } - - const GrVkImageInfo image_info = { - .fImage = vk_image_, - .fAlloc = {vk_memory_, 0, memory_reqs.size, 0}, - .fImageTiling = image_create_info.tiling, - .fImageLayout = image_create_info.initialLayout, - .fFormat = image_create_info.format, - .fLevelCount = image_create_info.mipLevels, - }; - - GrBackendRenderTarget sk_render_target(size.width(), size.height(), 0, 0, - image_info); - - SkSurfaceProps sk_surface_props( - SkSurfaceProps::InitType::kLegacyFontHost_InitType); - - auto sk_surface = - SkSurface::MakeFromBackendRenderTarget(context.get(), // - sk_render_target, // - kTopLeft_GrSurfaceOrigin, // - nullptr, // - &sk_surface_props // - ); - - if (!sk_surface || sk_surface->getCanvas() == nullptr) { - return false; - } - sk_surface_ = std::move(sk_surface); - - return true; -} - -bool VulkanSurface::PushSessionImageSetupOps(scenic_lib::Session* session, - zx::vmo exported_vmo) { - if (sk_surface_ == nullptr) { - return false; - } - - scenic_lib::Memory memory(session, std::move(exported_vmo), - ui::gfx::MemoryType::VK_DEVICE_MEMORY); - - auto image_info = ui::gfx::ImageInfo::New(); - image_info->width = sk_surface_->width(); - image_info->height = sk_surface_->height(); - image_info->stride = 4 * sk_surface_->width(); - image_info->pixel_format = ui::gfx::ImageInfo::PixelFormat::BGRA_8; - image_info->color_space = ui::gfx::ImageInfo::ColorSpace::SRGB; - image_info->tiling = ui::gfx::ImageInfo::Tiling::LINEAR; - - session_image_ = std::make_unique( - memory, 0 /* memory offset */, std::move(image_info)); - - return session_image_ != nullptr; -} - -scenic_lib::Image* VulkanSurface::GetImage() { - ASSERT_IS_GPU_THREAD; - if (!valid_) { - return 0; - } - return session_image_.get(); -} - -sk_sp VulkanSurface::GetSkiaSurface() const { - ASSERT_IS_GPU_THREAD; - return valid_ ? sk_surface_ : nullptr; -} - -size_t VulkanSurface::AdvanceAndGetAge() { - age_++; - return age_; -} - -bool VulkanSurface::FlushSessionAcquireAndReleaseEvents() { - zx::event acquire, release; - - if (acquire_event_.duplicate(ZX_RIGHT_SAME_RIGHTS, &acquire) != ZX_OK || - release_event_.duplicate(ZX_RIGHT_SAME_RIGHTS, &release) != ZX_OK) { - return false; - } - - session_->EnqueueAcquireFence(std::move(acquire)); - session_->EnqueueReleaseFence(std::move(release)); - age_ = 0; - return true; -} - -void VulkanSurface::SignalWritesFinished( - std::function on_writes_committed) { - ASSERT_IS_GPU_THREAD; - FXL_DCHECK(on_writes_committed); - - if (!valid_) { - on_writes_committed(); - return; - } - - FXL_CHECK(pending_on_writes_committed_ == nullptr) - << "Attempted to signal a write on the surface when the previous write " - "has not yet been acknowledged by the compositor."; - - pending_on_writes_committed_ = on_writes_committed; -} - -void VulkanSurface::Reset() { - ASSERT_IS_GPU_THREAD; - - if (acquire_event_.signal(ZX_EVENT_SIGNALED, 0u) != ZX_OK || - release_event_.signal(ZX_EVENT_SIGNALED, 0u) != ZX_OK) { - valid_ = false; - FXL_DLOG(ERROR) - << "Could not reset fences. The surface is no longer valid."; - } - - VkFence fence = command_buffer_fence_; - - if (command_buffer_) { - VK_CALL_LOG_ERROR(vulkan_provider_.vk().WaitForFences( - vulkan_provider_.vk_device(), 1, &fence, VK_TRUE, UINT64_MAX)); - command_buffer_.reset(); - } - - VK_CALL_LOG_ERROR(vulkan_provider_.vk().ResetFences( - vulkan_provider_.vk_device(), 1, &fence)); - - // Need to make a new acquire semaphore every frame or else validation layers - // get confused about why no one is waiting on it in this VkInstance - acquire_semaphore_.Reset(); - acquire_semaphore_ = SemaphoreFromEvent(acquire_event_); - if (!acquire_semaphore_) { - FXL_DLOG(ERROR) << "failed to create acquire semaphore"; - } - - // It is safe for the caller to collect the surface in the callback. - auto callback = pending_on_writes_committed_; - pending_on_writes_committed_ = nullptr; - if (callback) { - callback(); - } -} - -async_wait_result_t VulkanSurface::OnHandleReady(async_t* async, - zx_status_t status, - const zx_packet_signal_t* signal) { - ASSERT_IS_GPU_THREAD; - if (status != ZX_OK) - return ASYNC_WAIT_FINISHED; - FXL_DCHECK(signal->observed & ZX_EVENT_SIGNALED); - Reset(); - return ASYNC_WAIT_AGAIN; -} - -} // namespace flutter_runner diff --git a/content_handler/vulkan_surface.h b/content_handler/vulkan_surface.h deleted file mode 100644 index 3a0d2801a1c46..0000000000000 --- a/content_handler/vulkan_surface.h +++ /dev/null @@ -1,117 +0,0 @@ -// Copyright 2017 The Fuchsia Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#pragma once - -#include -#include -#include - -#include - -#include "flutter/flow/scene_update_context.h" -#include "flutter/vulkan/vulkan_command_buffer.h" -#include "flutter/vulkan/vulkan_handle.h" -#include "flutter/vulkan/vulkan_proc_table.h" -#include "flutter/vulkan/vulkan_provider.h" -#include "lib/fxl/macros.h" -#include "lib/ui/scenic/client/resources.h" -#include "third_party/skia/include/core/SkSurface.h" -#include "third_party/skia/include/gpu/vk/GrVkBackendContext.h" - -namespace flutter_runner { - -class VulkanSurface : public flow::SceneUpdateContext::SurfaceProducerSurface { - public: - VulkanSurface(vulkan::VulkanProvider& vulkan_provider, - sk_sp context, - sk_sp backend_context, - scenic_lib::Session* session, - const SkISize& size); - - ~VulkanSurface() override; - - size_t AdvanceAndGetAge() override; - - bool FlushSessionAcquireAndReleaseEvents() override; - - bool IsValid() const override; - - SkISize GetSize() const override; - - // Note: It is safe for the caller to collect the surface in the - // |on_writes_committed| callback. - void SignalWritesFinished( - std::function on_writes_committed) override; - - // |flow::SceneUpdateContext::SurfaceProducerSurface| - scenic_lib::Image* GetImage() override; - - // |flow::SceneUpdateContext::SurfaceProducerSurface| - sk_sp GetSkiaSurface() const override; - - const vulkan::VulkanHandle& GetVkImage() { return vk_image_; } - - const vulkan::VulkanHandle& GetAcquireVkSemaphore() { - return acquire_semaphore_; - } - - vulkan::VulkanCommandBuffer* GetCommandBuffer( - const vulkan::VulkanHandle& pool) { - if (!command_buffer_) - command_buffer_ = std::make_unique( - vulkan_provider_.vk(), vulkan_provider_.vk_device(), pool); - return command_buffer_.get(); - } - - const vulkan::VulkanHandle& GetCommandBufferFence() { - return command_buffer_fence_; - } - - private: - async_wait_result_t OnHandleReady(async_t* async, - zx_status_t status, - const zx_packet_signal_t* signal); - - bool AllocateDeviceMemory(sk_sp context, - const SkISize& size, - zx::vmo& exported_vmo); - - bool SetupSkiaSurface(sk_sp context, - const SkISize& size, - const VkImageCreateInfo& image_create_info, - const VkMemoryRequirements& memory_reqs); - - bool CreateFences(); - - bool PushSessionImageSetupOps(scenic_lib::Session* session, - zx::vmo exported_vmo); - - void Reset(); - - vulkan::VulkanHandle SemaphoreFromEvent( - const zx::event& event) const; - - vulkan::VulkanProvider& vulkan_provider_; - sk_sp backend_context_; - scenic_lib::Session* session_; - vulkan::VulkanHandle vk_image_; - vulkan::VulkanHandle vk_memory_; - vulkan::VulkanHandle command_buffer_fence_; - sk_sp sk_surface_; - std::unique_ptr session_image_; - zx::event acquire_event_; - vulkan::VulkanHandle acquire_semaphore_; - std::unique_ptr command_buffer_; - zx::event release_event_; - async_t* async_; - async::WaitMethod wait_; - std::function pending_on_writes_committed_; - size_t age_ = 0; - bool valid_ = false; - - FXL_DISALLOW_COPY_AND_ASSIGN(VulkanSurface); -}; - -} // namespace flutter_runner diff --git a/content_handler/vulkan_surface_pool.cc b/content_handler/vulkan_surface_pool.cc deleted file mode 100644 index af23ef711b7ad..0000000000000 --- a/content_handler/vulkan_surface_pool.cc +++ /dev/null @@ -1,180 +0,0 @@ -// Copyright 2017 The Fuchsia Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include - -#include "flutter/content_handler/vulkan_surface_pool.h" -#include "flutter/glue/trace_event.h" -#include "third_party/skia/include/gpu/GrContext.h" - -namespace flutter_runner { - -VulkanSurfacePool::VulkanSurfacePool(vulkan::VulkanProvider& vulkan_provider, - sk_sp context, - sk_sp backend_context, - scenic_lib::Session* mozart_session) - : vulkan_provider_(vulkan_provider), - context_(std::move(context)), - backend_context_(std::move(backend_context)), - mozart_session_(mozart_session) {} - -VulkanSurfacePool::~VulkanSurfacePool() {} - -std::unique_ptr -VulkanSurfacePool::AcquireSurface(const SkISize& size) { - auto surface = GetCachedOrCreateSurface(size); - - if (surface == nullptr) { - FXL_DLOG(ERROR) << "Could not acquire surface"; - return nullptr; - } - - if (!surface->FlushSessionAcquireAndReleaseEvents()) { - FXL_DLOG(ERROR) << "Could not flush acquire/release events for buffer."; - return nullptr; - } - - return surface; -} - -std::unique_ptr -VulkanSurfacePool::GetCachedOrCreateSurface(const SkISize& size) { - auto found_in_available = available_surfaces_.find(size); - if (found_in_available == available_surfaces_.end()) { - return CreateSurface(size); - } - SurfacesSet& available_surfaces = found_in_available->second; - FXL_DCHECK(available_surfaces.size() > 0); - auto acquired_surface = std::move(available_surfaces.back()); - available_surfaces.pop_back(); - if (available_surfaces.size() == 0) { - available_surfaces_.erase(found_in_available); - } - if (acquired_surface->IsValid()) { - trace_surfaces_reused_++; - return acquired_surface; - } - // This is only likely to happen if the surface was invalidated between the - // time it was sent into the available buffers cache and accessed now. - // Extremely unlikely. - return CreateSurface(size); -} - -void VulkanSurfacePool::SubmitSurface( - std::unique_ptr - p_surface) { - TRACE_EVENT0("flutter", "VulkanSurfacePool::SubmitSurface"); - if (!p_surface) { - return; - } - - uintptr_t surface_key = reinterpret_cast(p_surface.get()); - - auto insert_iterator = - pending_surfaces_.insert(std::make_pair(surface_key, // key - std::move(p_surface) // value - )); - - if (insert_iterator.second) { - insert_iterator.first->second->SignalWritesFinished( - std::bind(&VulkanSurfacePool::RecycleSurface, this, surface_key)); - } -} - -std::unique_ptr VulkanSurfacePool::CreateSurface( - const SkISize& size) { - auto surface = std::make_unique( - vulkan_provider_, context_, backend_context_, mozart_session_, size); - if (!surface->IsValid()) { - return nullptr; - } - trace_surfaces_created_++; - return surface; -} - -void VulkanSurfacePool::RecycleSurface(uintptr_t surface_key) { - // Before we do anything, we must clear the surface from the collection of - // pending surfaces. - auto found_in_pending = pending_surfaces_.find(surface_key); - if (found_in_pending == pending_surfaces_.end()) { - return; - } - - // Grab a hold of the surface to recycle and clear the entry in the pending - // surfaces collection. - std::unique_ptr - surface_to_recycle = std::move(found_in_pending->second); - pending_surfaces_.erase(found_in_pending); - - // The surface may have become invalid (for example it the fences could - // not be reset). - if (!surface_to_recycle->IsValid()) { - return; - } - - // Recycle the buffer by putting it in the list of available surfaces if the - // maximum size of buffers in the collection is not already present. - auto& available_surfaces = available_surfaces_[surface_to_recycle->GetSize()]; - if (available_surfaces.size() < kMaxSurfacesOfSameSize) { - available_surfaces.emplace_back(std::move(surface_to_recycle)); - } -} - -void VulkanSurfacePool::AgeAndCollectOldBuffers() { - std::vector sizes_to_erase; - for (auto& surface_iterator : available_surfaces_) { - SurfacesSet& old_surfaces = surface_iterator.second; - SurfacesSet new_surfaces; - for (auto& surface : old_surfaces) { - if (surface->AdvanceAndGetAge() < kMaxSurfaceAge) { - new_surfaces.emplace_back(std::move(surface)); - } - } - if (new_surfaces.size() == 0) { - sizes_to_erase.emplace_back(surface_iterator.first); - } - old_surfaces.swap(new_surfaces); - } - for (const auto& size : sizes_to_erase) { - available_surfaces_.erase(size); - } - TraceStats(); -} - -void VulkanSurfacePool::TraceStats() { - // Resources held in cached buffers. - size_t cached_surfaces = 0; - size_t cached_surfaces_bytes = 0; - for (const auto& surfaces : available_surfaces_) { - const auto surface_count = surfaces.second.size(); - cached_surfaces += surface_count; - // TODO(chinmaygarde): Assuming for now that all surfaces are 32bpp. - cached_surfaces_bytes += - (surfaces.first.fWidth * surfaces.first.fHeight * 4 * surface_count); - } - - // Resources held by Skia. - int skia_resources = 0; - size_t skia_bytes = 0; - context_->getResourceCacheUsage(&skia_resources, &skia_bytes); - const size_t skia_cache_purgeable = - context_->getResourceCachePurgeableBytes(); - - TRACE_COUNTER("flutter", "SurfacePool", 0u, // - "CachedCount", cached_surfaces, // - "CachedBytes", cached_surfaces_bytes, // - "Created", trace_surfaces_created_, // - "Reused", trace_surfaces_reused_, // - "PendingInCompositor", pending_surfaces_.size(), // - "SkiaCacheResources", skia_resources, // - "SkiaCacheBytes", skia_bytes, // - "SkiaCachePurgeable", skia_cache_purgeable // - ); - - // Reset per present/frame stats. - trace_surfaces_created_ = 0; - trace_surfaces_reused_ = 0; -} - -} // namespace flutter_runner diff --git a/content_handler/vulkan_surface_pool.h b/content_handler/vulkan_surface_pool.h deleted file mode 100644 index 52dd3ed6aa417..0000000000000 --- a/content_handler/vulkan_surface_pool.h +++ /dev/null @@ -1,77 +0,0 @@ -// Copyright 2017 The Fuchsia Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#pragma once - -#include -#include -#include "flutter/content_handler/vulkan_surface.h" -#include "lib/fxl/macros.h" - -namespace flutter_runner { - -class VulkanSurfacePool { - public: - static const size_t kMaxSurfacesOfSameSize = 3; - static const size_t kMaxSurfaceAge = 3; - - VulkanSurfacePool(vulkan::VulkanProvider& vulkan_provider, - sk_sp context, - sk_sp backend_context, - scenic_lib::Session* mozart_session); - - ~VulkanSurfacePool(); - - std::unique_ptr - AcquireSurface(const SkISize& size); - - void SubmitSurface( - std::unique_ptr - surface); - - void AgeAndCollectOldBuffers(); - - private: - using SurfacesSet = std::list< - std::unique_ptr>; - - template - static void HashCombine(size_t& seed, T const& v) { - seed ^= std::hash()(v) + 0x9e3779b9 + (seed << 6) + (seed >> 2); - } - - struct SkISizeHash { - std::size_t operator()(const SkISize& key) const { - size_t seed = 0; - HashCombine(seed, key.fWidth); - HashCombine(seed, key.fHeight); - return seed; - } - }; - - vulkan::VulkanProvider& vulkan_provider_; - sk_sp context_; - sk_sp backend_context_; - scenic_lib::Session* mozart_session_; - std::unordered_map available_surfaces_; - std::unordered_map< - uintptr_t, - std::unique_ptr> - pending_surfaces_; - size_t trace_surfaces_created_ = 0; - size_t trace_surfaces_reused_ = 0; - - std::unique_ptr - GetCachedOrCreateSurface(const SkISize& size); - - std::unique_ptr CreateSurface(const SkISize& size); - - void RecycleSurface(uintptr_t surface_key); - - void TraceStats(); - - FXL_DISALLOW_COPY_AND_ASSIGN(VulkanSurfacePool); -}; - -} // namespace flutter_runner diff --git a/content_handler/vulkan_surface_producer.cc b/content_handler/vulkan_surface_producer.cc deleted file mode 100644 index a994b04261e49..0000000000000 --- a/content_handler/vulkan_surface_producer.cc +++ /dev/null @@ -1,204 +0,0 @@ -// Copyright 2017 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#include "flutter/content_handler/vulkan_surface_producer.h" - -#include -#include -#include -#include "flutter/glue/trace_event.h" -#include "third_party/skia/include/gpu/GrBackendSemaphore.h" -#include "third_party/skia/include/gpu/GrContext.h" -#include "third_party/skia/include/gpu/vk/GrVkTypes.h" -#include "third_party/skia/src/gpu/vk/GrVkUtil.h" - -namespace flutter_runner { - -VulkanSurfaceProducer::VulkanSurfaceProducer( - scenic_lib::Session* mozart_session) { - valid_ = Initialize(mozart_session); - - if (valid_) { - FXL_LOG(INFO) - << "Flutter engine: Vulkan surface producer initialization: Successful"; - } else { - FXL_LOG(ERROR) - << "Flutter engine: Vulkan surface producer initialization: Failed"; - } -} - -VulkanSurfaceProducer::~VulkanSurfaceProducer() { - // Make sure queue is idle before we start destroying surfaces - VkResult wait_result = - VK_CALL_LOG_ERROR(vk_->QueueWaitIdle(backend_context_->fQueue)); - FXL_DCHECK(wait_result == VK_SUCCESS); -}; - -bool VulkanSurfaceProducer::Initialize(scenic_lib::Session* mozart_session) { - vk_ = fxl::MakeRefCounted(); - - std::vector extensions = { - VK_KHR_SURFACE_EXTENSION_NAME, - VK_KHR_EXTERNAL_SEMAPHORE_CAPABILITIES_EXTENSION_NAME, - }; - application_ = std::make_unique( - *vk_, "FlutterContentHandler", std::move(extensions)); - - if (!application_->IsValid() || !vk_->AreInstanceProcsSetup()) { - // Make certain the application instance was created and it setup the - // instance proc table entries. - FXL_LOG(ERROR) << "Instance proc addresses have not been setup."; - return false; - } - - // Create the device. - - logical_device_ = application_->AcquireFirstCompatibleLogicalDevice(); - - if (logical_device_ == nullptr || !logical_device_->IsValid() || - !vk_->AreDeviceProcsSetup()) { - // Make certain the device was created and it setup the device proc table - // entries. - FXL_LOG(ERROR) << "Device proc addresses have not been setup."; - return false; - } - - if (!vk_->HasAcquiredMandatoryProcAddresses()) { - FXL_LOG(ERROR) << "Failed to acquire mandatory proc addresses."; - return false; - } - - if (!vk_->IsValid()) { - FXL_LOG(ERROR) << "VulkanProcTable invalid"; - return false; - } - - auto interface = vk_->CreateSkiaInterface(); - - if (interface == nullptr || !interface->validate(0)) { - FXL_LOG(ERROR) << "Skia interface invalid."; - return false; - } - - uint32_t skia_features = 0; - if (!logical_device_->GetPhysicalDeviceFeaturesSkia(&skia_features)) { - FXL_LOG(ERROR) << "Failed to get physical device features."; - - return false; - } - - backend_context_ = sk_make_sp(); - backend_context_->fInstance = application_->GetInstance(); - backend_context_->fPhysicalDevice = - logical_device_->GetPhysicalDeviceHandle(); - backend_context_->fDevice = logical_device_->GetHandle(); - backend_context_->fQueue = logical_device_->GetQueueHandle(); - backend_context_->fGraphicsQueueIndex = - logical_device_->GetGraphicsQueueIndex(); - backend_context_->fMinAPIVersion = application_->GetAPIVersion(); - backend_context_->fFeatures = skia_features; - backend_context_->fInterface.reset(interface.release()); - - logical_device_->ReleaseDeviceOwnership(); - application_->ReleaseInstanceOwnership(); - - context_ = GrContext::MakeVulkan(backend_context_); - - context_->setResourceCacheLimits(vulkan::kGrCacheMaxCount, - vulkan::kGrCacheMaxByteSize); - - surface_pool_ = std::make_unique( - *this, context_, backend_context_, mozart_session); - - return true; -} - -void VulkanSurfaceProducer::OnSurfacesPresented( - std::vector< - std::unique_ptr> - surfaces) { - TRACE_EVENT0("flutter", "VulkanSurfaceProducer::OnSurfacesPresented"); - - // Do a single flush for all canvases derived from the context. - { - TRACE_EVENT0("flutter", "GrContext::flushAndSignalSemaphores"); - context_->flush(); - } - - if (!TransitionSurfacesToExternal(surfaces)) - FXL_LOG(ERROR) << "TransitionSurfacesToExternal failed"; - - // Submit surface - for (auto& surface : surfaces) { - SubmitSurface(std::move(surface)); - } - - // Buffer management. - surface_pool_->AgeAndCollectOldBuffers(); -} - -bool VulkanSurfaceProducer::TransitionSurfacesToExternal( - const std::vector< - std::unique_ptr>& - surfaces) { - for (auto& surface : surfaces) { - auto vk_surface = static_cast(surface.get()); - - vulkan::VulkanCommandBuffer* command_buffer = - vk_surface->GetCommandBuffer(logical_device_->GetCommandPool()); - if (!command_buffer->Begin()) - return false; - - GrVkImageInfo* imageInfo; - vk_surface->GetSkiaSurface()->getRenderTargetHandle( - reinterpret_cast(&imageInfo), - SkSurface::kFlushRead_BackendHandleAccess); - - VkImageMemoryBarrier image_barrier = { - .sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER, - .pNext = nullptr, - .srcAccessMask = VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT, - .dstAccessMask = 0, - .oldLayout = imageInfo->fImageLayout, - .newLayout = VK_IMAGE_LAYOUT_GENERAL, - .srcQueueFamilyIndex = 0, - .dstQueueFamilyIndex = VK_QUEUE_FAMILY_EXTERNAL_KHR, - .image = vk_surface->GetVkImage(), - .subresourceRange = {VK_IMAGE_ASPECT_COLOR_BIT, 0, 1, 0, 1}}; - - if (!command_buffer->InsertPipelineBarrier( - VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT, - VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT, - 0, // dependencyFlags - 0, nullptr, // memory barriers - 0, nullptr, // buffer barriers - 1, &image_barrier)) - return false; - - imageInfo->updateImageLayout(image_barrier.newLayout); - - if (!command_buffer->End()) - return false; - - if (!logical_device_->QueueSubmit( - {}, {}, {vk_surface->GetAcquireVkSemaphore()}, - {command_buffer->Handle()}, vk_surface->GetCommandBufferFence())) - return false; - } - return true; -} - -std::unique_ptr -VulkanSurfaceProducer::ProduceSurface(const SkISize& size) { - FXL_DCHECK(valid_); - return surface_pool_->AcquireSurface(size); -} - -void VulkanSurfaceProducer::SubmitSurface( - std::unique_ptr surface) { - FXL_DCHECK(valid_ && surface != nullptr); - surface_pool_->SubmitSurface(std::move(surface)); -} - -} // namespace flutter_runner diff --git a/content_handler/vulkan_surface_producer.h b/content_handler/vulkan_surface_producer.h deleted file mode 100644 index 2338a8a6ba709..0000000000000 --- a/content_handler/vulkan_surface_producer.h +++ /dev/null @@ -1,79 +0,0 @@ -// Copyright 2017 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef FLUTTER_CONTENT_HANDLER_VULKAN_SURFACE_PRODUCER_H_ -#define FLUTTER_CONTENT_HANDLER_VULKAN_SURFACE_PRODUCER_H_ - -#include "flutter/content_handler/vulkan_surface.h" -#include "flutter/content_handler/vulkan_surface_pool.h" -#include "flutter/flow/scene_update_context.h" -#include "flutter/vulkan/vulkan_application.h" -#include "flutter/vulkan/vulkan_device.h" -#include "flutter/vulkan/vulkan_proc_table.h" -#include "flutter/vulkan/vulkan_provider.h" -#include "lib/fsl/tasks/message_loop.h" -#include "lib/fxl/macros.h" -#include "lib/ui/scenic/client/resources.h" -#include "lib/ui/scenic/client/session.h" -#include "third_party/skia/include/gpu/vk/GrVkBackendContext.h" - -namespace flutter_runner { - -class VulkanSurfaceProducer : public flow::SceneUpdateContext::SurfaceProducer, - public vulkan::VulkanProvider { - public: - VulkanSurfaceProducer(scenic_lib::Session* mozart_session); - - ~VulkanSurfaceProducer(); - - bool IsValid() const { return valid_; } - - // |flow::SceneUpdateContext::SurfaceProducer| - std::unique_ptr - ProduceSurface(const SkISize& size) override; - - // |flow::SceneUpdateContext::SurfaceProducer| - void SubmitSurface( - std::unique_ptr surface) - override; - - void OnSurfacesPresented( - std::vector< - std::unique_ptr> - surfaces); - - private: - // VulkanProvider - const vulkan::VulkanProcTable& vk() override { return *vk_.get(); } - const vulkan::VulkanHandle& vk_device() override { - return logical_device_->GetHandle(); - } - - bool TransitionSurfacesToExternal( - const std::vector< - std::unique_ptr>& - surfaces); - - // Note: the order here is very important. The proctable must be destroyed - // last because it contains the function pointers for VkDestroyDevice and - // VkDestroyInstance. The backend context owns the VkDevice and the - // VkInstance, so it must be destroyed after the logical device and the - // application, which own other vulkan objects associated with the device - // and instance. - fxl::RefPtr vk_; - sk_sp backend_context_; - std::unique_ptr logical_device_; - std::unique_ptr application_; - sk_sp context_; - std::unique_ptr surface_pool_; - bool valid_ = false; - - bool Initialize(scenic_lib::Session* mozart_session); - - FXL_DISALLOW_COPY_AND_ASSIGN(VulkanSurfaceProducer); -}; - -} // namespace flutter_runner - -#endif // FLUTTER_CONTENT_HANDLER_VULKAN_SURFACE_PRODUCER_H_ diff --git a/docs/flutter_overview.svg b/docs/flutter_overview.svg new file mode 100644 index 0000000000000..5955fcd2c9361 --- /dev/null +++ b/docs/flutter_overview.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/flow/BUILD.gn b/flow/BUILD.gn index 47c7316edfcd6..e311926fe25fe 100644 --- a/flow/BUILD.gn +++ b/flow/BUILD.gn @@ -48,26 +48,23 @@ source_set("flow") { "matrix_decomposition.h", "paint_utils.cc", "paint_utils.h", - "process_info.h", "raster_cache.cc", "raster_cache.h", "raster_cache_key.cc", "raster_cache_key.h", + "skia_gpu_object.cc", + "skia_gpu_object.h", "texture.cc", "texture.h", ] - public_deps = [ - "//garnet/public/lib/fxl", - ] + public_configs = [ "$flutter_root:config" ] - public_configs = [ - "$flutter_root:config", - ] + public_deps = [] deps = [ "$flutter_root/common", - "$flutter_root/glue", + "$flutter_root/fml", "$flutter_root/synchronization", "//third_party/skia", "//third_party/skia:gpu", @@ -83,9 +80,9 @@ source_set("flow") { "scene_update_context.h", ] - deps += [ - "//garnet/public/lib/ui/scenic:client", - "//garnet/public/lib/ui/scenic/fidl", + public_deps += [ + "//garnet/public/fidl/fuchsia.ui.scenic", + "//garnet/public/lib/ui/scenic/cpp", "//topaz/public/dart-pkg/zircon", ] @@ -103,8 +100,8 @@ executable("flow_unittests") { deps = [ ":flow", - "//third_party/dart/runtime:libdart_jit", # for tracing "$flutter_root/testing", + "//third_party/dart/runtime:libdart_jit", # for tracing "//third_party/skia", ] } diff --git a/flow/compositor_context.cc b/flow/compositor_context.cc index e0d17229e7981..aecd3a24cddf7 100644 --- a/flow/compositor_context.cc +++ b/flow/compositor_context.cc @@ -4,12 +4,12 @@ #include "flutter/flow/compositor_context.h" +#include "flutter/flow/layers/layer_tree.h" #include "third_party/skia/include/core/SkCanvas.h" namespace flow { -CompositorContext::CompositorContext(std::unique_ptr info) - : process_info_(std::move(info)) {} +CompositorContext::CompositorContext() = default; CompositorContext::~CompositorContext() = default; @@ -18,10 +18,6 @@ void CompositorContext::BeginFrame(ScopedFrame& frame, if (enable_instrumentation) { frame_count_.Increment(); frame_time_.Start(); - - if (process_info_ && process_info_->SampleNow()) { - memory_usage_.Add(process_info_->GetResidentMemorySize()); - } } } @@ -33,36 +29,51 @@ void CompositorContext::EndFrame(ScopedFrame& frame, } } -CompositorContext::ScopedFrame CompositorContext::AcquireFrame( +std::unique_ptr CompositorContext::AcquireFrame( GrContext* gr_context, SkCanvas* canvas, + const SkMatrix& root_surface_transformation, bool instrumentation_enabled) { - return ScopedFrame(*this, gr_context, canvas, instrumentation_enabled); + return std::make_unique(*this, // + gr_context, // + canvas, // + root_surface_transformation, // + instrumentation_enabled // + ); } -CompositorContext::ScopedFrame::ScopedFrame(CompositorContext& context, - GrContext* gr_context, - SkCanvas* canvas, - bool instrumentation_enabled) +CompositorContext::ScopedFrame::ScopedFrame( + CompositorContext& context, + GrContext* gr_context, + SkCanvas* canvas, + const SkMatrix& root_surface_transformation, + bool instrumentation_enabled) : context_(context), gr_context_(gr_context), canvas_(canvas), + root_surface_transformation_(root_surface_transformation), instrumentation_enabled_(instrumentation_enabled) { context_.BeginFrame(*this, instrumentation_enabled_); } -CompositorContext::ScopedFrame::ScopedFrame(ScopedFrame&& frame) = default; - CompositorContext::ScopedFrame::~ScopedFrame() { context_.EndFrame(*this, instrumentation_enabled_); } +bool CompositorContext::ScopedFrame::Raster(flow::LayerTree& layer_tree, + bool ignore_raster_cache) { + layer_tree.Preroll(*this, ignore_raster_cache); + layer_tree.Paint(*this); + return true; +} + void CompositorContext::OnGrContextCreated() { - texture_registry_->OnGrContextCreated(); + texture_registry_.OnGrContextCreated(); + raster_cache_.Clear(); } void CompositorContext::OnGrContextDestroyed() { - texture_registry_->OnGrContextDestroyed(); + texture_registry_.OnGrContextDestroyed(); raster_cache_.Clear(); } diff --git a/flow/compositor_context.h b/flow/compositor_context.h index 2d310422747b7..522c5359934ff 100644 --- a/flow/compositor_context.h +++ b/flow/compositor_context.h @@ -9,52 +9,59 @@ #include #include "flutter/flow/instrumentation.h" -#include "flutter/flow/process_info.h" #include "flutter/flow/raster_cache.h" #include "flutter/flow/texture.h" -#include "lib/fxl/macros.h" +#include "flutter/fml/macros.h" #include "third_party/skia/include/core/SkCanvas.h" #include "third_party/skia/include/core/SkPictureRecorder.h" namespace flow { +class LayerTree; + class CompositorContext { public: class ScopedFrame { public: + ScopedFrame(CompositorContext& context, + GrContext* gr_context, + SkCanvas* canvas, + const SkMatrix& root_surface_transformation, + bool instrumentation_enabled); + + virtual ~ScopedFrame(); + SkCanvas* canvas() { return canvas_; } CompositorContext& context() const { return context_; } - GrContext* gr_context() const { return gr_context_; } + const SkMatrix& root_surface_transformation() const { + return root_surface_transformation_; + } - ScopedFrame(ScopedFrame&& frame); + GrContext* gr_context() const { return gr_context_; } - ~ScopedFrame(); + virtual bool Raster(LayerTree& layer_tree, bool ignore_raster_cache); private: CompositorContext& context_; GrContext* gr_context_; SkCanvas* canvas_; + const SkMatrix& root_surface_transformation_; const bool instrumentation_enabled_; - ScopedFrame(CompositorContext& context, - GrContext* gr_context, - SkCanvas* canvas, - bool instrumentation_enabled); - - friend class CompositorContext; - - FXL_DISALLOW_COPY_AND_ASSIGN(ScopedFrame); + FML_DISALLOW_COPY_AND_ASSIGN(ScopedFrame); }; - CompositorContext(std::unique_ptr info); + CompositorContext(); - ~CompositorContext(); + virtual ~CompositorContext(); - ScopedFrame AcquireFrame(GrContext* gr_context, - SkCanvas* canvas, - bool instrumentation_enabled = true); + virtual std::unique_ptr AcquireFrame( + GrContext* gr_context, + SkCanvas* canvas, + const SkMatrix& root_surface_transformation, + bool instrumentation_enabled); void OnGrContextCreated(); @@ -62,7 +69,7 @@ class CompositorContext { RasterCache& raster_cache() { return raster_cache_; } - TextureRegistry& texture_registry() { return *texture_registry_; } + TextureRegistry& texture_registry() { return texture_registry_; } const Counter& frame_count() const { return frame_count_; } @@ -70,26 +77,18 @@ class CompositorContext { Stopwatch& engine_time() { return engine_time_; } - const CounterValues& memory_usage() const { return memory_usage_; } - - void SetTextureRegistry(TextureRegistry* textureRegistry) { - texture_registry_ = textureRegistry; - } - private: RasterCache raster_cache_; - TextureRegistry* texture_registry_; - std::unique_ptr process_info_; + TextureRegistry texture_registry_; Counter frame_count_; Stopwatch frame_time_; Stopwatch engine_time_; - CounterValues memory_usage_; void BeginFrame(ScopedFrame& frame, bool enable_instrumentation); void EndFrame(ScopedFrame& frame, bool enable_instrumentation); - FXL_DISALLOW_COPY_AND_ASSIGN(CompositorContext); + FML_DISALLOW_COPY_AND_ASSIGN(CompositorContext); }; } // namespace flow diff --git a/flow/debug_print.cc b/flow/debug_print.cc index 0aa5b4b3b7d2d..e2d7fc3f4c882 100644 --- a/flow/debug_print.cc +++ b/flow/debug_print.cc @@ -25,7 +25,9 @@ std::ostream& operator<<(std::ostream& os, const flow::MatrixDecomposition& m) { std::ostream& operator<<(std::ostream& os, const SkMatrix& m) { SkString string; - m.toString(&string); + string.printf( + "[%8.4f %8.4f %8.4f][%8.4f %8.4f %8.4f][%8.4f %8.4f %8.4f]", + m[0], m[1], m[2], m[3], m[4], m[5], m[6], m[7], m[8]); os << string.c_str(); return os; } @@ -71,12 +73,11 @@ std::ostream& operator<<(std::ostream& os, const SkPoint& r) { } std::ostream& operator<<(std::ostream& os, const flow::RasterCacheKey& k) { - os << "Picture: " << k.picture_id() << " Scale: " << k.scale_key().width() - << ", " << k.scale_key().height() -#if defined(OS_FUCHSIA) - << " Metrics scale: (" << k.metrics_scale_x() << ", " - << k.metrics_scale_y() << ")" -#endif - ; + os << "Picture: " << k.picture_id() << " matrix: " << k.matrix(); + return os; +} + +std::ostream& operator<<(std::ostream& os, const SkISize& size) { + os << size.width() << ", " << size.height(); return os; } diff --git a/flow/debug_print.h b/flow/debug_print.h index ca5973eeb0977..d58dcbed28bed 100644 --- a/flow/debug_print.h +++ b/flow/debug_print.h @@ -7,7 +7,7 @@ #include "flutter/flow/matrix_decomposition.h" #include "flutter/flow/raster_cache_key.h" -#include "lib/fxl/macros.h" +#include "flutter/fml/macros.h" #include "third_party/skia/include/core/SkMatrix.h" #include "third_party/skia/include/core/SkMatrix44.h" #include "third_party/skia/include/core/SkPoint3.h" @@ -15,14 +15,15 @@ #define DEF_PRINTER(x) std::ostream& operator<<(std::ostream&, const x&); -DEF_PRINTER(flow::RasterCacheKey); DEF_PRINTER(flow::MatrixDecomposition); +DEF_PRINTER(flow::RasterCacheKey); +DEF_PRINTER(SkISize); DEF_PRINTER(SkMatrix); DEF_PRINTER(SkMatrix44); -DEF_PRINTER(SkVector3); -DEF_PRINTER(SkVector4); +DEF_PRINTER(SkPoint); DEF_PRINTER(SkRect); DEF_PRINTER(SkRRect); -DEF_PRINTER(SkPoint); +DEF_PRINTER(SkVector3); +DEF_PRINTER(SkVector4); #endif // FLUTTER_FLOW_DEBUG_PRINT_H_ diff --git a/flow/export_node.cc b/flow/export_node.cc index b6ce18ba7c68d..e837f525f35c4 100644 --- a/flow/export_node.cc +++ b/flow/export_node.cc @@ -4,51 +4,48 @@ #include "flutter/flow/export_node.h" -#include "flutter/common/threads.h" -#include "lib/fxl/functional/make_copyable.h" +#include "flutter/fml/make_copyable.h" namespace flow { ExportNodeHolder::ExportNodeHolder( - fxl::RefPtr export_token_handle) - : export_node_(std::make_unique(export_token_handle)) { - ASSERT_IS_UI_THREAD; + fml::RefPtr gpu_task_runner, + fml::RefPtr export_token_handle) + : gpu_task_runner_(std::move(gpu_task_runner)), + export_node_(std::make_unique(export_token_handle)) { + FML_DCHECK(gpu_task_runner_); } void ExportNodeHolder::Bind(SceneUpdateContext& context, - scenic_lib::ContainerNode& container, + scenic::ContainerNode& container, const SkPoint& offset, bool hit_testable) { - ASSERT_IS_GPU_THREAD; export_node_->Bind(context, container, offset, hit_testable); } ExportNodeHolder::~ExportNodeHolder() { - ASSERT_IS_UI_THREAD; - blink::Threads::Gpu()->PostTask( - fxl::MakeCopyable([export_node = std::move(export_node_)]() { + gpu_task_runner_->PostTask( + fml::MakeCopyable([export_node = std::move(export_node_)]() { export_node->Dispose(true); })); } -ExportNode::ExportNode(fxl::RefPtr export_token_handle) +ExportNode::ExportNode(fml::RefPtr export_token_handle) : export_token_(export_token_handle->ReleaseHandle()) {} ExportNode::~ExportNode() { // Ensure that we properly released the node. - FXL_DCHECK(!node_); - FXL_DCHECK(scene_update_context_ == nullptr); + FML_DCHECK(!node_); + FML_DCHECK(scene_update_context_ == nullptr); } void ExportNode::Bind(SceneUpdateContext& context, - scenic_lib::ContainerNode& container, + scenic::ContainerNode& container, const SkPoint& offset, bool hit_testable) { - ASSERT_IS_GPU_THREAD; - if (export_token_) { // Happens first time we bind. - node_.reset(new scenic_lib::EntityNode(container.session())); + node_.reset(new scenic::EntityNode(container.session())); node_->Export(std::move(export_token_)); // Add ourselves to the context so it can call Dispose() on us if the Scenic @@ -60,22 +57,20 @@ void ExportNode::Bind(SceneUpdateContext& context, if (node_) { container.AddChild(*node_); node_->SetTranslation(offset.x(), offset.y(), 0.f); - node_->SetHitTestBehavior(hit_testable - ? ui::gfx::HitTestBehavior::kDefault - : ui::gfx::HitTestBehavior::kSuppress); + node_->SetHitTestBehavior( + hit_testable ? fuchsia::ui::gfx::HitTestBehavior::kDefault + : fuchsia::ui::gfx::HitTestBehavior::kSuppress); } } void ExportNode::Dispose(bool remove_from_scene_update_context) { - ASSERT_IS_GPU_THREAD; - // If scene_update_context_ is set, then we should still have a node left to // dereference. // If scene_update_context_ is null, then either: // 1. A node was never created, or // 2. A node was created but was already dereferenced (i.e. Dispose has // already been called). - FXL_DCHECK(scene_update_context_ || !node_); + FML_DCHECK(scene_update_context_ || !node_); if (remove_from_scene_update_context && scene_update_context_) { scene_update_context_->RemoveExportNode(this); diff --git a/flow/export_node.h b/flow/export_node.h index 24f94fcebf20f..c7a3db98aacc6 100644 --- a/flow/export_node.h +++ b/flow/export_node.h @@ -11,10 +11,11 @@ #include "dart-pkg/zircon/sdk_ext/handle.h" #include "flutter/flow/scene_update_context.h" -#include "lib/fxl/build_config.h" -#include "lib/fxl/macros.h" -#include "lib/fxl/memory/ref_counted.h" -#include "lib/ui/scenic/client/resources.h" +#include "flutter/fml/build_config.h" +#include "flutter/fml/macros.h" +#include "flutter/fml/memory/ref_counted.h" +#include "lib/ui/scenic/cpp/resources.h" +#include "third_party/flutter/fml/task_runner.h" #include "third_party/skia/include/core/SkPoint.h" namespace flow { @@ -22,25 +23,27 @@ namespace flow { // Wrapper class for ExportNode to use on UI Thread. When ExportNodeHolder is // destroyed, a task is posted on the Rasterizer thread to dispose the resources // held by the ExportNode. -class ExportNodeHolder : public fxl::RefCountedThreadSafe { +class ExportNodeHolder : public fml::RefCountedThreadSafe { public: - ExportNodeHolder(fxl::RefPtr export_token_handle); + ExportNodeHolder(fml::RefPtr gpu_task_runner, + fml::RefPtr export_token_handle); ~ExportNodeHolder(); // Calls Bind() on the wrapped ExportNode. void Bind(SceneUpdateContext& context, - scenic_lib::ContainerNode& container, + scenic::ContainerNode& container, const SkPoint& offset, bool hit_testable); ExportNode* export_node() { return export_node_.get(); } private: + fml::RefPtr gpu_task_runner_; std::unique_ptr export_node_; - FRIEND_MAKE_REF_COUNTED(ExportNodeHolder); - FRIEND_REF_COUNTED_THREAD_SAFE(ExportNodeHolder); - FXL_DISALLOW_COPY_AND_ASSIGN(ExportNodeHolder); + FML_FRIEND_MAKE_REF_COUNTED(ExportNodeHolder); + FML_FRIEND_REF_COUNTED_THREAD_SAFE(ExportNodeHolder); + FML_DISALLOW_COPY_AND_ASSIGN(ExportNodeHolder); }; // Represents a node which is being exported from the session. @@ -48,14 +51,14 @@ class ExportNodeHolder : public fxl::RefCountedThreadSafe { // must be created and destroyed by the rasterizer thread. class ExportNode { public: - ExportNode(fxl::RefPtr export_token_handle); + ExportNode(fml::RefPtr export_token_handle); ~ExportNode(); // Binds the export token to the entity node and adds it as a child of // the specified container. Must be called on the Rasterizer thread. void Bind(SceneUpdateContext& context, - scenic_lib::ContainerNode& container, + scenic::ContainerNode& container, const SkPoint& offset, bool hit_testable); @@ -70,9 +73,9 @@ class ExportNode { // Member variables can only be read or modified on Rasterizer thread. SceneUpdateContext* scene_update_context_ = nullptr; zx::eventpair export_token_; - std::unique_ptr node_; + std::unique_ptr node_; - FXL_DISALLOW_COPY_AND_ASSIGN(ExportNode); + FML_DISALLOW_COPY_AND_ASSIGN(ExportNode); }; } // namespace flow diff --git a/flow/instrumentation.cc b/flow/instrumentation.cc index d8952f9ec32a1..a032a0ab32777 100644 --- a/flow/instrumentation.cc +++ b/flow/instrumentation.cc @@ -14,28 +14,28 @@ namespace flow { static const size_t kMaxSamples = 120; static const size_t kMaxFrameMarkers = 8; -Stopwatch::Stopwatch() : start_(fxl::TimePoint::Now()), current_sample_(0) { - const fxl::TimeDelta delta = fxl::TimeDelta::Zero(); +Stopwatch::Stopwatch() : start_(fml::TimePoint::Now()), current_sample_(0) { + const fml::TimeDelta delta = fml::TimeDelta::Zero(); laps_.resize(kMaxSamples, delta); } Stopwatch::~Stopwatch() = default; void Stopwatch::Start() { - start_ = fxl::TimePoint::Now(); + start_ = fml::TimePoint::Now(); current_sample_ = (current_sample_ + 1) % kMaxSamples; } void Stopwatch::Stop() { - laps_[current_sample_] = fxl::TimePoint::Now() - start_; + laps_[current_sample_] = fml::TimePoint::Now() - start_; } -void Stopwatch::SetLapTime(const fxl::TimeDelta& delta) { +void Stopwatch::SetLapTime(const fml::TimeDelta& delta) { current_sample_ = (current_sample_ + 1) % kMaxSamples; laps_[current_sample_] = delta; } -const fxl::TimeDelta& Stopwatch::LastLap() const { +const fml::TimeDelta& Stopwatch::LastLap() const { return laps_[(current_sample_ - 1) % kMaxSamples]; } @@ -51,8 +51,8 @@ static inline double UnitHeight(double frame_time_ms, return unitHeight; } -fxl::TimeDelta Stopwatch::MaxDelta() const { - fxl::TimeDelta max_delta; +fml::TimeDelta Stopwatch::MaxDelta() const { + fml::TimeDelta max_delta; for (size_t i = 0; i < kMaxSamples; i++) { if (laps_[i] > max_delta) max_delta = laps_[i]; @@ -83,9 +83,8 @@ void Stopwatch::Visualize(SkCanvas& canvas, const SkRect& rect) const { // Prepare a path for the data. // we start at the height of the last point, so it looks like we wrap around SkPath path; + path.setIsVolatile(true); const double sample_unit_width = (1.0 / kMaxSamples); - const double sample_margin_unit_width = sample_unit_width / 6.0; - const double sample_margin_width = width * sample_margin_unit_width; path.moveTo(x, bottom); path.lineTo(x, y + height * (1.0 - UnitHeight(laps_[0].ToMillisecondsF(), max_unit_interval))); @@ -97,8 +96,8 @@ void Stopwatch::Visualize(SkCanvas& canvas, const SkRect& rect) const { const double sample_y = y + height * (1.0 - UnitHeight(laps_[i].ToMillisecondsF(), max_unit_interval)); - path.lineTo(x + width * unit_x + sample_margin_width, sample_y); - path.lineTo(x + width * unit_next_x - sample_margin_width, sample_y); + path.lineTo(x + width * unit_x, sample_y); + path.lineTo(x + width * unit_next_x, sample_y); } path.lineTo( right, @@ -146,12 +145,10 @@ void Stopwatch::Visualize(SkCanvas& canvas, const SkRect& rect) const { paint.setColor(SK_ColorGREEN); } double sample_x = - x + width * (static_cast(current_sample_) / kMaxSamples) - - sample_margin_width; + x + width * (static_cast(current_sample_) / kMaxSamples); const auto marker_rect = SkRect::MakeLTRB( - sample_x, y, - sample_x + width * sample_unit_width + sample_margin_width * 2, bottom); + sample_x, y, sample_x + width * sample_unit_width, bottom); canvas.drawRect(marker_rect, paint); } diff --git a/flow/instrumentation.h b/flow/instrumentation.h index 1692c8aec4955..19f3b0cfd8bc8 100644 --- a/flow/instrumentation.h +++ b/flow/instrumentation.h @@ -7,9 +7,9 @@ #include -#include "lib/fxl/macros.h" -#include "lib/fxl/time/time_delta.h" -#include "lib/fxl/time/time_point.h" +#include "flutter/fml/macros.h" +#include "flutter/fml/time/time_delta.h" +#include "flutter/fml/time/time_point.h" #include "third_party/skia/include/core/SkCanvas.h" namespace flow { @@ -22,11 +22,11 @@ class Stopwatch { ~Stopwatch(); - const fxl::TimeDelta& LastLap() const; + const fml::TimeDelta& LastLap() const; - fxl::TimeDelta CurrentLap() const { return fxl::TimePoint::Now() - start_; } + fml::TimeDelta CurrentLap() const { return fml::TimePoint::Now() - start_; } - fxl::TimeDelta MaxDelta() const; + fml::TimeDelta MaxDelta() const; void Visualize(SkCanvas& canvas, const SkRect& rect) const; @@ -34,14 +34,14 @@ class Stopwatch { void Stop(); - void SetLapTime(const fxl::TimeDelta& delta); + void SetLapTime(const fml::TimeDelta& delta); private: - fxl::TimePoint start_; - std::vector laps_; + fml::TimePoint start_; + std::vector laps_; size_t current_sample_; - FXL_DISALLOW_COPY_AND_ASSIGN(Stopwatch); + FML_DISALLOW_COPY_AND_ASSIGN(Stopwatch); }; class Counter { @@ -57,7 +57,7 @@ class Counter { private: size_t count_; - FXL_DISALLOW_COPY_AND_ASSIGN(Counter); + FML_DISALLOW_COPY_AND_ASSIGN(Counter); }; class CounterValues { @@ -80,7 +80,7 @@ class CounterValues { std::vector values_; size_t current_sample_; - FXL_DISALLOW_COPY_AND_ASSIGN(CounterValues); + FML_DISALLOW_COPY_AND_ASSIGN(CounterValues); }; } // namespace flow diff --git a/flow/layers/backdrop_filter_layer.cc b/flow/layers/backdrop_filter_layer.cc index 5186284fcce35..b8d04803f1935 100644 --- a/flow/layers/backdrop_filter_layer.cc +++ b/flow/layers/backdrop_filter_layer.cc @@ -14,7 +14,7 @@ BackdropFilterLayer::~BackdropFilterLayer() = default; void BackdropFilterLayer::Paint(PaintContext& context) const { TRACE_EVENT0("flutter", "BackdropFilterLayer::Paint"); - FXL_DCHECK(needs_painting()); + FML_DCHECK(needs_painting()); Layer::AutoSaveLayer(context, SkCanvas::SaveLayerRec{&paint_bounds(), nullptr, filter_.get(), 0}); diff --git a/flow/layers/backdrop_filter_layer.h b/flow/layers/backdrop_filter_layer.h index 00b1a22240541..a54f844a429e1 100644 --- a/flow/layers/backdrop_filter_layer.h +++ b/flow/layers/backdrop_filter_layer.h @@ -21,7 +21,7 @@ class BackdropFilterLayer : public ContainerLayer { private: sk_sp filter_; - FXL_DISALLOW_COPY_AND_ASSIGN(BackdropFilterLayer); + FML_DISALLOW_COPY_AND_ASSIGN(BackdropFilterLayer); }; } // namespace flow diff --git a/flow/layers/child_scene_layer.cc b/flow/layers/child_scene_layer.cc index 8b36ce09c64a3..744aee5e87888 100644 --- a/flow/layers/child_scene_layer.cc +++ b/flow/layers/child_scene_layer.cc @@ -19,7 +19,7 @@ void ChildSceneLayer::Paint(PaintContext& context) const { } void ChildSceneLayer::UpdateScene(SceneUpdateContext& context) { - FXL_DCHECK(needs_system_composite()); + FML_DCHECK(needs_system_composite()); // TODO(MZ-191): Set clip. // It's worth asking whether all children should be clipped implicitly diff --git a/flow/layers/child_scene_layer.h b/flow/layers/child_scene_layer.h index d28009095c021..b52ceb28b2d4f 100644 --- a/flow/layers/child_scene_layer.h +++ b/flow/layers/child_scene_layer.h @@ -21,7 +21,7 @@ class ChildSceneLayer : public Layer { void set_size(const SkSize& size) { size_ = size; } void set_export_node_holder( - fxl::RefPtr export_node_holder) { + fml::RefPtr export_node_holder) { export_node_holder_ = std::move(export_node_holder); } @@ -36,10 +36,10 @@ class ChildSceneLayer : public Layer { private: SkPoint offset_; SkSize size_; - fxl::RefPtr export_node_holder_; + fml::RefPtr export_node_holder_; bool hit_testable_ = true; - FXL_DISALLOW_COPY_AND_ASSIGN(ChildSceneLayer); + FML_DISALLOW_COPY_AND_ASSIGN(ChildSceneLayer); }; } // namespace flow diff --git a/flow/layers/clip_path_layer.cc b/flow/layers/clip_path_layer.cc index e1ab3112aec19..3c71823c48503 100644 --- a/flow/layers/clip_path_layer.cc +++ b/flow/layers/clip_path_layer.cc @@ -12,7 +12,8 @@ namespace flow { -ClipPathLayer::ClipPathLayer() = default; +ClipPathLayer::ClipPathLayer(Clip clip_behavior) + : clip_behavior_(clip_behavior) {} ClipPathLayer::~ClipPathLayer() = default; @@ -28,16 +29,17 @@ void ClipPathLayer::Preroll(PrerollContext* context, const SkMatrix& matrix) { #if defined(OS_FUCHSIA) void ClipPathLayer::UpdateScene(SceneUpdateContext& context) { - FXL_DCHECK(needs_system_composite()); + FML_DCHECK(needs_system_composite()); // TODO(MZ-140): Must be able to specify paths as shapes to nodes. // Treating the shape as a rectangle for now. auto bounds = clip_path_.getBounds(); - scenic_lib::Rectangle shape(context.session(), // session - bounds.width(), // width - bounds.height() // height + scenic::Rectangle shape(context.session(), // session + bounds.width(), // width + bounds.height() // height ); + // TODO(liyuqian): respect clip_behavior_ SceneUpdateContext::Clip clip(context, shape, bounds); UpdateSceneChildren(context); } @@ -46,11 +48,17 @@ void ClipPathLayer::UpdateScene(SceneUpdateContext& context) { void ClipPathLayer::Paint(PaintContext& context) const { TRACE_EVENT0("flutter", "ClipPathLayer::Paint"); - FXL_DCHECK(needs_painting()); + FML_DCHECK(needs_painting()); - Layer::AutoSaveLayer save(context, paint_bounds(), nullptr); - context.canvas.clipPath(clip_path_, true); + SkAutoCanvasRestore save(&context.canvas, true); + context.canvas.clipPath(clip_path_, clip_behavior_ != Clip::hardEdge); + if (clip_behavior_ == Clip::antiAliasWithSaveLayer) { + context.canvas.saveLayer(paint_bounds(), nullptr); + } PaintChildren(context); + if (clip_behavior_ == Clip::antiAliasWithSaveLayer) { + context.canvas.restore(); + } } } // namespace flow diff --git a/flow/layers/clip_path_layer.h b/flow/layers/clip_path_layer.h index 87a37bdc8aaab..33b043029ba10 100644 --- a/flow/layers/clip_path_layer.h +++ b/flow/layers/clip_path_layer.h @@ -11,7 +11,7 @@ namespace flow { class ClipPathLayer : public ContainerLayer { public: - ClipPathLayer(); + ClipPathLayer(Clip clip_behavior = Clip::antiAlias); ~ClipPathLayer() override; void set_clip_path(const SkPath& clip_path) { clip_path_ = clip_path; } @@ -26,8 +26,9 @@ class ClipPathLayer : public ContainerLayer { private: SkPath clip_path_; + Clip clip_behavior_; - FXL_DISALLOW_COPY_AND_ASSIGN(ClipPathLayer); + FML_DISALLOW_COPY_AND_ASSIGN(ClipPathLayer); }; } // namespace flow diff --git a/flow/layers/clip_rect_layer.cc b/flow/layers/clip_rect_layer.cc index 4abdbdaf69217..733acfcebd072 100644 --- a/flow/layers/clip_rect_layer.cc +++ b/flow/layers/clip_rect_layer.cc @@ -6,7 +6,8 @@ namespace flow { -ClipRectLayer::ClipRectLayer() = default; +ClipRectLayer::ClipRectLayer(Clip clip_behavior) + : clip_behavior_(clip_behavior) {} ClipRectLayer::~ClipRectLayer() = default; @@ -22,13 +23,14 @@ void ClipRectLayer::Preroll(PrerollContext* context, const SkMatrix& matrix) { #if defined(OS_FUCHSIA) void ClipRectLayer::UpdateScene(SceneUpdateContext& context) { - FXL_DCHECK(needs_system_composite()); + FML_DCHECK(needs_system_composite()); - scenic_lib::Rectangle shape(context.session(), // session - clip_rect_.width(), // width - clip_rect_.height() // height + scenic::Rectangle shape(context.session(), // session + clip_rect_.width(), // width + clip_rect_.height() // height ); + // TODO(liyuqian): respect clip_behavior_ SceneUpdateContext::Clip clip(context, shape, clip_rect_); UpdateSceneChildren(context); } @@ -37,11 +39,17 @@ void ClipRectLayer::UpdateScene(SceneUpdateContext& context) { void ClipRectLayer::Paint(PaintContext& context) const { TRACE_EVENT0("flutter", "ClipRectLayer::Paint"); - FXL_DCHECK(needs_painting()); + FML_DCHECK(needs_painting()); SkAutoCanvasRestore save(&context.canvas, true); - context.canvas.clipRect(paint_bounds()); + context.canvas.clipRect(paint_bounds(), clip_behavior_ != Clip::hardEdge); + if (clip_behavior_ == Clip::antiAliasWithSaveLayer) { + context.canvas.saveLayer(paint_bounds(), nullptr); + } PaintChildren(context); + if (clip_behavior_ == Clip::antiAliasWithSaveLayer) { + context.canvas.restore(); + } } } // namespace flow diff --git a/flow/layers/clip_rect_layer.h b/flow/layers/clip_rect_layer.h index a7dfecc88eebc..576e6a5d029a7 100644 --- a/flow/layers/clip_rect_layer.h +++ b/flow/layers/clip_rect_layer.h @@ -11,7 +11,7 @@ namespace flow { class ClipRectLayer : public ContainerLayer { public: - ClipRectLayer(); + ClipRectLayer(Clip clip_behavior); ~ClipRectLayer() override; void set_clip_rect(const SkRect& clip_rect) { clip_rect_ = clip_rect; } @@ -25,8 +25,9 @@ class ClipRectLayer : public ContainerLayer { private: SkRect clip_rect_; + Clip clip_behavior_; - FXL_DISALLOW_COPY_AND_ASSIGN(ClipRectLayer); + FML_DISALLOW_COPY_AND_ASSIGN(ClipRectLayer); }; } // namespace flow diff --git a/flow/layers/clip_rrect_layer.cc b/flow/layers/clip_rrect_layer.cc index e72590edb372b..046a0d45404ef 100644 --- a/flow/layers/clip_rrect_layer.cc +++ b/flow/layers/clip_rrect_layer.cc @@ -6,7 +6,8 @@ namespace flow { -ClipRRectLayer::ClipRRectLayer() = default; +ClipRRectLayer::ClipRRectLayer(Clip clip_behavior) + : clip_behavior_(clip_behavior) {} ClipRRectLayer::~ClipRRectLayer() = default; @@ -22,10 +23,10 @@ void ClipRRectLayer::Preroll(PrerollContext* context, const SkMatrix& matrix) { #if defined(OS_FUCHSIA) void ClipRRectLayer::UpdateScene(SceneUpdateContext& context) { - FXL_DCHECK(needs_system_composite()); + FML_DCHECK(needs_system_composite()); // TODO(MZ-137): Need to be able to express the radii as vectors. - scenic_lib::RoundedRectangle shape( + scenic::RoundedRectangle shape( context.session(), // session clip_rrect_.width(), // width clip_rrect_.height(), // height @@ -36,6 +37,7 @@ void ClipRRectLayer::UpdateScene(SceneUpdateContext& context) { clip_rrect_.radii(SkRRect::kLowerLeft_Corner).x() // bottom_left_radius ); + // TODO(liyuqian): respect clip_behavior_ SceneUpdateContext::Clip clip(context, shape, clip_rrect_.getBounds()); UpdateSceneChildren(context); } @@ -44,11 +46,17 @@ void ClipRRectLayer::UpdateScene(SceneUpdateContext& context) { void ClipRRectLayer::Paint(PaintContext& context) const { TRACE_EVENT0("flutter", "ClipRRectLayer::Paint"); - FXL_DCHECK(needs_painting()); + FML_DCHECK(needs_painting()); - Layer::AutoSaveLayer save(context, paint_bounds(), nullptr); - context.canvas.clipRRect(clip_rrect_, true); + SkAutoCanvasRestore save(&context.canvas, true); + context.canvas.clipRRect(clip_rrect_, clip_behavior_ != Clip::hardEdge); + if (clip_behavior_ == Clip::antiAliasWithSaveLayer) { + context.canvas.saveLayer(paint_bounds(), nullptr); + } PaintChildren(context); + if (clip_behavior_ == Clip::antiAliasWithSaveLayer) { + context.canvas.restore(); + } } } // namespace flow diff --git a/flow/layers/clip_rrect_layer.h b/flow/layers/clip_rrect_layer.h index 5763313c97195..7e8f0934a337f 100644 --- a/flow/layers/clip_rrect_layer.h +++ b/flow/layers/clip_rrect_layer.h @@ -11,7 +11,7 @@ namespace flow { class ClipRRectLayer : public ContainerLayer { public: - ClipRRectLayer(); + ClipRRectLayer(Clip clip_behavior); ~ClipRRectLayer() override; void set_clip_rrect(const SkRRect& clip_rrect) { clip_rrect_ = clip_rrect; } @@ -26,8 +26,9 @@ class ClipRRectLayer : public ContainerLayer { private: SkRRect clip_rrect_; + Clip clip_behavior_; - FXL_DISALLOW_COPY_AND_ASSIGN(ClipRRectLayer); + FML_DISALLOW_COPY_AND_ASSIGN(ClipRRectLayer); }; } // namespace flow diff --git a/flow/layers/color_filter_layer.cc b/flow/layers/color_filter_layer.cc index 6b1330eb40593..a3c678aa1539e 100644 --- a/flow/layers/color_filter_layer.cc +++ b/flow/layers/color_filter_layer.cc @@ -12,7 +12,7 @@ ColorFilterLayer::~ColorFilterLayer() = default; void ColorFilterLayer::Paint(PaintContext& context) const { TRACE_EVENT0("flutter", "ColorFilterLayer::Paint"); - FXL_DCHECK(needs_painting()); + FML_DCHECK(needs_painting()); sk_sp color_filter = SkColorFilter::MakeModeFilter(color_, blend_mode_); diff --git a/flow/layers/color_filter_layer.h b/flow/layers/color_filter_layer.h index dcd7543b55d53..e129bad66f000 100644 --- a/flow/layers/color_filter_layer.h +++ b/flow/layers/color_filter_layer.h @@ -24,7 +24,7 @@ class ColorFilterLayer : public ContainerLayer { SkColor color_; SkBlendMode blend_mode_; - FXL_DISALLOW_COPY_AND_ASSIGN(ColorFilterLayer); + FML_DISALLOW_COPY_AND_ASSIGN(ColorFilterLayer); }; } // namespace flow diff --git a/flow/layers/container_layer.cc b/flow/layers/container_layer.cc index b437d4369bf11..f398c96ad1afe 100644 --- a/flow/layers/container_layer.cc +++ b/flow/layers/container_layer.cc @@ -38,7 +38,7 @@ void ContainerLayer::PrerollChildren(PrerollContext* context, } void ContainerLayer::PaintChildren(PaintContext& context) const { - FXL_DCHECK(needs_painting()); + FML_DCHECK(needs_painting()); // Intentionally not tracing here as there should be no self-time // and the trace event on this common function has a small overhead. @@ -56,7 +56,7 @@ void ContainerLayer::UpdateScene(SceneUpdateContext& context) { } void ContainerLayer::UpdateSceneChildren(SceneUpdateContext& context) { - FXL_DCHECK(needs_system_composite()); + FML_DCHECK(needs_system_composite()); // Paint all of the layers which need to be drawn into the container. // These may be flattened down to a containing diff --git a/flow/layers/container_layer.h b/flow/layers/container_layer.h index 9b30d28c9f44a..0da0a7185963e 100644 --- a/flow/layers/container_layer.h +++ b/flow/layers/container_layer.h @@ -38,7 +38,7 @@ class ContainerLayer : public Layer { private: std::vector> layers_; - FXL_DISALLOW_COPY_AND_ASSIGN(ContainerLayer); + FML_DISALLOW_COPY_AND_ASSIGN(ContainerLayer); }; } // namespace flow diff --git a/flow/layers/default_layer_builder.cc b/flow/layers/default_layer_builder.cc index 9cf822528f3f9..c6f4b80e82564 100644 --- a/flow/layers/default_layer_builder.cc +++ b/flow/layers/default_layer_builder.cc @@ -26,8 +26,10 @@ namespace flow { +static const SkRect kGiantRect = SkRect::MakeLTRB(-1E9F, -1E9F, 1E9F, 1E9F); + DefaultLayerBuilder::DefaultLayerBuilder() { - cull_rects_.push(SkRect::MakeLargest()); + cull_rects_.push(kGiantRect); } DefaultLayerBuilder::~DefaultLayerBuilder() = default; @@ -35,43 +37,47 @@ DefaultLayerBuilder::~DefaultLayerBuilder() = default; void DefaultLayerBuilder::PushTransform(const SkMatrix& sk_matrix) { SkMatrix inverse_sk_matrix; SkRect cullRect; - if (sk_matrix.invert(&inverse_sk_matrix)) { + // Perspective projections don't produce rectangles that are useful for + // culling for some reason. + if (!sk_matrix.hasPerspective() && sk_matrix.invert(&inverse_sk_matrix)) { inverse_sk_matrix.mapRect(&cullRect, cull_rects_.top()); } else { - cullRect = SkRect::MakeLargest(); + cullRect = kGiantRect; } - auto layer = std::make_unique(); layer->set_transform(sk_matrix); PushLayer(std::move(layer), cullRect); } -void DefaultLayerBuilder::PushClipRect(const SkRect& clipRect) { +void DefaultLayerBuilder::PushClipRect(const SkRect& clipRect, + Clip clip_behavior) { SkRect cullRect; if (!cullRect.intersect(clipRect, cull_rects_.top())) { cullRect = SkRect::MakeEmpty(); } - auto layer = std::make_unique(); + auto layer = std::make_unique(clip_behavior); layer->set_clip_rect(clipRect); PushLayer(std::move(layer), cullRect); } -void DefaultLayerBuilder::PushClipRoundedRect(const SkRRect& rrect) { +void DefaultLayerBuilder::PushClipRoundedRect(const SkRRect& rrect, + Clip clip_behavior) { SkRect cullRect; if (!cullRect.intersect(rrect.rect(), cull_rects_.top())) { cullRect = SkRect::MakeEmpty(); } - auto layer = std::make_unique(); + auto layer = std::make_unique(clip_behavior); layer->set_clip_rrect(rrect); PushLayer(std::move(layer), cullRect); } -void DefaultLayerBuilder::PushClipPath(const SkPath& path) { +void DefaultLayerBuilder::PushClipPath(const SkPath& path, Clip clip_behavior) { + FML_DCHECK(clip_behavior != Clip::none); SkRect cullRect; if (!cullRect.intersect(path.getBounds(), cull_rects_.top())) { cullRect = SkRect::MakeEmpty(); } - auto layer = std::make_unique(); + auto layer = std::make_unique(clip_behavior); layer->set_clip_path(path); PushLayer(std::move(layer), cullRect); } @@ -110,12 +116,13 @@ void DefaultLayerBuilder::PushPhysicalShape(const SkPath& sk_path, double elevation, SkColor color, SkColor shadow_color, - SkScalar device_pixel_ratio) { + SkScalar device_pixel_ratio, + Clip clip_behavior) { SkRect cullRect; if (!cullRect.intersect(sk_path.getBounds(), cull_rects_.top())) { cullRect = SkRect::MakeEmpty(); } - auto layer = std::make_unique(); + auto layer = std::make_unique(clip_behavior); layer->set_path(sk_path); layer->set_elevation(elevation); layer->set_color(color); @@ -135,20 +142,20 @@ void DefaultLayerBuilder::PushPerformanceOverlay(uint64_t enabled_options, } void DefaultLayerBuilder::PushPicture(const SkPoint& offset, - sk_sp picture, + SkiaGPUObject picture, bool picture_is_complex, bool picture_will_change) { if (!current_layer_) { return; } - SkRect pictureRect = picture->cullRect(); + SkRect pictureRect = picture.get()->cullRect(); pictureRect.offset(offset.x(), offset.y()); if (!SkRect::Intersects(pictureRect, cull_rects_.top())) { return; } auto layer = std::make_unique(); layer->set_offset(offset); - layer->set_picture(picture); + layer->set_picture(std::move(picture)); layer->set_is_complex(picture_is_complex); layer->set_will_change(picture_will_change); current_layer_->Add(std::move(layer)); @@ -156,7 +163,8 @@ void DefaultLayerBuilder::PushPicture(const SkPoint& offset, void DefaultLayerBuilder::PushTexture(const SkPoint& offset, const SkSize& size, - int64_t texture_id) { + int64_t texture_id, + bool freeze) { if (!current_layer_) { return; } @@ -164,6 +172,7 @@ void DefaultLayerBuilder::PushTexture(const SkPoint& offset, layer->set_offset(offset); layer->set_size(size); layer->set_texture_id(texture_id); + layer->set_freeze(freeze); current_layer_->Add(std::move(layer)); } @@ -171,7 +180,7 @@ void DefaultLayerBuilder::PushTexture(const SkPoint& offset, void DefaultLayerBuilder::PushChildScene( const SkPoint& offset, const SkSize& size, - fxl::RefPtr export_token_holder, + fml::RefPtr export_token_holder, bool hit_testable) { if (!current_layer_) { return; @@ -204,7 +213,7 @@ std::unique_ptr DefaultLayerBuilder::TakeLayer() { void DefaultLayerBuilder::PushLayer(std::unique_ptr layer, const SkRect& cullRect) { - FXL_DCHECK(layer); + FML_DCHECK(layer); cull_rects_.push(cullRect); diff --git a/flow/layers/default_layer_builder.h b/flow/layers/default_layer_builder.h index a62ec46714d21..2601344668ed7 100644 --- a/flow/layers/default_layer_builder.h +++ b/flow/layers/default_layer_builder.h @@ -9,7 +9,7 @@ #include "flutter/flow/layers/container_layer.h" #include "flutter/flow/layers/layer_builder.h" -#include "garnet/public/lib/fxl/macros.h" +#include "flutter/fml/macros.h" namespace flow { @@ -24,13 +24,16 @@ class DefaultLayerBuilder final : public LayerBuilder { void PushTransform(const SkMatrix& matrix) override; // |flow::LayerBuilder| - void PushClipRect(const SkRect& rect) override; + void PushClipRect(const SkRect& rect, + Clip clip_behavior = Clip::antiAlias) override; // |flow::LayerBuilder| - void PushClipRoundedRect(const SkRRect& rect) override; + void PushClipRoundedRect(const SkRRect& rect, + Clip clip_behavior = Clip::antiAlias) override; // |flow::LayerBuilder| - void PushClipPath(const SkPath& path) override; + void PushClipPath(const SkPath& path, + Clip clip_behavior = Clip::antiAlias) override; // |flow::LayerBuilder| void PushOpacity(int alpha) override; @@ -51,7 +54,8 @@ class DefaultLayerBuilder final : public LayerBuilder { double elevation, SkColor color, SkColor shadow_color, - SkScalar device_pixel_ratio) override; + SkScalar device_pixel_ratio, + Clip clip_behavior) override; // |flow::LayerBuilder| void PushPerformanceOverlay(uint64_t enabled_options, @@ -59,20 +63,21 @@ class DefaultLayerBuilder final : public LayerBuilder { // |flow::LayerBuilder| void PushPicture(const SkPoint& offset, - sk_sp picture, + SkiaGPUObject picture, bool picture_is_complex, bool picture_will_change) override; // |flow::LayerBuilder| void PushTexture(const SkPoint& offset, const SkSize& size, - int64_t texture_id) override; + int64_t texture_id, + bool freeze) override; #if defined(OS_FUCHSIA) // |flow::LayerBuilder| void PushChildScene(const SkPoint& offset, const SkSize& size, - fxl::RefPtr export_token_holder, + fml::RefPtr export_token_holder, bool hit_testable) override; #endif // defined(OS_FUCHSIA) @@ -91,7 +96,7 @@ class DefaultLayerBuilder final : public LayerBuilder { void PushLayer(std::unique_ptr layer, const SkRect& cullRect); - FXL_DISALLOW_COPY_AND_ASSIGN(DefaultLayerBuilder); + FML_DISALLOW_COPY_AND_ASSIGN(DefaultLayerBuilder); }; } // namespace flow diff --git a/flow/layers/layer.h b/flow/layers/layer.h index 09b82dddb0265..53e32941e8d1d 100644 --- a/flow/layers/layer.h +++ b/flow/layers/layer.h @@ -11,10 +11,10 @@ #include "flutter/flow/instrumentation.h" #include "flutter/flow/raster_cache.h" #include "flutter/flow/texture.h" -#include "flutter/glue/trace_event.h" -#include "lib/fxl/build_config.h" -#include "lib/fxl/logging.h" -#include "lib/fxl/macros.h" +#include "flutter/fml/build_config.h" +#include "flutter/fml/logging.h" +#include "flutter/fml/macros.h" +#include "flutter/fml/trace_event.h" #include "third_party/skia/include/core/SkCanvas.h" #include "third_party/skia/include/core/SkColor.h" #include "third_party/skia/include/core/SkColorFilter.h" @@ -27,13 +27,16 @@ #if defined(OS_FUCHSIA) #include "flutter/flow/scene_update_context.h" //nogncheck -#include "lib/ui/scenic/client/resources.h" //nogncheck -#include "lib/ui/scenic/client/session.h" //nogncheck +#include "lib/ui/scenic/cpp/resources.h" //nogncheck +#include "lib/ui/scenic/cpp/session.h" //nogncheck #endif // defined(OS_FUCHSIA) namespace flow { +// This should be an exact copy of the Clip enum in painting.dart. +enum Clip { none, hardEdge, antiAlias, antiAliasWithSaveLayer }; + class ContainerLayer; // Represents a single composited layer. Created on the UI thread but then @@ -44,9 +47,6 @@ class Layer { virtual ~Layer(); struct PrerollContext { -#if defined(OS_FUCHSIA) - ui::gfx::Metrics* metrics = nullptr; -#endif RasterCache* raster_cache; GrContext* gr_context; SkColorSpace* dst_color_space; @@ -57,9 +57,9 @@ class Layer { struct PaintContext { SkCanvas& canvas; + const SkMatrix& root_surface_transformation; const Stopwatch& frame_time; const Stopwatch& engine_time; - const CounterValues& memory_usage; TextureRegistry& texture_registry; const bool checkerboard_offscreen_layers; }; @@ -113,7 +113,7 @@ class Layer { bool needs_system_composite_; SkRect paint_bounds_; - FXL_DISALLOW_COPY_AND_ASSIGN(Layer); + FML_DISALLOW_COPY_AND_ASSIGN(Layer); }; } // namespace flow diff --git a/flow/layers/layer_builder.h b/flow/layers/layer_builder.h index 91ae13974a23b..8fa83e222f9ca 100644 --- a/flow/layers/layer_builder.h +++ b/flow/layers/layer_builder.h @@ -8,7 +8,8 @@ #include #include "flutter/flow/layers/layer.h" -#include "garnet/public/lib/fxl/macros.h" +#include "flutter/flow/skia_gpu_object.h" +#include "flutter/fml/macros.h" #include "third_party/skia/include/core/SkBlendMode.h" #include "third_party/skia/include/core/SkColor.h" #include "third_party/skia/include/core/SkImageFilter.h" @@ -31,11 +32,14 @@ class LayerBuilder { virtual void PushTransform(const SkMatrix& matrix) = 0; - virtual void PushClipRect(const SkRect& rect) = 0; + virtual void PushClipRect(const SkRect& rect, + Clip clip_behavior = Clip::antiAlias) = 0; - virtual void PushClipRoundedRect(const SkRRect& rect) = 0; + virtual void PushClipRoundedRect(const SkRRect& rect, + Clip clip_behavior = Clip::antiAlias) = 0; - virtual void PushClipPath(const SkPath& path) = 0; + virtual void PushClipPath(const SkPath& path, + Clip clip_behavior = Clip::antiAlias) = 0; virtual void PushOpacity(int alpha) = 0; @@ -51,25 +55,27 @@ class LayerBuilder { double elevation, SkColor color, SkColor shadow_color, - SkScalar device_pixel_ratio) = 0; + SkScalar device_pixel_ratio, + Clip clip_behavior) = 0; virtual void PushPerformanceOverlay(uint64_t enabled_options, const SkRect& rect) = 0; virtual void PushPicture(const SkPoint& offset, - sk_sp picture, + SkiaGPUObject picture, bool picture_is_complex, bool picture_will_change) = 0; virtual void PushTexture(const SkPoint& offset, const SkSize& size, - int64_t texture_id) = 0; + int64_t texture_id, + bool freeze) = 0; #if defined(OS_FUCHSIA) virtual void PushChildScene( const SkPoint& offset, const SkSize& size, - fxl::RefPtr export_token_holder, + fml::RefPtr export_token_holder, bool hit_testable) = 0; #endif // defined(OS_FUCHSIA) @@ -94,7 +100,7 @@ class LayerBuilder { bool checkerboard_raster_cache_images_ = false; bool checkerboard_offscreen_layers_ = false; - FXL_DISALLOW_COPY_AND_ASSIGN(LayerBuilder); + FML_DISALLOW_COPY_AND_ASSIGN(LayerBuilder); }; } // namespace flow diff --git a/flow/layers/layer_tree.cc b/flow/layers/layer_tree.cc index 9a52cb57d7f48..007bd0fbd9530 100644 --- a/flow/layers/layer_tree.cc +++ b/flow/layers/layer_tree.cc @@ -5,7 +5,8 @@ #include "flutter/flow/layers/layer_tree.h" #include "flutter/flow/layers/layer.h" -#include "flutter/glue/trace_event.h" +#include "flutter/fml/trace_event.h" +#include "third_party/skia/include/core/SkPictureRecorder.h" namespace flow { @@ -17,43 +18,18 @@ LayerTree::LayerTree() LayerTree::~LayerTree() = default; -void LayerTree::Raster(CompositorContext::ScopedFrame& frame, -#if defined(OS_FUCHSIA) - ui::gfx::Metrics* metrics, -#endif - bool ignore_raster_cache) { -#if defined(OS_FUCHSIA) - FXL_DCHECK(metrics); -#endif - Preroll(frame, -#if defined(OS_FUCHSIA) - metrics, -#endif - ignore_raster_cache); - Paint(frame); -} - void LayerTree::Preroll(CompositorContext::ScopedFrame& frame, -#if defined(OS_FUCHSIA) - ui::gfx::Metrics* metrics, -#endif bool ignore_raster_cache) { -#if defined(OS_FUCHSIA) - FXL_DCHECK(metrics); -#endif TRACE_EVENT0("flutter", "LayerTree::Preroll"); SkColorSpace* color_space = frame.canvas() ? frame.canvas()->imageInfo().colorSpace() : nullptr; frame.context().raster_cache().SetCheckboardCacheImages( checkerboard_raster_cache_images_); Layer::PrerollContext context = { -#if defined(OS_FUCHSIA) - metrics, -#endif - ignore_raster_cache ? nullptr : &frame.context().raster_cache(), - frame.gr_context(), - color_space, - SkRect::MakeEmpty(), + ignore_raster_cache ? nullptr : &frame.context().raster_cache(), + frame.gr_context(), + color_space, + SkRect::MakeEmpty(), }; root_layer_->Preroll(&context, SkMatrix::I()); @@ -61,11 +37,14 @@ void LayerTree::Preroll(CompositorContext::ScopedFrame& frame, #if defined(OS_FUCHSIA) void LayerTree::UpdateScene(SceneUpdateContext& context, - scenic_lib::ContainerNode& container) { + scenic::ContainerNode& container) { TRACE_EVENT0("flutter", "LayerTree::UpdateScene"); - - SceneUpdateContext::Transform transform(context, 1.f / device_pixel_ratio_, - 1.f / device_pixel_ratio_, 1.f); + const auto& metrics = context.metrics(); + SceneUpdateContext::Transform transform(context, // context + 1.0f / metrics->scale_x, // X + 1.0f / metrics->scale_y, // Y + 1.0f / metrics->scale_z // Z + ); SceneUpdateContext::Frame frame( context, SkRRect::MakeRect( @@ -82,16 +61,63 @@ void LayerTree::UpdateScene(SceneUpdateContext& context, #endif void LayerTree::Paint(CompositorContext::ScopedFrame& frame) const { - Layer::PaintContext context = {*frame.canvas(), - frame.context().frame_time(), - frame.context().engine_time(), - frame.context().memory_usage(), - frame.context().texture_registry(), - checkerboard_offscreen_layers_}; TRACE_EVENT0("flutter", "LayerTree::Paint"); + Layer::PaintContext context = { + *frame.canvas(), // + frame.root_surface_transformation(), // + frame.context().frame_time(), // + frame.context().engine_time(), // + frame.context().texture_registry(), // + checkerboard_offscreen_layers_ // + }; if (root_layer_->needs_painting()) root_layer_->Paint(context); } +sk_sp LayerTree::Flatten(const SkRect& bounds) { + TRACE_EVENT0("flutter", "LayerTree::Flatten"); + + SkPictureRecorder recorder; + auto canvas = recorder.beginRecording(bounds); + + if (!canvas) { + return nullptr; + } + + Layer::PrerollContext preroll_context{ + nullptr, // raster_cache (don't consult the cache) + nullptr, // gr_context (used for the raster cache) + nullptr, // SkColorSpace* dst_color_space + SkRect::MakeEmpty(), // SkRect child_paint_bounds + }; + + const Stopwatch unused_stopwatch; + TextureRegistry unused_texture_registry; + SkMatrix root_surface_transformation; + // No root surface transformation. So assume identity. + root_surface_transformation.reset(); + + Layer::PaintContext paint_context = { + *canvas, // canvas + root_surface_transformation, // root surface transformation + unused_stopwatch, // frame time (dont care) + unused_stopwatch, // engine time (dont care) + unused_texture_registry, // texture registry (not supported) + false // checkerboard offscreen layers + }; + + // Even if we don't have a root layer, we still need to create an empty + // picture. + if (root_layer_) { + root_layer_->Preroll(&preroll_context, SkMatrix::I()); + // The needs painting flag may be set after the preroll. So check it after. + if (root_layer_->needs_painting()) { + root_layer_->Paint(paint_context); + } + } + + return recorder.finishRecordingAsPicture(); +} + } // namespace flow diff --git a/flow/layers/layer_tree.h b/flow/layers/layer_tree.h index a040180ad30a7..bae883ca207be 100644 --- a/flow/layers/layer_tree.h +++ b/flow/layers/layer_tree.h @@ -11,11 +11,9 @@ #include "flutter/flow/compositor_context.h" #include "flutter/flow/layers/layer.h" -#include "lib/fxl/macros.h" -#include "lib/fxl/time/time_delta.h" -#if defined(OS_FUCHSIA) -#include "lib/ui/scenic/fidl/events.fidl.h" -#endif +#include "flutter/fml/macros.h" +#include "flutter/fml/time/time_delta.h" +#include "third_party/skia/include/core/SkPicture.h" #include "third_party/skia/include/core/SkSize.h" namespace flow { @@ -26,30 +24,18 @@ class LayerTree { ~LayerTree(); - // Raster includes both Preroll and Paint. - void Raster(CompositorContext::ScopedFrame& frame, -#if defined(OS_FUCHSIA) - ui::gfx::Metrics* metrics, -#endif - bool ignore_raster_cache = false); - void Preroll(CompositorContext::ScopedFrame& frame, -#if defined(OS_FUCHSIA) - ui::gfx::Metrics* metrics, -#endif bool ignore_raster_cache = false); #if defined(OS_FUCHSIA) - void set_device_pixel_ratio(float device_pixel_ratio) { - device_pixel_ratio_ = device_pixel_ratio; - } - void UpdateScene(SceneUpdateContext& context, - scenic_lib::ContainerNode& container); + scenic::ContainerNode& container); #endif void Paint(CompositorContext::ScopedFrame& frame) const; + sk_sp Flatten(const SkRect& bounds); + Layer* root_layer() const { return root_layer_.get(); } void set_root_layer(std::unique_ptr root_layer) { @@ -60,11 +46,11 @@ class LayerTree { void set_frame_size(const SkISize& frame_size) { frame_size_ = frame_size; } - void set_construction_time(const fxl::TimeDelta& delta) { + void set_construction_time(const fml::TimeDelta& delta) { construction_time_ = delta; } - const fxl::TimeDelta& construction_time() const { return construction_time_; } + const fml::TimeDelta& construction_time() const { return construction_time_; } // The number of frame intervals missed after which the compositor must // trace the rasterized picture to a trace file. Specify 0 to disable all @@ -88,16 +74,12 @@ class LayerTree { private: SkISize frame_size_; // Physical pixels. std::unique_ptr root_layer_; - fxl::TimeDelta construction_time_; + fml::TimeDelta construction_time_; uint32_t rasterizer_tracing_threshold_; bool checkerboard_raster_cache_images_; bool checkerboard_offscreen_layers_; -#if defined(OS_FUCHSIA) - float device_pixel_ratio_ = 1.f; -#endif - - FXL_DISALLOW_COPY_AND_ASSIGN(LayerTree); + FML_DISALLOW_COPY_AND_ASSIGN(LayerTree); }; } // namespace flow diff --git a/flow/layers/opacity_layer.cc b/flow/layers/opacity_layer.cc index e6916f0762036..84b8bd64c0224 100644 --- a/flow/layers/opacity_layer.cc +++ b/flow/layers/opacity_layer.cc @@ -12,7 +12,7 @@ OpacityLayer::~OpacityLayer() = default; void OpacityLayer::Paint(PaintContext& context) const { TRACE_EVENT0("flutter", "OpacityLayer::Paint"); - FXL_DCHECK(needs_painting()); + FML_DCHECK(needs_painting()); SkPaint paint; paint.setAlpha(alpha_); diff --git a/flow/layers/opacity_layer.h b/flow/layers/opacity_layer.h index 2ec0a1acf9a07..b27829385046b 100644 --- a/flow/layers/opacity_layer.h +++ b/flow/layers/opacity_layer.h @@ -24,7 +24,7 @@ class OpacityLayer : public ContainerLayer { private: int alpha_; - FXL_DISALLOW_COPY_AND_ASSIGN(OpacityLayer); + FML_DISALLOW_COPY_AND_ASSIGN(OpacityLayer); }; } // namespace flow diff --git a/flow/layers/performance_overlay_layer.cc b/flow/layers/performance_overlay_layer.cc index cc55500115a08..7d871af33b94f 100644 --- a/flow/layers/performance_overlay_layer.cc +++ b/flow/layers/performance_overlay_layer.cc @@ -57,34 +57,6 @@ void VisualizeStopWatch(SkCanvas& canvas, } } -void VisualizeCounterValuesBytes(SkCanvas& canvas, - const CounterValues& counter_values, - SkScalar x, - SkScalar y, - SkScalar width, - SkScalar height, - bool show_graph, - bool show_labels, - const std::string& label_prefix) { - const int label_x = 8; // distance from x - const int label_y = -10; // distance from y+height - - if (show_graph) { - SkRect visualization_rect = SkRect::MakeXYWH(x, y, width, height); - counter_values.Visualize(canvas, visualization_rect); - } - - auto current_usage = counter_values.GetCurrentValue(); - - if (show_labels && current_usage > 0) { - std::stringstream stream; - stream.setf(std::ios::fixed | std::ios::showpoint); - stream << std::setprecision(2); - stream << label_prefix << " " << current_usage * 1e-6 << " MB"; - DrawStatisticsText(canvas, stream.str(), x + label_x, y + height + label_y); - } -} - } // namespace PerformanceOverlayLayer::PerformanceOverlayLayer(uint64_t options) @@ -111,11 +83,6 @@ void PerformanceOverlayLayer::Paint(PaintContext& context) const { VisualizeStopWatch(context.canvas, context.engine_time, x, y + height, width, height - padding, options_ & kVisualizeEngineStatistics, options_ & kDisplayEngineStatistics, "UI"); - - VisualizeCounterValuesBytes( - context.canvas, context.memory_usage, x, y + (2 * height), width, - height - padding, options_ & kVisualizeMemoryStatistics, - options_ & kDisplayMemoryStatistics, "Memory (Resident)"); } } // namespace flow diff --git a/flow/layers/performance_overlay_layer.h b/flow/layers/performance_overlay_layer.h index e7c3ac530a02a..3296a308bddbd 100644 --- a/flow/layers/performance_overlay_layer.h +++ b/flow/layers/performance_overlay_layer.h @@ -6,7 +6,7 @@ #define FLUTTER_FLOW_LAYERS_PERFORMANCE_OVERLAY_LAYER_H_ #include "flutter/flow/layers/layer.h" -#include "lib/fxl/macros.h" +#include "flutter/fml/macros.h" namespace flow { @@ -14,8 +14,6 @@ const int kDisplayRasterizerStatistics = 1 << 0; const int kVisualizeRasterizerStatistics = 1 << 1; const int kDisplayEngineStatistics = 1 << 2; const int kVisualizeEngineStatistics = 1 << 3; -const int kDisplayMemoryStatistics = 1 << 4; -const int kVisualizeMemoryStatistics = 1 << 5; class PerformanceOverlayLayer : public Layer { public: @@ -26,7 +24,7 @@ class PerformanceOverlayLayer : public Layer { private: int options_; - FXL_DISALLOW_COPY_AND_ASSIGN(PerformanceOverlayLayer); + FML_DISALLOW_COPY_AND_ASSIGN(PerformanceOverlayLayer); }; } // namespace flow diff --git a/flow/layers/physical_shape_layer.cc b/flow/layers/physical_shape_layer.cc index a730f9a8f96aa..e10caaa56feed 100644 --- a/flow/layers/physical_shape_layer.cc +++ b/flow/layers/physical_shape_layer.cc @@ -9,7 +9,8 @@ namespace flow { -PhysicalShapeLayer::PhysicalShapeLayer() : isRect_(false) {} +PhysicalShapeLayer::PhysicalShapeLayer(Clip clip_behavior) + : isRect_(false), clip_behavior_(clip_behavior) {} PhysicalShapeLayer::~PhysicalShapeLayer() = default; @@ -63,7 +64,7 @@ void PhysicalShapeLayer::Preroll(PrerollContext* context, #if defined(OS_FUCHSIA) void PhysicalShapeLayer::UpdateScene(SceneUpdateContext& context) { - FXL_DCHECK(needs_system_composite()); + FML_DCHECK(needs_system_composite()); SceneUpdateContext::Frame frame(context, frameRRect_, color_, elevation_); for (auto& layer : layers()) { @@ -79,27 +80,47 @@ void PhysicalShapeLayer::UpdateScene(SceneUpdateContext& context) { void PhysicalShapeLayer::Paint(PaintContext& context) const { TRACE_EVENT0("flutter", "PhysicalShapeLayer::Paint"); - FXL_DCHECK(needs_painting()); + FML_DCHECK(needs_painting()); if (elevation_ != 0) { DrawShadow(&context.canvas, path_, shadow_color_, elevation_, SkColorGetA(color_) != 0xff, device_pixel_ratio_); } + // Call drawPath without clip if possible for better performance. SkPaint paint; paint.setColor(color_); - context.canvas.drawPath(path_, paint); + if (clip_behavior_ != Clip::antiAliasWithSaveLayer) { + context.canvas.drawPath(path_, paint); + } - SkAutoCanvasRestore save(&context.canvas, false); - if (isRect_) { - context.canvas.save(); - } else { - context.canvas.saveLayer(path_.getBounds(), nullptr); + int saveCount = context.canvas.save(); + switch (clip_behavior_) { + case Clip::hardEdge: + context.canvas.clipPath(path_, false); + break; + case Clip::antiAlias: + context.canvas.clipPath(path_, true); + break; + case Clip::antiAliasWithSaveLayer: + context.canvas.clipPath(path_, true); + context.canvas.saveLayer(paint_bounds(), nullptr); + break; + case Clip::none: + break; + } + + if (clip_behavior_ == Clip::antiAliasWithSaveLayer) { + // If we want to avoid the bleeding edge artifact + // (https://github.com/flutter/flutter/issues/18057#issue-328003931) + // using saveLayer, we have to call drawPaint instead of drawPath as + // anti-aliased drawPath will always have such artifacts. + context.canvas.drawPaint(paint); } - context.canvas.clipPath(path_, true); + PaintChildren(context); - if (context.checkerboard_offscreen_layers && !isRect_) - DrawCheckerboard(&context.canvas, path_.getBounds()); + + context.canvas.restoreToCount(saveCount); } void PhysicalShapeLayer::DrawShadow(SkCanvas* canvas, @@ -122,11 +143,12 @@ void PhysicalShapeLayer::DrawShadow(SkCanvas* canvas, SkColor inAmbient = SkColorSetA(color, kAmbientAlpha * SkColorGetA(color)); SkColor inSpot = SkColorSetA(color, kSpotAlpha * SkColorGetA(color)); SkColor ambientColor, spotColor; - SkShadowUtils::ComputeTonalColors(inAmbient, inSpot, - &ambientColor, &spotColor); - SkShadowUtils::DrawShadow(canvas, path, SkPoint3::Make(0, 0, dpr * elevation), - SkPoint3::Make(shadow_x, shadow_y, dpr * kLightHeight), - dpr * kLightRadius, ambientColor, spotColor, flags); + SkShadowUtils::ComputeTonalColors(inAmbient, inSpot, &ambientColor, + &spotColor); + SkShadowUtils::DrawShadow( + canvas, path, SkPoint3::Make(0, 0, dpr * elevation), + SkPoint3::Make(shadow_x, shadow_y, dpr * kLightHeight), + dpr * kLightRadius, ambientColor, spotColor, flags); } } // namespace flow diff --git a/flow/layers/physical_shape_layer.h b/flow/layers/physical_shape_layer.h index c3df356b63e1e..344656c662b24 100644 --- a/flow/layers/physical_shape_layer.h +++ b/flow/layers/physical_shape_layer.h @@ -11,7 +11,7 @@ namespace flow { class PhysicalShapeLayer : public ContainerLayer { public: - PhysicalShapeLayer(); + PhysicalShapeLayer(Clip clip_behavior); ~PhysicalShapeLayer() override; void set_path(const SkPath& path); @@ -44,6 +44,7 @@ class PhysicalShapeLayer : public ContainerLayer { SkPath path_; bool isRect_; SkRRect frameRRect_; + Clip clip_behavior_; }; } // namespace flow diff --git a/flow/layers/picture_layer.cc b/flow/layers/picture_layer.cc index 4a99d7d07f75e..9389e0862c398 100644 --- a/flow/layers/picture_layer.cc +++ b/flow/layers/picture_layer.cc @@ -4,56 +4,51 @@ #include "flutter/flow/layers/picture_layer.h" -#include "flutter/common/threads.h" -#include "lib/fxl/logging.h" +#include "flutter/fml/logging.h" namespace flow { PictureLayer::PictureLayer() = default; -PictureLayer::~PictureLayer() { - // The picture may contain references to textures that are associated - // with the IO thread's context. - SkPicture* picture = picture_.release(); - if (picture) { - blink::Threads::IO()->PostTask([picture]() { picture->unref(); }); - } -} +PictureLayer::~PictureLayer() = default; void PictureLayer::Preroll(PrerollContext* context, const SkMatrix& matrix) { + SkPicture* sk_picture = picture(); + if (auto cache = context->raster_cache) { - raster_cache_result_ = cache->GetPrerolledImage( - context->gr_context, picture_.get(), matrix, context->dst_color_space, -#if defined(OS_FUCHSIA) - context->metrics, + SkMatrix ctm = matrix; + ctm.postTranslate(offset_.x(), offset_.y()); +#ifndef SUPPORT_FRACTIONAL_TRANSLATION + ctm = RasterCache::GetIntegralTransCTM(ctm); #endif + raster_cache_result_ = cache->GetPrerolledImage( + context->gr_context, sk_picture, ctm, context->dst_color_space, is_complex_, will_change_); + } else { + raster_cache_result_ = RasterCacheResult(); } - SkRect bounds = picture_->cullRect().makeOffset(offset_.x(), offset_.y()); + SkRect bounds = sk_picture->cullRect().makeOffset(offset_.x(), offset_.y()); set_paint_bounds(bounds); } void PictureLayer::Paint(PaintContext& context) const { TRACE_EVENT0("flutter", "PictureLayer::Paint"); - FXL_DCHECK(picture_); - FXL_DCHECK(needs_painting()); + FML_DCHECK(picture_.get()); + FML_DCHECK(needs_painting()); SkAutoCanvasRestore save(&context.canvas, true); context.canvas.translate(offset_.x(), offset_.y()); +#ifndef SUPPORT_FRACTIONAL_TRANSLATION + context.canvas.setMatrix( + RasterCache::GetIntegralTransCTM(context.canvas.getTotalMatrix())); +#endif if (raster_cache_result_.is_valid()) { - SkPaint paint; - paint.setFilterQuality(kLow_SkFilterQuality); - context.canvas.drawImageRect( - raster_cache_result_.image(), // image - raster_cache_result_.source_rect(), // source - raster_cache_result_.destination_rect(), // destination - &paint, // paint - SkCanvas::kStrict_SrcRectConstraint // source constraint - ); + raster_cache_result_.draw(context.canvas, + context.root_surface_transformation); } else { - context.canvas.drawPicture(picture_.get()); + context.canvas.drawPicture(picture()); } } diff --git a/flow/layers/picture_layer.h b/flow/layers/picture_layer.h index 191ef9d7097a2..12e2807c33d23 100644 --- a/flow/layers/picture_layer.h +++ b/flow/layers/picture_layer.h @@ -5,8 +5,11 @@ #ifndef FLUTTER_FLOW_LAYERS_PICTURE_LAYER_H_ #define FLUTTER_FLOW_LAYERS_PICTURE_LAYER_H_ +#include + #include "flutter/flow/layers/layer.h" #include "flutter/flow/raster_cache.h" +#include "flutter/flow/skia_gpu_object.h" namespace flow { @@ -16,12 +19,14 @@ class PictureLayer : public Layer { ~PictureLayer() override; void set_offset(const SkPoint& offset) { offset_ = offset; } - void set_picture(sk_sp picture) { picture_ = std::move(picture); } + void set_picture(SkiaGPUObject picture) { + picture_ = std::move(picture); + } void set_is_complex(bool value) { is_complex_ = value; } void set_will_change(bool value) { will_change_ = value; } - SkPicture* picture() const { return picture_.get(); } + SkPicture* picture() const { return picture_.get().get(); } void Preroll(PrerollContext* frame, const SkMatrix& matrix) override; @@ -29,12 +34,14 @@ class PictureLayer : public Layer { private: SkPoint offset_; - sk_sp picture_; + // Even though pictures themselves are not GPU resources, they may reference + // images that have a reference to a GPU resource. + SkiaGPUObject picture_; bool is_complex_ = false; bool will_change_ = false; RasterCacheResult raster_cache_result_; - FXL_DISALLOW_COPY_AND_ASSIGN(PictureLayer); + FML_DISALLOW_COPY_AND_ASSIGN(PictureLayer); }; } // namespace flow diff --git a/flow/layers/shader_mask_layer.cc b/flow/layers/shader_mask_layer.cc index 4ed67334b8326..3ea69322fcd2f 100644 --- a/flow/layers/shader_mask_layer.cc +++ b/flow/layers/shader_mask_layer.cc @@ -12,7 +12,7 @@ ShaderMaskLayer::~ShaderMaskLayer() = default; void ShaderMaskLayer::Paint(PaintContext& context) const { TRACE_EVENT0("flutter", "ShaderMaskLayer::Paint"); - FXL_DCHECK(needs_painting()); + FML_DCHECK(needs_painting()); Layer::AutoSaveLayer(context, paint_bounds(), nullptr); PaintChildren(context); diff --git a/flow/layers/shader_mask_layer.h b/flow/layers/shader_mask_layer.h index 0b9e728cdda11..ed059722fea55 100644 --- a/flow/layers/shader_mask_layer.h +++ b/flow/layers/shader_mask_layer.h @@ -29,7 +29,7 @@ class ShaderMaskLayer : public ContainerLayer { SkRect mask_rect_; SkBlendMode blend_mode_; - FXL_DISALLOW_COPY_AND_ASSIGN(ShaderMaskLayer); + FML_DISALLOW_COPY_AND_ASSIGN(ShaderMaskLayer); }; } // namespace flow diff --git a/flow/layers/texture_layer.cc b/flow/layers/texture_layer.cc index cdc081924518c..52ebdc37dbcab 100644 --- a/flow/layers/texture_layer.cc +++ b/flow/layers/texture_layer.cc @@ -23,7 +23,7 @@ void TextureLayer::Paint(PaintContext& context) const { if (!texture) { return; } - texture->Paint(context.canvas, paint_bounds()); + texture->Paint(context.canvas, paint_bounds(), freeze_); } } // namespace flow diff --git a/flow/layers/texture_layer.h b/flow/layers/texture_layer.h index 75f0fe66abaec..bf2a17fd27ac7 100644 --- a/flow/layers/texture_layer.h +++ b/flow/layers/texture_layer.h @@ -22,6 +22,7 @@ class TextureLayer : public Layer { void set_offset(const SkPoint& offset) { offset_ = offset; } void set_size(const SkSize& size) { size_ = size; } void set_texture_id(int64_t texture_id) { texture_id_ = texture_id; } + void set_freeze(bool freeze) { freeze_ = freeze; } void Preroll(PrerollContext* context, const SkMatrix& matrix) override; void Paint(PaintContext& context) const override; @@ -30,8 +31,9 @@ class TextureLayer : public Layer { SkPoint offset_; SkSize size_; int64_t texture_id_; + bool freeze_; - FXL_DISALLOW_COPY_AND_ASSIGN(TextureLayer); + FML_DISALLOW_COPY_AND_ASSIGN(TextureLayer); }; } // namespace flow diff --git a/flow/layers/transform_layer.cc b/flow/layers/transform_layer.cc index be6a6f81c478c..a70cc299dd9a4 100644 --- a/flow/layers/transform_layer.cc +++ b/flow/layers/transform_layer.cc @@ -24,7 +24,7 @@ void TransformLayer::Preroll(PrerollContext* context, const SkMatrix& matrix) { #if defined(OS_FUCHSIA) void TransformLayer::UpdateScene(SceneUpdateContext& context) { - FXL_DCHECK(needs_system_composite()); + FML_DCHECK(needs_system_composite()); SceneUpdateContext::Transform transform(context, transform_); UpdateSceneChildren(context); @@ -34,7 +34,7 @@ void TransformLayer::UpdateScene(SceneUpdateContext& context) { void TransformLayer::Paint(PaintContext& context) const { TRACE_EVENT0("flutter", "TransformLayer::Paint"); - FXL_DCHECK(needs_painting()); + FML_DCHECK(needs_painting()); SkAutoCanvasRestore save(&context.canvas, true); context.canvas.concat(transform_); diff --git a/flow/layers/transform_layer.h b/flow/layers/transform_layer.h index 47fd7d5cefc0c..f8209302aa170 100644 --- a/flow/layers/transform_layer.h +++ b/flow/layers/transform_layer.h @@ -27,7 +27,7 @@ class TransformLayer : public ContainerLayer { private: SkMatrix transform_; - FXL_DISALLOW_COPY_AND_ASSIGN(TransformLayer); + FML_DISALLOW_COPY_AND_ASSIGN(TransformLayer); }; } // namespace flow diff --git a/flow/matrix_decomposition.cc b/flow/matrix_decomposition.cc index b1e12b044d201..0cc035cbba216 100644 --- a/flow/matrix_decomposition.cc +++ b/flow/matrix_decomposition.cc @@ -28,6 +28,15 @@ static inline SkVector3 SkVector3Cross(const SkVector3& a, const SkVector3& b) { MatrixDecomposition::MatrixDecomposition(const SkMatrix& matrix) : MatrixDecomposition(SkMatrix44{matrix}) {} +// Use custom normalize to avoid skia precision loss/normalize() privatization. +static inline void SkVector3Normalize(SkVector3& v) { + double mag = sqrt(v.fX * v.fX + v.fY * v.fY + v.fZ * v.fZ); + double scale = 1.0 / mag; + v.fX *= scale; + v.fY *= scale; + v.fZ *= scale; +} + MatrixDecomposition::MatrixDecomposition(SkMatrix44 matrix) : valid_(false) { if (matrix.get(3, 3) == 0) { return; @@ -82,13 +91,16 @@ MatrixDecomposition::MatrixDecomposition(SkMatrix44 matrix) : valid_(false) { } scale_.fX = row[0].length(); - row[0].normalize(); + + SkVector3Normalize(row[0]); shear_.fX = row[0].dot(row[1]); row[1] = SkVector3Combine(row[1], 1.0, row[0], -shear_.fX); scale_.fY = row[1].length(); - row[1].normalize(); + + SkVector3Normalize(row[1]); + shear_.fX /= scale_.fY; shear_.fY = row[0].dot(row[2]); @@ -97,7 +109,8 @@ MatrixDecomposition::MatrixDecomposition(SkMatrix44 matrix) : valid_(false) { row[2] = SkVector3Combine(row[2], 1.0, row[1], -shear_.fZ); scale_.fZ = row[2].length(); - row[2].normalize(); + + SkVector3Normalize(row[2]); shear_.fY /= scale_.fZ; shear_.fZ /= scale_.fZ; diff --git a/flow/matrix_decomposition.h b/flow/matrix_decomposition.h index 1392ed8aad020..d65d12a77e674 100644 --- a/flow/matrix_decomposition.h +++ b/flow/matrix_decomposition.h @@ -5,7 +5,7 @@ #ifndef FLUTTER_FLOW_MATRIX_DECOMPOSITION_H_ #define FLUTTER_FLOW_MATRIX_DECOMPOSITION_H_ -#include "lib/fxl/macros.h" +#include "flutter/fml/macros.h" #include "third_party/skia/include/core/SkMatrix.h" #include "third_party/skia/include/core/SkMatrix44.h" #include "third_party/skia/include/core/SkPoint3.h" @@ -43,7 +43,7 @@ class MatrixDecomposition { SkVector4 perspective_; SkVector4 rotation_; - FXL_DISALLOW_COPY_AND_ASSIGN(MatrixDecomposition); + FML_DISALLOW_COPY_AND_ASSIGN(MatrixDecomposition); }; } // namespace flow diff --git a/flow/matrix_decomposition_unittests.cc b/flow/matrix_decomposition_unittests.cc index 37a6322b240a1..3b9f8ed815ff6 100644 --- a/flow/matrix_decomposition_unittests.cc +++ b/flow/matrix_decomposition_unittests.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "lib/fxl/build_config.h" +#include "flutter/fml/build_config.h" #if defined(OS_WIN) #define _USE_MATH_DEFINES @@ -93,3 +93,64 @@ TEST(MatrixDecomposition, Combination) { ASSERT_FLOAT_EQ(sine, decomposition.rotation().fData[2]); ASSERT_FLOAT_EQ(cos(rotation * 0.5), decomposition.rotation().fData[3]); } + +TEST(MatrixDecomposition, ScaleFloatError) { + for (float scale = 0.0001f; scale < 2.0f; scale += 0.000001f) { + SkMatrix44 matrix = SkMatrix44::I(); + matrix.setScale(scale, scale, 1.0f); + + flow::MatrixDecomposition decomposition3(matrix); + ASSERT_TRUE(decomposition3.IsValid()); + + ASSERT_FLOAT_EQ(scale, decomposition3.scale().fX); + ASSERT_FLOAT_EQ(scale, decomposition3.scale().fY); + ASSERT_FLOAT_EQ(1.f, decomposition3.scale().fZ); + ASSERT_FLOAT_EQ(0, decomposition3.rotation().fData[0]); + ASSERT_FLOAT_EQ(0, decomposition3.rotation().fData[1]); + ASSERT_FLOAT_EQ(0, decomposition3.rotation().fData[2]); + } + + SkMatrix44 matrix = SkMatrix44::I(); + const auto scale = 1.7734375f; + matrix.setScale(scale, scale, 1.f); + + // Bug upper bound (empirical) + const auto scale2 = 1.773437559603f; + SkMatrix44 matrix2 = SkMatrix44::I(); + matrix2.setScale(scale2, scale2, 1.f); + + // Bug lower bound (empirical) + const auto scale3 = 1.7734374403954f; + SkMatrix44 matrix3 = SkMatrix44::I(); + matrix3.setScale(scale3, scale3, 1.f); + + flow::MatrixDecomposition decomposition(matrix); + ASSERT_TRUE(decomposition.IsValid()); + + flow::MatrixDecomposition decomposition2(matrix2); + ASSERT_TRUE(decomposition2.IsValid()); + + flow::MatrixDecomposition decomposition3(matrix3); + ASSERT_TRUE(decomposition3.IsValid()); + + ASSERT_FLOAT_EQ(scale, decomposition.scale().fX); + ASSERT_FLOAT_EQ(scale, decomposition.scale().fY); + ASSERT_FLOAT_EQ(1.f, decomposition.scale().fZ); + ASSERT_FLOAT_EQ(0, decomposition.rotation().fData[0]); + ASSERT_FLOAT_EQ(0, decomposition.rotation().fData[1]); + ASSERT_FLOAT_EQ(0, decomposition.rotation().fData[2]); + + ASSERT_FLOAT_EQ(scale2, decomposition2.scale().fX); + ASSERT_FLOAT_EQ(scale2, decomposition2.scale().fY); + ASSERT_FLOAT_EQ(1.f, decomposition2.scale().fZ); + ASSERT_FLOAT_EQ(0, decomposition2.rotation().fData[0]); + ASSERT_FLOAT_EQ(0, decomposition2.rotation().fData[1]); + ASSERT_FLOAT_EQ(0, decomposition2.rotation().fData[2]); + + ASSERT_FLOAT_EQ(scale3, decomposition3.scale().fX); + ASSERT_FLOAT_EQ(scale3, decomposition3.scale().fY); + ASSERT_FLOAT_EQ(1.f, decomposition3.scale().fZ); + ASSERT_FLOAT_EQ(0, decomposition3.rotation().fData[0]); + ASSERT_FLOAT_EQ(0, decomposition3.rotation().fData[1]); + ASSERT_FLOAT_EQ(0, decomposition3.rotation().fData[2]); +} diff --git a/flow/paint_utils.cc b/flow/paint_utils.cc index 2bf5b265d3904..e2ea306c913f5 100644 --- a/flow/paint_utils.cc +++ b/flow/paint_utils.cc @@ -38,7 +38,7 @@ void DrawCheckerboard(SkCanvas* canvas, const SkRect& rect) { canvas->clipRect(rect); auto checkerboard_color = - SkColorSetARGBInline(64, rand() % 256, rand() % 256, rand() % 256); + SkColorSetARGB(64, rand() % 256, rand() % 256, rand() % 256); DrawCheckerboard(canvas, checkerboard_color, 0x00000000, 12); canvas->restore(); diff --git a/flow/process_info.h b/flow/process_info.h deleted file mode 100644 index 6623fe7257396..0000000000000 --- a/flow/process_info.h +++ /dev/null @@ -1,31 +0,0 @@ -// Copyright 2016 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef FLUTTER_FLOW_PROCESS_INFO_H_ -#define FLUTTER_FLOW_PROCESS_INFO_H_ - -#include "lib/fxl/macros.h" - -namespace flow { - -/// The CompositorContext attempts to collect information from the process for -/// instrumentation purposes. The compositor does not have the platform -/// specific capabilities to collect this information on its own. The platform -/// can choose to provide this information however. -class ProcessInfo { - public: - virtual ~ProcessInfo() = default; - - virtual bool SampleNow() = 0; - - /// Virtual memory size in bytes. - virtual size_t GetVirtualMemorySize() = 0; - - /// Resident memory size in bytes. - virtual size_t GetResidentMemorySize() = 0; -}; - -} // namespace flow - -#endif // FLUTTER_FLOW_PROCESS_INFO_H_ diff --git a/flow/raster_cache.cc b/flow/raster_cache.cc index 472dbd6bd9d94..aadebb72d039e 100644 --- a/flow/raster_cache.cc +++ b/flow/raster_cache.cc @@ -6,10 +6,9 @@ #include -#include "flutter/common/threads.h" #include "flutter/flow/paint_utils.h" -#include "flutter/glue/trace_event.h" -#include "lib/fxl/logging.h" +#include "flutter/fml/logging.h" +#include "flutter/fml/trace_event.h" #include "third_party/skia/include/core/SkCanvas.h" #include "third_party/skia/include/core/SkColorSpaceXformCanvas.h" #include "third_party/skia/include/core/SkImage.h" @@ -18,6 +17,19 @@ namespace flow { +void RasterCacheResult::draw( + SkCanvas& canvas, + const SkMatrix& root_surface_transformation) const { + SkAutoCanvasRestore auto_restore(&canvas, true); + SkIRect bounds = + RasterCache::GetDeviceBounds(logical_rect_, canvas.getTotalMatrix()); + FML_DCHECK(bounds.size() == image_->dimensions()); + // Clear all transformations on the canvas except the root surface + // transormation. + canvas.setMatrix(root_surface_transformation); + canvas.drawImage(image_, bounds.fLeft, bounds.fTop); +} + RasterCache::RasterCache(size_t threshold) : threshold_(threshold), checkerboard_images_(false), weak_factory_(this) {} @@ -71,34 +83,16 @@ static bool IsPictureWorthRasterizing(SkPicture* picture, RasterCacheResult RasterizePicture(SkPicture* picture, GrContext* context, - const MatrixDecomposition& matrix, + const SkMatrix& ctm, SkColorSpace* dst_color_space, -#if defined(OS_FUCHSIA) - ui::gfx::Metrics* metrics, -#endif bool checkerboard) { TRACE_EVENT0("flutter", "RasterCachePopulate"); - const SkVector3& scale = matrix.scale(); - const SkRect logical_rect = picture->cullRect(); + SkIRect cache_rect = RasterCache::GetDeviceBounds(logical_rect, ctm); -#if defined(OS_FUCHSIA) - float metrics_scale_x = metrics->scale_x; - float metrics_scale_y = metrics->scale_y; -#else - float metrics_scale_x = 1.f; - float metrics_scale_y = 1.f; -#endif - - const SkRect physical_rect = SkRect::MakeWH( - std::fabs(logical_rect.width() * metrics_scale_x * scale.x()), - std::fabs(logical_rect.height() * metrics_scale_y * scale.y())); - - const SkImageInfo image_info = SkImageInfo::MakeN32Premul( - std::ceil(physical_rect.width()), // physical width - std::ceil(physical_rect.height()) // physical height - ); + const SkImageInfo image_info = + SkImageInfo::MakeN32Premul(cache_rect.width(), cache_rect.height()); sk_sp surface = context @@ -120,20 +114,15 @@ RasterCacheResult RasterizePicture(SkPicture* picture, } canvas->clear(SK_ColorTRANSPARENT); - canvas->scale(std::abs(scale.x() * metrics_scale_x), - std::abs(scale.y() * metrics_scale_y)); - canvas->translate(-logical_rect.left(), -logical_rect.top()); + canvas->translate(-cache_rect.left(), -cache_rect.top()); + canvas->concat(ctm); canvas->drawPicture(picture); if (checkerboard) { DrawCheckerboard(canvas, logical_rect); } - return { - surface->makeImageSnapshot(), // image - physical_rect, // source rect - logical_rect // destination rect - }; + return {surface->makeImageSnapshot(), logical_rect}; } static inline size_t ClampSize(size_t value, size_t min, size_t max) { @@ -153,9 +142,6 @@ RasterCacheResult RasterCache::GetPrerolledImage( SkPicture* picture, const SkMatrix& transformation_matrix, SkColorSpace* dst_color_space, -#if defined(OS_FUCHSIA) - ui::gfx::Metrics* metrics, -#endif bool is_complex, bool will_change) { if (!IsPictureWorthRasterizing(picture, will_change, is_complex)) { @@ -172,11 +158,7 @@ RasterCacheResult RasterCache::GetPrerolledImage( return {}; } - RasterCacheKey cache_key(*picture, -#if defined(OS_FUCHSIA) - metrics->scale_x, metrics->scale_y, -#endif - matrix); + RasterCacheKey cache_key(*picture, transformation_matrix); Entry& entry = cache_[cache_key]; entry.access_count = ClampSize(entry.access_count + 1, 0, threshold_); @@ -188,11 +170,8 @@ RasterCacheResult RasterCache::GetPrerolledImage( } if (!entry.image.is_valid()) { - entry.image = RasterizePicture(picture, context, matrix, dst_color_space, -#if defined(OS_FUCHSIA) - metrics, -#endif - checkerboard_images_); + entry.image = RasterizePicture(picture, context, transformation_matrix, + dst_color_space, checkerboard_images_); } return entry.image; diff --git a/flow/raster_cache.h b/flow/raster_cache.h index 3600866190204..b2084d3bf1c74 100644 --- a/flow/raster_cache.h +++ b/flow/raster_cache.h @@ -10,11 +10,8 @@ #include "flutter/flow/instrumentation.h" #include "flutter/flow/raster_cache_key.h" -#include "lib/fxl/macros.h" -#include "lib/fxl/memory/weak_ptr.h" -#if defined(OS_FUCHSIA) -#include "lib/ui/scenic/fidl/events.fidl.h" -#endif +#include "flutter/fml/macros.h" +#include "flutter/fml/memory/weak_ptr.h" #include "third_party/skia/include/core/SkImage.h" #include "third_party/skia/include/core/SkSize.h" @@ -22,29 +19,21 @@ namespace flow { class RasterCacheResult { public: - RasterCacheResult() - : source_rect_(SkRect::MakeEmpty()), - destination_rect_(SkRect::MakeEmpty()) {} + RasterCacheResult() {} - RasterCacheResult(sk_sp image, SkRect source, SkRect destination) - : image_(std::move(image)), - source_rect_(source), - destination_rect_(destination) {} + RasterCacheResult(sk_sp image, const SkRect& logical_rect) + : image_(std::move(image)), logical_rect_(logical_rect) {} operator bool() const { return static_cast(image_); } bool is_valid() const { return static_cast(image_); }; - sk_sp image() const { return image_; } - - const SkRect& source_rect() const { return source_rect_; } - - const SkRect& destination_rect() const { return destination_rect_; } + void draw(SkCanvas& canvas, + const SkMatrix& root_surface_transformation) const; private: sk_sp image_; - SkRect source_rect_; - SkRect destination_rect_; + SkRect logical_rect_; }; class RasterCache { @@ -53,13 +42,25 @@ class RasterCache { ~RasterCache(); + static SkIRect GetDeviceBounds(const SkRect& rect, const SkMatrix& ctm) { + SkRect device_rect; + ctm.mapRect(&device_rect, rect); + SkIRect bounds; + device_rect.roundOut(&bounds); + return bounds; + } + + static SkMatrix GetIntegralTransCTM(const SkMatrix& ctm) { + SkMatrix result = ctm; + result[SkMatrix::kMTransX] = SkScalarRoundToScalar(ctm.getTranslateX()); + result[SkMatrix::kMTransY] = SkScalarRoundToScalar(ctm.getTranslateY()); + return result; + } + RasterCacheResult GetPrerolledImage(GrContext* context, SkPicture* picture, const SkMatrix& transformation_matrix, SkColorSpace* dst_color_space, -#if defined(OS_FUCHSIA) - ui::gfx::Metrics* metrics, -#endif bool is_complex, bool will_change); @@ -79,9 +80,9 @@ class RasterCache { const size_t threshold_; RasterCacheKey::Map cache_; bool checkerboard_images_; - fxl::WeakPtrFactory weak_factory_; + fml::WeakPtrFactory weak_factory_; - FXL_DISALLOW_COPY_AND_ASSIGN(RasterCache); + FML_DISALLOW_COPY_AND_ASSIGN(RasterCache); }; } // namespace flow diff --git a/flow/raster_cache_key.h b/flow/raster_cache_key.h index 83df52658c981..3f20072df8e3b 100644 --- a/flow/raster_cache_key.h +++ b/flow/raster_cache_key.h @@ -7,7 +7,8 @@ #include #include "flutter/flow/matrix_decomposition.h" -#include "lib/fxl/macros.h" +#include "flutter/fml/logging.h" +#include "flutter/fml/macros.h" #include "third_party/skia/include/core/SkImage.h" #include "third_party/skia/include/core/SkPicture.h" @@ -15,29 +16,17 @@ namespace flow { class RasterCacheKey { public: - RasterCacheKey(const SkPicture& picture, -#if defined(OS_FUCHSIA) - float metrics_scale_x, - float metrics_scale_y, + RasterCacheKey(const SkPicture& picture, const SkMatrix& ctm) + : picture_id_(picture.uniqueID()), matrix_(ctm) { + matrix_[SkMatrix::kMTransX] = SkScalarFraction(ctm.getTranslateX()); + matrix_[SkMatrix::kMTransY] = SkScalarFraction(ctm.getTranslateY()); +#ifndef SUPPORT_FRACTIONAL_TRANSLATION + FML_DCHECK(matrix_.getTranslateX() == 0 && matrix_.getTranslateY() == 0); #endif - const MatrixDecomposition& matrix) - : picture_id_(picture.uniqueID()), -#if defined(OS_FUCHSIA) - metrics_scale_x_(metrics_scale_x), - metrics_scale_y_(metrics_scale_y), -#endif - scale_key_( - SkISize::Make(matrix.scale().x() * 1e3, matrix.scale().y() * 1e3)) { } uint32_t picture_id() const { return picture_id_; } - - const SkISize& scale_key() const { return scale_key_; } - -#if defined(OS_FUCHSIA) - float metrics_scale_x() const { return metrics_scale_x_; } - float metrics_scale_y() const { return metrics_scale_y_; } -#endif + const SkMatrix& matrix() const { return matrix_; } struct Hash { std::size_t operator()(RasterCacheKey const& key) const { @@ -48,13 +37,7 @@ class RasterCacheKey { struct Equal { constexpr bool operator()(const RasterCacheKey& lhs, const RasterCacheKey& rhs) const { - return lhs.picture_id_ == rhs.picture_id_ && -#if defined(OS_FUCHSIA) - lhs.metrics_scale_x_ == rhs.metrics_scale_x_ && - - lhs.metrics_scale_y_ == rhs.metrics_scale_y_ && -#endif - lhs.scale_key_ == rhs.scale_key_; + return lhs.picture_id_ == rhs.picture_id_ && lhs.matrix_ == rhs.matrix_; } }; @@ -63,11 +46,12 @@ class RasterCacheKey { private: uint32_t picture_id_; -#if defined(OS_FUCHSIA) - float metrics_scale_x_; - float metrics_scale_y_; -#endif - SkISize scale_key_; + + // ctm where only fractional (0-1) translations are preserved: + // matrix_ = ctm; + // matrix_[SkMatrix::kMTransX] = SkScalarFraction(ctm.getTranslateX()); + // matrix_[SkMatrix::kMTransY] = SkScalarFraction(ctm.getTranslateY()); + SkMatrix matrix_; }; } // namespace flow diff --git a/flow/scene_update_context.cc b/flow/scene_update_context.cc index 83883c508b4df..1da575bf56f12 100644 --- a/flow/scene_update_context.cc +++ b/flow/scene_update_context.cc @@ -4,24 +4,21 @@ #include "flutter/flow/scene_update_context.h" -#include "flutter/common/threads.h" #include "flutter/flow/export_node.h" #include "flutter/flow/layers/layer.h" #include "flutter/flow/matrix_decomposition.h" -#include "flutter/glue/trace_event.h" +#include "flutter/fml/trace_event.h" namespace flow { -SceneUpdateContext::SceneUpdateContext(scenic_lib::Session* session, +SceneUpdateContext::SceneUpdateContext(scenic::Session* session, SurfaceProducer* surface_producer) : session_(session), surface_producer_(surface_producer) { - FXL_DCHECK(surface_producer_ != nullptr); + FML_DCHECK(surface_producer_ != nullptr); } SceneUpdateContext::~SceneUpdateContext() { - ASSERT_IS_GPU_THREAD; - - // Release Scenic session resources for all ExportNodes. + // Release Mozart session resources for all ExportNodes. for (auto export_node : export_nodes_) { export_node->Dispose(false); } @@ -30,25 +27,20 @@ SceneUpdateContext::~SceneUpdateContext() { void SceneUpdateContext::AddChildScene(ExportNode* export_node, SkPoint offset, bool hit_testable) { - ASSERT_IS_GPU_THREAD; - FXL_DCHECK(top_entity_); + FML_DCHECK(top_entity_); export_node->Bind(*this, top_entity_->entity_node(), offset, hit_testable); } void SceneUpdateContext::AddExportNode(ExportNode* export_node) { - ASSERT_IS_GPU_THREAD; - export_nodes_.insert(export_node); // Might already have been added. } void SceneUpdateContext::RemoveExportNode(ExportNode* export_node) { - ASSERT_IS_GPU_THREAD; - export_nodes_.erase(export_node); } -void SceneUpdateContext::CreateFrame(scenic_lib::EntityNode& entity_node, +void SceneUpdateContext::CreateFrame(scenic::EntityNode& entity_node, const SkRRect& rrect, SkColor color, const SkRect& paint_bounds, @@ -64,7 +56,7 @@ void SceneUpdateContext::CreateFrame(scenic_lib::EntityNode& entity_node, // and possibly for its texture. // TODO(MZ-137): Need to be able to express the radii as vectors. SkRect shape_bounds = rrect.getBounds(); - scenic_lib::RoundedRectangle shape( + scenic::RoundedRectangle shape( session_, // session rrect.width(), // width rrect.height(), // height @@ -73,7 +65,7 @@ void SceneUpdateContext::CreateFrame(scenic_lib::EntityNode& entity_node, rrect.radii(SkRRect::kLowerRight_Corner).x(), // bottom_right_radius rrect.radii(SkRRect::kLowerLeft_Corner).x() // bottom_left_radius ); - scenic_lib::ShapeNode shape_node(session_); + scenic::ShapeNode shape_node(session_); shape_node.SetShape(shape); shape_node.SetTranslation(shape_bounds.width() * 0.5f + shape_bounds.left(), shape_bounds.height() * 0.5f + shape_bounds.top(), @@ -101,9 +93,9 @@ void SceneUpdateContext::CreateFrame(scenic_lib::EntityNode& entity_node, if (inner_bounds != shape_bounds && rrect.contains(inner_bounds)) { SetShapeColor(shape_node, color); - scenic_lib::Rectangle inner_shape(session_, inner_bounds.width(), - inner_bounds.height()); - scenic_lib::ShapeNode inner_node(session_); + scenic::Rectangle inner_shape(session_, inner_bounds.width(), + inner_bounds.height()); + scenic::ShapeNode inner_node(session_); inner_node.SetShape(inner_shape); inner_node.SetTranslation(inner_bounds.width() * 0.5f + inner_bounds.left(), inner_bounds.height() * 0.5f + inner_bounds.top(), @@ -120,16 +112,16 @@ void SceneUpdateContext::CreateFrame(scenic_lib::EntityNode& entity_node, } void SceneUpdateContext::SetShapeTextureOrColor( - scenic_lib::ShapeNode& shape_node, + scenic::ShapeNode& shape_node, SkColor color, SkScalar scale_x, SkScalar scale_y, const SkRect& paint_bounds, std::vector paint_layers) { - scenic_lib::Image* image = GenerateImageIfNeeded( + scenic::Image* image = GenerateImageIfNeeded( color, scale_x, scale_y, paint_bounds, std::move(paint_layers)); if (image != nullptr) { - scenic_lib::Material material(session_); + scenic::Material material(session_); material.SetTexture(*image); shape_node.SetMaterial(material); return; @@ -138,18 +130,18 @@ void SceneUpdateContext::SetShapeTextureOrColor( SetShapeColor(shape_node, color); } -void SceneUpdateContext::SetShapeColor(scenic_lib::ShapeNode& shape_node, +void SceneUpdateContext::SetShapeColor(scenic::ShapeNode& shape_node, SkColor color) { if (SkColorGetA(color) == 0) return; - scenic_lib::Material material(session_); + scenic::Material material(session_); material.SetColor(SkColorGetR(color), SkColorGetG(color), SkColorGetB(color), SkColorGetA(color)); shape_node.SetMaterial(material); } -scenic_lib::Image* SceneUpdateContext::GenerateImageIfNeeded( +scenic::Image* SceneUpdateContext::GenerateImageIfNeeded( SkColor color, SkScalar scale_x, SkScalar scale_y, @@ -169,7 +161,7 @@ scenic_lib::Image* SceneUpdateContext::GenerateImageIfNeeded( auto surface = surface_producer_->ProduceSurface(physical_size); if (!surface) { - FXL_LOG(ERROR) << "Could not acquire a surface from the surface producer " + FML_LOG(ERROR) << "Could not acquire a surface from the surface producer " "of size: " << physical_size.width() << "x" << physical_size.height(); return nullptr; @@ -193,12 +185,12 @@ SceneUpdateContext::ExecutePaintTasks(CompositorContext::ScopedFrame& frame) { TRACE_EVENT0("flutter", "SceneUpdateContext::ExecutePaintTasks"); std::vector> surfaces_to_submit; for (auto& task : paint_tasks_) { - FXL_DCHECK(task.surface); + FML_DCHECK(task.surface); SkCanvas* canvas = task.surface->GetSkiaSurface()->getCanvas(); Layer::PaintContext context = {*canvas, + frame.root_surface_transformation(), frame.context().frame_time(), frame.context().engine_time(), - frame.context().memory_usage(), frame.context().texture_registry(), false}; canvas->restoreToCount(1); @@ -225,15 +217,15 @@ SceneUpdateContext::Entity::Entity(SceneUpdateContext& context) } SceneUpdateContext::Entity::~Entity() { - FXL_DCHECK(context_.top_entity_ == this); + FML_DCHECK(context_.top_entity_ == this); context_.top_entity_ = previous_entity_; } SceneUpdateContext::Clip::Clip(SceneUpdateContext& context, - scenic_lib::Shape& shape, + scenic::Shape& shape, const SkRect& shape_bounds) : Entity(context) { - scenic_lib::ShapeNode shape_node(context.session()); + scenic::ShapeNode shape_node(context.session()); shape_node.SetShape(shape); shape_node.SetTranslation(shape_bounds.width() * 0.5f + shape_bounds.left(), shape_bounds.height() * 0.5f + shape_bounds.top(), @@ -313,7 +305,7 @@ SceneUpdateContext::Frame::~Frame() { } void SceneUpdateContext::Frame::AddPaintedLayer(Layer* layer) { - FXL_DCHECK(layer->needs_painting()); + FML_DCHECK(layer->needs_painting()); paint_layers_.push_back(layer); paint_bounds_.join(layer->paint_bounds()); } diff --git a/flow/scene_update_context.h b/flow/scene_update_context.h index 32affd4ca0f77..8436ad2f263bb 100644 --- a/flow/scene_update_context.h +++ b/flow/scene_update_context.h @@ -6,13 +6,15 @@ #define FLUTTER_FLOW_SCENE_UPDATE_CONTEXT_H_ #include +#include #include #include "flutter/flow/compositor_context.h" -#include "lib/fxl/build_config.h" -#include "lib/fxl/logging.h" -#include "lib/fxl/macros.h" -#include "lib/ui/scenic/client/resources.h" +#include "flutter/fml/build_config.h" +#include "flutter/fml/compiler_specific.h" +#include "flutter/fml/logging.h" +#include "flutter/fml/macros.h" +#include "lib/ui/scenic/cpp/resources.h" #include "third_party/skia/include/core/SkRect.h" #include "third_party/skia/include/core/SkSurface.h" @@ -39,7 +41,7 @@ class SceneUpdateContext { virtual void SignalWritesFinished( std::function on_writes_committed) = 0; - virtual scenic_lib::Image* GetImage() = 0; + virtual scenic::Image* GetImage() = 0; virtual sk_sp GetSkiaSurface() const = 0; }; @@ -61,19 +63,19 @@ class SceneUpdateContext { ~Entity(); SceneUpdateContext& context() { return context_; } - scenic_lib::EntityNode& entity_node() { return entity_node_; } + scenic::EntityNode& entity_node() { return entity_node_; } private: SceneUpdateContext& context_; Entity* const previous_entity_; - scenic_lib::EntityNode entity_node_; + scenic::EntityNode entity_node_; }; class Clip : public Entity { public: Clip(SceneUpdateContext& context, - scenic_lib::Shape& shape, + scenic::Shape& shape, const SkRect& shape_bounds); ~Clip(); }; @@ -110,18 +112,18 @@ class SceneUpdateContext { SkRect paint_bounds_; }; - SceneUpdateContext(scenic_lib::Session* session, + SceneUpdateContext(scenic::Session* session, SurfaceProducer* surface_producer); ~SceneUpdateContext(); - scenic_lib::Session* session() { return session_; } + scenic::Session* session() { return session_; } bool has_metrics() const { return !!metrics_; } - void set_metrics(ui::gfx::MetricsPtr metrics) { + void set_metrics(fuchsia::ui::gfx::MetricsPtr metrics) { metrics_ = std::move(metrics); } - const ui::gfx::MetricsPtr& metrics() const { return metrics_; } + const fuchsia::ui::gfx::MetricsPtr& metrics() const { return metrics_; } void AddChildScene(ExportNode* export_node, SkPoint offset, @@ -141,7 +143,7 @@ class SceneUpdateContext { // CPU wait. Once Vulkan semaphores are available, this method must return // void and the implementation must submit surfaces on its own as soon as the // specific canvas operations are done. - FXL_WARN_UNUSED_RESULT + FML_WARN_UNUSED_RESULT std::vector> ExecutePaintTasks( CompositorContext::ScopedFrame& frame); @@ -156,39 +158,39 @@ class SceneUpdateContext { std::vector layers; }; - void CreateFrame(scenic_lib::EntityNode& entity_node, + void CreateFrame(scenic::EntityNode& entity_node, const SkRRect& rrect, SkColor color, const SkRect& paint_bounds, std::vector paint_layers); - void SetShapeTextureOrColor(scenic_lib::ShapeNode& shape_node, + void SetShapeTextureOrColor(scenic::ShapeNode& shape_node, SkColor color, SkScalar scale_x, SkScalar scale_y, const SkRect& paint_bounds, std::vector paint_layers); - void SetShapeColor(scenic_lib::ShapeNode& shape_node, SkColor color); - scenic_lib::Image* GenerateImageIfNeeded(SkColor color, - SkScalar scale_x, - SkScalar scale_y, - const SkRect& paint_bounds, - std::vector paint_layers); + void SetShapeColor(scenic::ShapeNode& shape_node, SkColor color); + scenic::Image* GenerateImageIfNeeded(SkColor color, + SkScalar scale_x, + SkScalar scale_y, + const SkRect& paint_bounds, + std::vector paint_layers); Entity* top_entity_ = nullptr; float top_scale_x_ = 1.f; float top_scale_y_ = 1.f; - scenic_lib::Session* const session_; + scenic::Session* const session_; SurfaceProducer* const surface_producer_; - ui::gfx::MetricsPtr metrics_; + fuchsia::ui::gfx::MetricsPtr metrics_; std::vector paint_tasks_; // Save ExportNodes so we can dispose them in our destructor. std::set export_nodes_; - FXL_DISALLOW_COPY_AND_ASSIGN(SceneUpdateContext); + FML_DISALLOW_COPY_AND_ASSIGN(SceneUpdateContext); }; } // namespace flow diff --git a/flow/skia_gpu_object.cc b/flow/skia_gpu_object.cc new file mode 100644 index 0000000000000..bf9d9a8ec599f --- /dev/null +++ b/flow/skia_gpu_object.cc @@ -0,0 +1,44 @@ +// Copyright 2017 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "flutter/flow/skia_gpu_object.h" + +#include "flutter/fml/message_loop.h" + +namespace flow { + +SkiaUnrefQueue::SkiaUnrefQueue(fml::RefPtr task_runner, + fml::TimeDelta delay) + : task_runner_(std::move(task_runner)), + drain_delay_(delay), + drain_pending_(false) {} + +SkiaUnrefQueue::~SkiaUnrefQueue() { + Drain(); +} + +void SkiaUnrefQueue::Unref(SkRefCnt* object) { + std::lock_guard lock(mutex_); + objects_.push_back(object); + if (!drain_pending_) { + drain_pending_ = true; + task_runner_->PostDelayedTask( + [strong = fml::Ref(this)]() { strong->Drain(); }, drain_delay_); + } +} + +void SkiaUnrefQueue::Drain() { + std::deque skia_objects; + { + std::lock_guard lock(mutex_); + objects_.swap(skia_objects); + drain_pending_ = false; + } + + for (SkRefCnt* skia_object : skia_objects) { + skia_object->unref(); + } +} + +} // namespace flow diff --git a/flow/skia_gpu_object.h b/flow/skia_gpu_object.h new file mode 100644 index 0000000000000..7379b7936ec42 --- /dev/null +++ b/flow/skia_gpu_object.h @@ -0,0 +1,88 @@ +// Copyright 2017 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FLOW_SKIA_GPU_OBJECT_H_ +#define FLUTTER_FLOW_SKIA_GPU_OBJECT_H_ + +#include +#include + +#include "flutter/fml/memory/ref_counted.h" +#include "flutter/fml/memory/weak_ptr.h" +#include "flutter/fml/task_runner.h" +#include "third_party/skia/include/core/SkRefCnt.h" + +namespace flow { + +// A queue that holds Skia objects that must be destructed on the the given task +// runner. +class SkiaUnrefQueue : public fml::RefCountedThreadSafe { + public: + void Unref(SkRefCnt* object); + + // Usually, the drain is called automatically. However, during IO manager + // shutdown (when the platform side reference to the OpenGL context is about + // to go away), we may need to pre-emptively drain the unref queue. It is the + // responsibility of the caller to ensure that no further unrefs are queued + // after this call. + void Drain(); + + private: + const fml::RefPtr task_runner_; + const fml::TimeDelta drain_delay_; + std::mutex mutex_; + std::deque objects_; + bool drain_pending_; + + SkiaUnrefQueue(fml::RefPtr task_runner, + fml::TimeDelta delay); + + ~SkiaUnrefQueue(); + + FML_FRIEND_REF_COUNTED_THREAD_SAFE(SkiaUnrefQueue); + FML_FRIEND_MAKE_REF_COUNTED(SkiaUnrefQueue); + FML_DISALLOW_COPY_AND_ASSIGN(SkiaUnrefQueue); +}; + +/// An object whose deallocation needs to be performed on an specific unref +/// queue. The template argument U need to have a call operator that returns +/// that unref queue. +template +class SkiaGPUObject { + public: + using SkiaObjectType = T; + + SkiaGPUObject() = default; + + SkiaGPUObject(sk_sp object, fml::RefPtr queue) + : object_(std::move(object)), queue_(std::move(queue)) { + FML_DCHECK(queue_ && object_); + } + + SkiaGPUObject(SkiaGPUObject&&) = default; + + ~SkiaGPUObject() { reset(); } + + SkiaGPUObject& operator=(SkiaGPUObject&&) = default; + + sk_sp get() const { return object_; } + + void reset() { + if (object_) { + queue_->Unref(object_.release()); + } + queue_ = nullptr; + FML_DCHECK(object_ == nullptr); + } + + private: + sk_sp object_; + fml::RefPtr queue_; + + FML_DISALLOW_COPY_AND_ASSIGN(SkiaGPUObject); +}; + +} // namespace flow + +#endif // FLUTTER_FLOW_SKIA_GPU_OBJECT_H_ diff --git a/flow/texture.cc b/flow/texture.cc index 33a48af989477..d5cc3ae228aa7 100644 --- a/flow/texture.cc +++ b/flow/texture.cc @@ -11,36 +11,32 @@ TextureRegistry::TextureRegistry() = default; TextureRegistry::~TextureRegistry() = default; void TextureRegistry::RegisterTexture(std::shared_ptr texture) { - ASSERT_IS_GPU_THREAD mapping_[texture->Id()] = texture; } void TextureRegistry::UnregisterTexture(int64_t id) { - ASSERT_IS_GPU_THREAD mapping_.erase(id); } void TextureRegistry::OnGrContextCreated() { - ASSERT_IS_GPU_THREAD; for (auto& it : mapping_) { it.second->OnGrContextCreated(); } } void TextureRegistry::OnGrContextDestroyed() { - ASSERT_IS_GPU_THREAD; for (auto& it : mapping_) { it.second->OnGrContextDestroyed(); } } std::shared_ptr TextureRegistry::GetTexture(int64_t id) { - ASSERT_IS_GPU_THREAD auto it = mapping_.find(id); return it != mapping_.end() ? it->second : nullptr; } Texture::Texture(int64_t id) : id_(id) {} + Texture::~Texture() = default; } // namespace flow diff --git a/flow/texture.h b/flow/texture.h index a602a6b45b5b4..0af62ccbad2a1 100644 --- a/flow/texture.h +++ b/flow/texture.h @@ -6,8 +6,9 @@ #define FLUTTER_FLOW_TEXTURE_H_ #include -#include "flutter/common/threads.h" -#include "lib/fxl/synchronization/waitable_event.h" + +#include "flutter/fml/macros.h" +#include "flutter/fml/synchronization/waitable_event.h" #include "third_party/skia/include/core/SkCanvas.h" namespace flow { @@ -21,7 +22,7 @@ class Texture { virtual ~Texture(); // Called from GPU thread. - virtual void Paint(SkCanvas& canvas, const SkRect& bounds) = 0; + virtual void Paint(SkCanvas& canvas, const SkRect& bounds, bool freeze) = 0; // Called from GPU thread. virtual void OnGrContextCreated() = 0; @@ -29,12 +30,15 @@ class Texture { // Called from GPU thread. virtual void OnGrContextDestroyed() = 0; + // Called on GPU thread. + virtual void MarkNewFrameAvailable() = 0; + int64_t Id() { return id_; } private: int64_t id_; - FXL_DISALLOW_COPY_AND_ASSIGN(Texture); + FML_DISALLOW_COPY_AND_ASSIGN(Texture); }; class TextureRegistry { @@ -60,7 +64,7 @@ class TextureRegistry { private: std::map> mapping_; - FXL_DISALLOW_COPY_AND_ASSIGN(TextureRegistry); + FML_DISALLOW_COPY_AND_ASSIGN(TextureRegistry); }; } // namespace flow diff --git a/flutter_kernel_transformers/lib/track_widget_constructor_locations.dart b/flutter_kernel_transformers/lib/track_widget_constructor_locations.dart index 2a2dc16396157..27654bb062baa 100644 --- a/flutter_kernel_transformers/lib/track_widget_constructor_locations.dart +++ b/flutter_kernel_transformers/lib/track_widget_constructor_locations.dart @@ -18,7 +18,7 @@ import 'package:vm/frontend_server.dart' show ProgramTransformer; // // The parameter name contains a randomly generate hex string to avoid collision // with user generated parameters. -final String _creationLocationParameterName = +const String _creationLocationParameterName = r'$creationLocationd_0dea112b090073317d4'; /// Name of private field added to the Widget class and any other classes that @@ -27,7 +27,7 @@ final String _creationLocationParameterName = /// Regardless of what library a class implementing Widget is defined in, the /// private field will always be defined in the context of the widget_inspector /// library ensuring no name conflicts with regular fields. -final String _locationFieldName = r'_location'; +const String _locationFieldName = r'_location'; bool _hasNamedParameter(FunctionNode function, String name) { return function.namedParameters diff --git a/flutter_kernel_transformers/pubspec.yaml b/flutter_kernel_transformers/pubspec.yaml index 87d617b7afb46..e23088b859200 100644 --- a/flutter_kernel_transformers/pubspec.yaml +++ b/flutter_kernel_transformers/pubspec.yaml @@ -11,106 +11,3 @@ dependencies: dev_dependencies: test: any when: any - -dependency_overrides: - args: - path: ../../third_party/dart/third_party/pkg/args - async: - path: ../../third_party/dart/third_party/pkg/async - charcode: - path: ../../third_party/dart/third_party/pkg/charcode - collection: - path: ../../third_party/dart/third_party/pkg/collection - convert: - path: ../../third_party/dart/third_party/pkg/convert - crypto: - path: ../../third_party/dart/third_party/pkg/crypto - front_end: - path: ../../third_party/dart/pkg/front_end/ - kernel: - path: ../../third_party/dart/pkg/kernel/ - logging: - path: ../../third_party/dart/third_party/pkg/logging - meta: - path: ../../third_party/dart/pkg/meta - quiver: - path: ../../third_party/dart/third_party/pkg/quiver - package_config: - path: ../../third_party/dart/third_party/pkg_tested/package_config - path: - path: ../../third_party/dart/third_party/pkg/path - source_span: - path: ../../third_party/dart/third_party/pkg/source_span - typed_data: - path: ../../third_party/dart/third_party/pkg/typed_data - usage: - path: ../../third_party/dart/third_party/pkg/usage - vm: - path: ../../third_party/dart/pkg/vm/ - - analyzer: - path: ../../third_party/dart/pkg/analyzer - barback: - path: ../../third_party/dart/third_party/pkg/barback - boolean_selector: - path: ../../third_party/dart/third_party/pkg/boolean_selector - cli_util: - path: ../../third_party/dart/third_party/pkg/cli_util - csslib: - path: ../../third_party/dart/third_party/pkg/csslib - glob: - path: ../../third_party/dart/third_party/pkg/glob - html: - path: ../../third_party/dart/third_party/pkg/html - http: - path: ../../third_party/dart/third_party/pkg/http - http_multi_server: - path: ../../third_party/dart/third_party/pkg/http_multi_server - http_parser: - path: ../../third_party/dart/third_party/pkg/http_parser - isolate: - path: ../../third_party/dart/third_party/pkg/isolate - matcher: - path: ../../third_party/dart/third_party/pkg/matcher - mime: - path: ../../third_party/dart/third_party/pkg/mime - mockito: - path: ../../third_party/dart/third_party/pkg/mockito - package_resolver: - path: ../../third_party/dart/third_party/pkg_tested/package_resolver - plugin: - path: ../../third_party/dart/third_party/pkg/plugin - pool: - path: ../../third_party/dart/third_party/pkg/pool - pub_semver: - path: ../../third_party/dart/third_party/pkg/pub_semver - shelf: - path: ../../third_party/dart/third_party/pkg/shelf - shelf_packages_handler: - path: ../../third_party/dart/third_party/pkg/shelf_packages_handler - shelf_static: - path: ../../third_party/dart/third_party/pkg/shelf_static - shelf_web_socket: - path: ../../third_party/dart/third_party/pkg/shelf_web_socket - source_map_stack_trace: - path: ../../third_party/dart/third_party/pkg/source_map_stack_trace - source_maps: - path: ../../third_party/dart/third_party/pkg/source_maps - stack_trace: - path: ../../third_party/dart/third_party/pkg/stack_trace - stream_channel: - path: ../../third_party/dart/third_party/pkg/stream_channel - string_scanner: - path: ../../third_party/dart/third_party/pkg/string_scanner - test: - path: ../../third_party/dart/third_party/pkg/test - utf: - path: ../../third_party/dart/third_party/pkg/utf - watcher: - path: ../../third_party/dart/third_party/pkg/watcher - web_socket_channel: - path: ../../third_party/dart/third_party/pkg/web_socket_channel - when: - path: ../../third_party/pkg/when - yaml: - path: ../../third_party/dart/third_party/pkg/yaml diff --git a/fml/BUILD.gn b/fml/BUILD.gn index 6dabcb446c912..94f7dafbbdc91 100644 --- a/fml/BUILD.gn +++ b/fml/BUILD.gn @@ -4,29 +4,67 @@ source_set("fml") { sources = [ + "arraysize.h", + "build_config.h", + "closure.h", + "command_line.cc", + "command_line.h", + "compiler_specific.h", + "eintr_wrapper.h", + "export.h", + "file.h", "icu_util.cc", "icu_util.h", + "log_level.h", + "log_settings.cc", + "log_settings.h", + "log_settings_state.cc", + "logging.cc", + "logging.h", + "make_copyable.h", + "mapping.cc", "mapping.h", + "memory/ref_counted.h", + "memory/ref_counted_internal.h", + "memory/ref_ptr.h", + "memory/ref_ptr_internal.h", + "memory/thread_checker.h", "memory/weak_ptr.h", "memory/weak_ptr_internal.cc", "memory/weak_ptr_internal.h", + "message.cc", + "message.h", "message_loop.cc", "message_loop.h", "message_loop_impl.cc", "message_loop_impl.h", + "native_library.h", + "paths.cc", "paths.h", - "task_observer.h", + "string_view.cc", + "string_view.h", + "synchronization/thread_annotations.h", + "synchronization/thread_checker.h", + "synchronization/waitable_event.cc", + "synchronization/waitable_event.h", "task_runner.cc", "task_runner.h", "thread.cc", "thread.h", "thread_local.h", + "time/time_delta.h", + "time/time_point.cc", + "time/time_point.h", "trace_event.cc", "trace_event.h", + "unique_fd.cc", + "unique_fd.h", + "unique_object.h", ] + public_deps = [] + deps = [ - "//garnet/public/lib/fxl", "//third_party/dart/runtime:dart_api", # These need to be in sync with the Fuchsia buildroot. @@ -48,8 +86,6 @@ source_set("fml") { "platform/darwin/paths_darwin.mm", "platform/darwin/platform_version.h", "platform/darwin/platform_version.mm", - "platform/darwin/resource_mapping_darwin.h", - "platform/darwin/resource_mapping_darwin.mm", "platform/darwin/scoped_block.h", "platform/darwin/scoped_block.mm", "platform/darwin/scoped_nsobject.h", @@ -95,16 +131,28 @@ source_set("fml") { ] } + if (is_fuchsia) { + sources += [ "platform/fuchsia/paths_fuchsia.cc" ] + + public_deps += [ "//zircon/public/lib/trace-provider" ] + } + if (is_win) { sources += [ + "platform/win/file_win.cc", "platform/win/mapping_win.cc", "platform/win/message_loop_win.cc", "platform/win/message_loop_win.h", + "platform/win/native_library_win.cc", "platform/win/paths_win.cc", + "platform/win/wstring_conversion.h", ] } else { sources += [ + "platform/posix/file_posix.cc", "platform/posix/mapping_posix.cc", + "platform/posix/native_library_posix.cc", + "platform/posix/paths_posix.cc", ] } } @@ -113,16 +161,26 @@ executable("fml_unittests") { testonly = true sources = [ + "command_line_unittest.cc", + "memory/ref_counted_unittest.cc", "memory/weak_ptr_unittest.cc", "message_loop_unittests.cc", + "message_unittests.cc", + "paths_unittests.cc", + "string_view_unittest.cc", + "synchronization/thread_annotations_unittest.cc", + "synchronization/thread_checker_unittest.cc", + "synchronization/waitable_event_unittest.cc", "thread_local_unittests.cc", "thread_unittests.cc", + "time/time_delta_unittest.cc", + "time/time_point_unittest.cc", + "time/time_unittest.cc", ] deps = [ "$flutter_root/fml", "$flutter_root/testing", - "//garnet/public/lib/fxl", "//third_party/dart/runtime:libdart_jit", ] } diff --git a/fml/arraysize.h b/fml/arraysize.h new file mode 100644 index 0000000000000..8457369884a97 --- /dev/null +++ b/fml/arraysize.h @@ -0,0 +1,16 @@ +// Copyright 2016 The Fuchsia Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FML_ARRAYSIZE_H_ +#define FLUTTER_FML_ARRAYSIZE_H_ + +#include + +#ifndef arraysize +template +char (&ArraySizeHelper(T (&array)[N]))[N]; +#define arraysize(array) (sizeof(ArraySizeHelper(array))) +#endif + +#endif // FLUTTER_FML_ARRAYSIZE_H_ diff --git a/fml/build_config.h b/fml/build_config.h new file mode 100644 index 0000000000000..ca9a91a382c7e --- /dev/null +++ b/fml/build_config.h @@ -0,0 +1,110 @@ +// Copyright 2016 The Fuchsia Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// This file adds defines about the platform we're currently building on. +// Operating System: +// OS_WIN / OS_MACOSX / OS_LINUX / OS_POSIX (MACOSX or LINUX) / +// OS_NACL (NACL_SFI or NACL_NONSFI) / OS_NACL_SFI / OS_NACL_NONSFI +// Compiler: +// COMPILER_MSVC / COMPILER_GCC +// Processor: +// ARCH_CPU_X86 / ARCH_CPU_X86_64 / ARCH_CPU_X86_FAMILY (X86 or X86_64) +// ARCH_CPU_32_BITS / ARCH_CPU_64_BITS + +#ifndef FLUTTER_FML_BUILD_CONFIG_H_ +#define FLUTTER_FML_BUILD_CONFIG_H_ + +#if defined(__Fuchsia__) +#define OS_FUCHSIA 1 +#elif defined(ANDROID) +#define OS_ANDROID 1 +#elif defined(__APPLE__) +// only include TargetConditions after testing ANDROID as some android builds +// on mac don't have this header available and it's not needed unless the target +// is really mac/ios. +#include +#define OS_MACOSX 1 +#if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE +#define OS_IOS 1 +#endif // defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE +#elif defined(__linux__) +#define OS_LINUX 1 +// include a system header to pull in features.h for glibc/uclibc macros. +#include +#if defined(__GLIBC__) && !defined(__UCLIBC__) +// we really are using glibc, not uClibc pretending to be glibc +#define LIBC_GLIBC 1 +#endif +#elif defined(_WIN32) +#define OS_WIN 1 +#elif defined(__FreeBSD__) +#define OS_FREEBSD 1 +#elif defined(__OpenBSD__) +#define OS_OPENBSD 1 +#elif defined(__sun) +#define OS_SOLARIS 1 +#elif defined(__QNXNTO__) +#define OS_QNX 1 +#else +#error Please add support for your platform in flutter/fml/build_config.h +#endif + +// For access to standard BSD features, use OS_BSD instead of a +// more specific macro. +#if defined(OS_FREEBSD) || defined(OS_OPENBSD) +#define OS_BSD 1 +#endif + +// For access to standard POSIXish features, use OS_POSIX instead of a +// more specific macro. +#if defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_FREEBSD) || \ + defined(OS_OPENBSD) || defined(OS_SOLARIS) || defined(OS_ANDROID) || \ + defined(OS_NACL) || defined(OS_QNX) +#define OS_POSIX 1 +#endif + +// Processor architecture detection. For more info on what's defined, see: +// http://msdn.microsoft.com/en-us/library/b0084kay.aspx +// http://www.agner.org/optimize/calling_conventions.pdf +// or with gcc, run: "echo | gcc -E -dM -" +#if defined(_M_X64) || defined(__x86_64__) +#define ARCH_CPU_X86_FAMILY 1 +#define ARCH_CPU_X86_64 1 +#define ARCH_CPU_64_BITS 1 +#define ARCH_CPU_LITTLE_ENDIAN 1 +#elif defined(_M_IX86) || defined(__i386__) +#define ARCH_CPU_X86_FAMILY 1 +#define ARCH_CPU_X86 1 +#define ARCH_CPU_32_BITS 1 +#define ARCH_CPU_LITTLE_ENDIAN 1 +#elif defined(__ARMEL__) +#define ARCH_CPU_ARM_FAMILY 1 +#define ARCH_CPU_ARMEL 1 +#define ARCH_CPU_32_BITS 1 +#define ARCH_CPU_LITTLE_ENDIAN 1 +#elif defined(__aarch64__) +#define ARCH_CPU_ARM_FAMILY 1 +#define ARCH_CPU_ARM64 1 +#define ARCH_CPU_64_BITS 1 +#define ARCH_CPU_LITTLE_ENDIAN 1 +#elif defined(__pnacl__) +#define ARCH_CPU_32_BITS 1 +#define ARCH_CPU_LITTLE_ENDIAN 1 +#elif defined(__MIPSEL__) +#if defined(__LP64__) +#define ARCH_CPU_MIPS64_FAMILY 1 +#define ARCH_CPU_MIPS64EL 1 +#define ARCH_CPU_64_BITS 1 +#define ARCH_CPU_LITTLE_ENDIAN 1 +#else +#define ARCH_CPU_MIPS_FAMILY 1 +#define ARCH_CPU_MIPSEL 1 +#define ARCH_CPU_32_BITS 1 +#define ARCH_CPU_LITTLE_ENDIAN 1 +#endif +#else +#error Please add support for your architecture in flutter/fml/build_config.h +#endif + +#endif // FLUTTER_FML_BUILD_CONFIG_H_ diff --git a/fml/closure.h b/fml/closure.h new file mode 100644 index 0000000000000..f40c0b2d0cbaf --- /dev/null +++ b/fml/closure.h @@ -0,0 +1,16 @@ +// Copyright 2016 The Fuchsia Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef FLUTTER_FML_CLOSURE_H_ +#define FLUTTER_FML_CLOSURE_H_ + +#include + +namespace fml { + +using closure = std::function; + +} // namespace fml + +#endif // FLUTTER_FML_CLOSURE_H_ diff --git a/fml/command_line.cc b/fml/command_line.cc new file mode 100644 index 0000000000000..24012867edc84 --- /dev/null +++ b/fml/command_line.cc @@ -0,0 +1,165 @@ +// Copyright 2016 The Fuchsia Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "flutter/fml/command_line.h" + +namespace fml { + +// CommandLine ----------------------------------------------------------------- + +CommandLine::Option::Option(const std::string& name) : name(name) {} + +CommandLine::Option::Option(const std::string& name, const std::string& value) + : name(name), value(value) {} + +CommandLine::CommandLine() = default; + +CommandLine::CommandLine(const CommandLine& from) = default; + +CommandLine::CommandLine(CommandLine&& from) = default; + +CommandLine::CommandLine(const std::string& argv0, + const std::vector