├── LICENSE ├── Makefile ├── OWNERS ├── README.md ├── data └── non_linearity_data │ └── testing_non_linearity_data.dat ├── debian ├── README.source ├── changelog ├── compat ├── control ├── copyright ├── docs ├── libgestures-dev.dirs ├── libgestures-dev.install ├── libgestures.dirs ├── libgestures.install ├── rules └── source │ └── format ├── include ├── build │ ├── OWNERS │ ├── README.chromium │ ├── all.gyp │ ├── all_android.gyp │ ├── android │ │ ├── AndroidManifest.xml │ │ ├── CheckInstallApk-debug.apk │ │ ├── PRESUBMIT.py │ │ ├── adb_android_webview_command_line │ │ ├── adb_chromium_testshell_command_line │ │ ├── adb_content_shell_command_line │ │ ├── adb_device_functions.sh │ │ ├── adb_gdb │ │ ├── adb_gdb_android_webview_shell │ │ ├── adb_gdb_chromium_testshell │ │ ├── adb_gdb_content_shell │ │ ├── adb_gdb_mojo_shell │ │ ├── adb_install_apk.py │ │ ├── adb_kill_content_shell │ │ ├── adb_logcat_monitor.py │ │ ├── adb_logcat_printer.py │ │ ├── adb_profile_chrome │ │ ├── adb_profile_chrome.py │ │ ├── adb_reverse_forwarder.py │ │ ├── adb_run_android_webview_shell │ │ ├── adb_run_chromium_testshell │ │ ├── adb_run_content_shell │ │ ├── adb_run_mojo_shell │ │ ├── ant │ │ │ ├── apk-codegen.xml │ │ │ ├── apk-compile.xml │ │ │ ├── apk-obfuscate.xml │ │ │ ├── apk-package-resources.xml │ │ │ ├── apk-package.xml │ │ │ ├── chromium-debug.keystore │ │ │ ├── create-test-jar.js │ │ │ └── empty │ │ │ │ └── res │ │ │ │ └── .keep │ │ ├── arm-linux-androideabi-gold │ │ │ ├── arm-linux-androideabi-ld │ │ │ └── ld │ │ ├── asan_symbolize.py │ │ ├── avd.py │ │ ├── bb_run_sharded_steps.py │ │ ├── buildbot │ │ │ ├── OWNERS │ │ │ ├── bb_annotations.py │ │ │ ├── bb_device_status_check.py │ │ │ ├── bb_device_steps.py │ │ │ ├── bb_host_steps.py │ │ │ ├── bb_run_bot.py │ │ │ ├── bb_utils.py │ │ │ ├── env_to_json.py │ │ │ └── tests │ │ │ │ └── bb_run_bot_test.py │ │ ├── chrome_with_libs.gyp │ │ ├── cpufeatures.gypi │ │ ├── create_standalone_apk_action.gypi │ │ ├── developer_recommended_flags.gypi │ │ ├── dex_action.gypi │ │ ├── empty │ │ │ └── src │ │ │ │ └── .keep │ │ ├── empty_proguard.flags │ │ ├── enable_asserts.py │ │ ├── envsetup.sh │ │ ├── envsetup_functions.sh │ │ ├── finalize_apk_action.gypi │ │ ├── findbugs_diff.py │ │ ├── findbugs_filter │ │ │ ├── findbugs_exclude.xml │ │ │ └── findbugs_known_bugs.txt │ │ ├── generate_emma_html.py │ │ ├── gyp │ │ │ ├── ant.py │ │ │ ├── apk_install.py │ │ │ ├── create_device_library_links.py │ │ │ ├── create_native_libraries_header.py │ │ │ ├── create_standalone_apk.py │ │ │ ├── dex.py │ │ │ ├── emma_instr.py │ │ │ ├── finalize_apk.py │ │ │ ├── gcc_preprocess.py │ │ │ ├── generate_v14_compatible_resources.py │ │ │ ├── get_device_configuration.py │ │ │ ├── jar.py │ │ │ ├── jar_toc.py │ │ │ ├── javac.py │ │ │ ├── lint.py │ │ │ ├── process_resources.py │ │ │ ├── proguard.py │ │ │ ├── push_libraries.py │ │ │ ├── strip_library_for_device.py │ │ │ ├── util │ │ │ │ ├── __init__.py │ │ │ │ ├── build_device.py │ │ │ │ ├── build_utils.py │ │ │ │ ├── md5_check.py │ │ │ │ └── md5_check_test.py │ │ │ └── write_ordered_libraries.py │ │ ├── host_heartbeat.py │ │ ├── install_emulator_deps.py │ │ ├── instr_action.gypi │ │ ├── java_cpp_template.gypi │ │ ├── lighttpd_server.py │ │ ├── lint │ │ │ ├── suppress.py │ │ │ └── suppressions.xml │ │ ├── lint_action.gypi │ │ ├── native_app_dependencies.gypi │ │ ├── provision_devices.py │ │ ├── push_libraries.gypi │ │ ├── pylib │ │ │ ├── OWNERS │ │ │ ├── __init__.py │ │ │ ├── android_commands.py │ │ │ ├── base │ │ │ │ ├── __init__.py │ │ │ │ ├── base_test_result.py │ │ │ │ ├── base_test_result_unittest.py │ │ │ │ ├── base_test_runner.py │ │ │ │ ├── test_dispatcher.py │ │ │ │ └── test_dispatcher_unittest.py │ │ │ ├── chrome_test_server_spawner.py │ │ │ ├── cmd_helper.py │ │ │ ├── constants.py │ │ │ ├── device │ │ │ │ ├── __init__.py │ │ │ │ ├── adb_wrapper.py │ │ │ │ └── adb_wrapper_test.py │ │ │ ├── flag_changer.py │ │ │ ├── forwarder.py │ │ │ ├── gtest │ │ │ │ ├── __init__.py │ │ │ │ ├── filter │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── base_unittests_disabled │ │ │ │ │ ├── base_unittests_emulator_additional_disabled │ │ │ │ │ ├── breakpad_unittests_disabled │ │ │ │ │ ├── content_browsertests_disabled │ │ │ │ │ ├── content_unittests_disabled │ │ │ │ │ ├── ipc_tests_disabled │ │ │ │ │ ├── media_unittests_disabled │ │ │ │ │ ├── net_unittests_disabled │ │ │ │ │ ├── sync_unit_tests_disabled │ │ │ │ │ ├── ui_unittests_disabled │ │ │ │ │ ├── unit_tests_disabled │ │ │ │ │ └── webkit_unit_tests_disabled │ │ │ │ ├── gtest_config.py │ │ │ │ ├── setup.py │ │ │ │ ├── test_options.py │ │ │ │ ├── test_package.py │ │ │ │ ├── test_package_apk.py │ │ │ │ ├── test_package_exe.py │ │ │ │ └── test_runner.py │ │ │ ├── host_driven │ │ │ │ ├── __init__.py │ │ │ │ ├── setup.py │ │ │ │ ├── test_case.py │ │ │ │ ├── test_info_collection.py │ │ │ │ ├── test_runner.py │ │ │ │ ├── test_server.py │ │ │ │ └── tests_annotations.py │ │ │ ├── instrumentation │ │ │ │ ├── __init__.py │ │ │ │ ├── json_perf_parser.py │ │ │ │ ├── setup.py │ │ │ │ ├── test_jar.py │ │ │ │ ├── test_options.py │ │ │ │ ├── test_package.py │ │ │ │ ├── test_result.py │ │ │ │ └── test_runner.py │ │ │ ├── linker │ │ │ │ ├── __init__.py │ │ │ │ ├── setup.py │ │ │ │ ├── test_case.py │ │ │ │ └── test_runner.py │ │ │ ├── monkey │ │ │ │ ├── __init__.py │ │ │ │ ├── setup.py │ │ │ │ ├── test_options.py │ │ │ │ └── test_runner.py │ │ │ ├── perf │ │ │ │ ├── __init__.py │ │ │ │ ├── cache_control.py │ │ │ │ ├── perf_control.py │ │ │ │ ├── setup.py │ │ │ │ ├── surface_stats_collector.py │ │ │ │ ├── surface_stats_collector_unittest.py │ │ │ │ ├── test_options.py │ │ │ │ ├── test_runner.py │ │ │ │ └── thermal_throttle.py │ │ │ ├── pexpect.py │ │ │ ├── ports.py │ │ │ ├── screenshot.py │ │ │ ├── system_properties.py │ │ │ ├── uiautomator │ │ │ │ ├── __init__.py │ │ │ │ ├── setup.py │ │ │ │ ├── test_options.py │ │ │ │ ├── test_package.py │ │ │ │ └── test_runner.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── apk_helper.py │ │ │ │ ├── command_option_parser.py │ │ │ │ ├── emulator.py │ │ │ │ ├── findbugs.py │ │ │ │ ├── flakiness_dashboard_results_uploader.py │ │ │ │ ├── host_path_finder.py │ │ │ │ ├── repo_utils.py │ │ │ │ ├── report_results.py │ │ │ │ ├── reraiser_thread.py │ │ │ │ ├── reraiser_thread_unittest.py │ │ │ │ ├── run_tests_helper.py │ │ │ │ ├── test_environment.py │ │ │ │ ├── test_options_parser.py │ │ │ │ ├── time_profile.py │ │ │ │ ├── timeout_retry.py │ │ │ │ ├── timeout_retry_unittest.py │ │ │ │ ├── watchdog_timer.py │ │ │ │ └── xvfb.py │ │ │ └── valgrind_tools.py │ │ ├── screenshot.py │ │ ├── setup.gyp │ │ ├── strip_native_libraries.gypi │ │ ├── surface_stats.py │ │ ├── symbolize.py │ │ ├── symbolize_test.py │ │ ├── test_runner.py │ │ ├── tests │ │ │ ├── multiple_proguards │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── multiple_proguards.gyp │ │ │ │ ├── proguard1.flags │ │ │ │ ├── proguard2.flags │ │ │ │ └── src │ │ │ │ │ └── dummy │ │ │ │ │ └── DummyActivity.java │ │ │ └── symbolize │ │ │ │ ├── Makefile │ │ │ │ ├── a.cc │ │ │ │ ├── b.cc │ │ │ │ ├── liba.so │ │ │ │ └── libb.so │ │ ├── tombstones.py │ │ ├── update_verification.py │ │ └── write_ordered_libraries.gypi │ ├── apk_fake_jar.gypi │ ├── apk_test.gypi │ ├── apply_locales.py │ ├── asan.saves │ ├── branding_value.sh │ ├── build-ctags.sh │ ├── build_config.h │ ├── chrome_settings.gypi │ ├── common.croc │ ├── common.gypi │ ├── common_untrusted.gypi │ ├── compiler_version.py │ ├── config │ │ ├── BUILD.gn │ │ ├── BUILDCONFIG.gn │ │ ├── OWNERS │ │ ├── android │ │ │ └── config.gni │ │ ├── arm.gni │ │ ├── clang │ │ │ └── BUILD.gn │ │ ├── compiler │ │ │ └── BUILD.gn │ │ ├── ios │ │ │ ├── ios_sdk.gni │ │ │ └── ios_sdk.py │ │ ├── linux │ │ │ ├── BUILD.gn │ │ │ ├── pkg-config.py │ │ │ ├── pkg_config.gni │ │ │ └── sysroot_ld_path.py │ │ ├── mac │ │ │ ├── BUILD.gn │ │ │ └── mac_sdk.gni │ │ ├── sysroot.gni │ │ └── win │ │ │ ├── BUILD.gn │ │ │ ├── get_msvc_config.py │ │ │ ├── get_msvc_config_real.py │ │ │ ├── get_visual_studio_path.py │ │ │ └── visual_studio_version.gni │ ├── copy_test_data_ios.gypi │ ├── copy_test_data_ios.py │ ├── cp.py │ ├── dir_exists.py │ ├── download_nacl_toolchains.py │ ├── env_dump.py │ ├── escape_unicode.py │ ├── extract_from_cab.py │ ├── filename_rules.gypi │ ├── gdb-add-index │ ├── get_landmines.py │ ├── git-hooks │ │ ├── OWNERS │ │ └── pre-commit │ ├── grit_action.gypi │ ├── grit_target.gypi │ ├── gyp_chromium │ ├── gyp_chromium.py │ ├── gyp_helper.py │ ├── install-build-deps-android.sh │ ├── install-build-deps.sh │ ├── install-chroot.sh │ ├── internal │ │ ├── README.chromium │ │ ├── release_defaults.gypi │ │ ├── release_impl.gypi │ │ └── release_impl_official.gypi │ ├── intsafe_workaround.h │ ├── ios │ │ ├── PRESUBMIT.py │ │ ├── chrome_ios.croc │ │ ├── clean_env.py │ │ ├── grit_whitelist.txt │ │ └── mac_build.gypi │ ├── isolate.gypi │ ├── jar_file_jni_generator.gypi │ ├── java.gypi │ ├── java_aidl.gypi │ ├── java_apk.gypi │ ├── java_prebuilt.gypi │ ├── jni_generator.gypi │ ├── json_schema_bundle_compile.gypi │ ├── json_schema_compile.gypi │ ├── json_to_struct.gypi │ ├── landmine_utils.py │ ├── landmines.py │ ├── linux │ │ ├── bin │ │ │ └── eu-strip.sha1 │ │ ├── chrome_linux.croc │ │ ├── dump_app_syms │ │ ├── install-arm-sysroot.py │ │ ├── install-chromeos-fonts.py │ │ ├── pkg-config-wrapper │ │ ├── python_arch.sh │ │ ├── rewrite_dirs.py │ │ ├── sysroot_ld_path.sh │ │ ├── system.gyp │ │ ├── system.isolate │ │ └── unbundle │ │ │ ├── README │ │ │ ├── expat.gyp │ │ │ ├── ffmpeg.gyp │ │ │ ├── flac.gyp │ │ │ ├── harfbuzz.gyp │ │ │ ├── icu.gyp │ │ │ ├── jsoncpp.gyp │ │ │ ├── libevent.gyp │ │ │ ├── libjpeg.gyp │ │ │ ├── libpng.gyp │ │ │ ├── libusb.gyp │ │ │ ├── libvpx.gyp │ │ │ ├── libwebp.gyp │ │ │ ├── libxml.gyp │ │ │ ├── libxslt.gyp │ │ │ ├── openssl.gyp │ │ │ ├── opus.gyp │ │ │ ├── re2.gyp │ │ │ ├── remove_bundled_libraries.py │ │ │ ├── replace_gyp_files.py │ │ │ ├── snappy.gyp │ │ │ ├── speex.gyp │ │ │ ├── sqlite.gyp │ │ │ ├── v8.gyp │ │ │ └── zlib.gyp │ ├── mac │ │ ├── OWNERS │ │ ├── asan.gyp │ │ ├── change_mach_o_flags.py │ │ ├── change_mach_o_flags_from_xcode.sh │ │ ├── chrome_mac.croc │ │ ├── copy_asan_runtime_dylib.sh │ │ ├── copy_framework_unversioned.sh │ │ ├── edit_xibs.sh │ │ ├── find_sdk.py │ │ ├── make_more_helpers.sh │ │ ├── strip_from_xcode │ │ ├── strip_save_dsym │ │ ├── tweak_info_plist.py │ │ └── verify_no_objc.sh │ ├── nocompile.gypi │ ├── output_dll_copy.rules │ ├── precompile.cc │ ├── precompile.h │ ├── protoc.gypi │ ├── protoc_java.gypi │ ├── protoc_java.py │ ├── release.gypi │ ├── sanitize-mac-build-log.sed │ ├── sanitize-mac-build-log.sh │ ├── sanitize-win-build-log.sed │ ├── sanitize-win-build-log.sh │ ├── shim_headers.gypi │ ├── slave │ │ ├── OWNERS │ │ └── README │ ├── some.gyp │ ├── symlink.py │ ├── temp_gyp │ │ ├── README.chromium │ │ └── pdfsqueeze.gyp │ ├── toolchain │ │ ├── OWNERS │ │ ├── android │ │ │ ├── BUILD.gn │ │ │ └── find_android_compiler.py │ │ ├── clang.gni │ │ ├── gcc_toolchain.gni │ │ ├── get_default_posix_goma_dir.py │ │ ├── goma.gni │ │ ├── linux │ │ │ └── BUILD.gn │ │ ├── mac │ │ │ ├── BUILD.gn │ │ │ └── setup_toolchain.py │ │ ├── nacl │ │ │ └── BUILD.gn │ │ └── win │ │ │ ├── BUILD.gn │ │ │ └── setup_toolchain.py │ ├── tree_truth.sh │ ├── uiautomator_test.gypi │ ├── update-linux-sandbox.sh │ ├── util │ │ ├── BUILD.gn │ │ ├── OWNERS │ │ ├── lastchange.py │ │ └── lib │ │ │ └── common │ │ │ ├── __init__.py │ │ │ ├── perf_result_data_type.py │ │ │ ├── perf_tests_results_helper.py │ │ │ ├── unittest_util.py │ │ │ └── util.py │ ├── whitespace_file.txt │ ├── win │ │ ├── chrome_win.croc │ │ ├── compatibility.manifest │ │ ├── importlibs │ │ │ ├── create_import_lib.gypi │ │ │ ├── create_importlib_win.py │ │ │ ├── filter_export_list.py │ │ │ └── x86 │ │ │ │ ├── user32.winxp.imports │ │ │ │ └── user32.winxp.lib │ │ ├── install-build-deps.py │ │ ├── reorder-imports.py │ │ └── setup_cygwin_mount.py │ └── win_precompile.gypi ├── gestures │ └── include │ │ ├── accel_filter_interpreter.h │ │ ├── activity_log.h │ │ ├── activity_replay.h │ │ ├── box_filter_interpreter.h │ │ ├── click_wiggle_filter_interpreter.h │ │ ├── command_line.h │ │ ├── compiler_specific.h │ │ ├── cr48_profile_sensor_filter_interpreter.h │ │ ├── eintr_wrapper.h │ │ ├── file_util.h │ │ ├── filter_interpreter.h │ │ ├── finger_merge_filter_interpreter.h │ │ ├── finger_metrics.h │ │ ├── fling_stop_filter_interpreter.h │ │ ├── fling_to_scroll_filter_interpreter.h │ │ ├── gestures.h │ │ ├── iir_filter_interpreter.h │ │ ├── immediate_interpreter.h │ │ ├── integral_gesture_filter_interpreter.h │ │ ├── interpreter.h │ │ ├── list.h │ │ ├── logging.h │ │ ├── logging_filter_interpreter.h │ │ ├── lookahead_filter_interpreter.h │ │ ├── macros.h │ │ ├── map.h │ │ ├── memory_manager.h │ │ ├── metrics_filter_interpreter.h │ │ ├── mouse_interpreter.h │ │ ├── multitouch_mouse_interpreter.h │ │ ├── non_linearity_filter_interpreter.h │ │ ├── palm_classifying_filter_interpreter.h │ │ ├── prop_registry.h │ │ ├── scaling_filter_interpreter.h │ │ ├── sensor_jump_filter_interpreter.h │ │ ├── set.h │ │ ├── split_correcting_filter_interpreter.h │ │ ├── stationary_wiggle_filter_interpreter.h │ │ ├── string_util.h │ │ ├── stuck_button_inhibitor_filter_interpreter.h │ │ ├── t5r2_correcting_filter_interpreter.h │ │ ├── trace_marker.h │ │ ├── tracer.h │ │ ├── trend_classifying_filter_interpreter.h │ │ ├── unittest_util.h │ │ ├── util.h │ │ └── vector.h └── gtest │ ├── gtest-death-test.h │ ├── gtest-message.h │ ├── gtest-param-test.h │ ├── gtest-param-test.h.pump │ ├── gtest-printers.h │ ├── gtest-spi.h │ ├── gtest-test-part.h │ ├── gtest-typed-test.h │ ├── gtest.h │ ├── gtest_pred_impl.h │ ├── gtest_prod.h │ └── internal │ ├── gtest-death-test-internal.h │ ├── gtest-filepath.h │ ├── gtest-internal.h │ ├── gtest-linked_ptr.h │ ├── gtest-param-util-generated.h │ ├── gtest-param-util-generated.h.pump │ ├── gtest-param-util.h │ ├── gtest-port.h │ ├── gtest-string.h │ ├── gtest-tuple.h │ ├── gtest-tuple.h.pump │ ├── gtest-type-util.h │ └── gtest-type-util.h.pump ├── libgestures.pc ├── lid_touchpad_helper ├── Makefile ├── etc │ └── init │ │ └── lid_touchpad_helper.conf ├── lid_touchpad_helper.conf └── lid_touchpad_helper_main.cc ├── src ├── accel_filter_interpreter.cc ├── accel_filter_interpreter_unittest.cc ├── activity_log.cc ├── activity_log_unittest.cc ├── activity_replay.cc ├── activity_replay_unittest.cc ├── box_filter_interpreter.cc ├── box_filter_interpreter_unittest.cc ├── click_wiggle_filter_interpreter.cc ├── click_wiggle_filter_interpreter_unittest.cc ├── command_line.cc ├── cr48_profile_sensor_filter_interpreter.cc ├── cr48_profile_sensor_filter_interpreter_unittest.cc ├── file_util.cc ├── filter_interpreter.cc ├── finger_merge_filter_interpreter.cc ├── finger_metrics.cc ├── fling_stop_filter_interpreter.cc ├── fling_stop_filter_interpreter_unittest.cc ├── fling_to_scroll_filter_interpreter.cc ├── gestures.cc ├── gestures_unittest.cc ├── iir_filter_interpreter.cc ├── iir_filter_interpreter_unittest.cc ├── immediate_interpreter.cc ├── immediate_interpreter_unittest.cc ├── integral_gesture_filter_interpreter.cc ├── integral_gesture_filter_interpreter_unittest.cc ├── interpreter.cc ├── interpreter_unittest.cc ├── json_reader.cpp ├── json_value.cpp ├── list_unittest.cc ├── log.cc ├── logging_filter_interpreter.cc ├── logging_filter_interpreter_unittest.cc ├── lookahead_filter_interpreter.cc ├── lookahead_filter_interpreter_unittest.cc ├── map_unittest.cc ├── metrics_filter_interpreter.cc ├── mouse_interpreter.cc ├── mouse_interpreter_unittest.cc ├── multitouch_mouse_interpreter.cc ├── multitouch_mouse_interpreter_unittest.cc ├── non_linearity_filter_interpreter.cc ├── non_linearity_filter_interpreter_unittest.cc ├── palm_classifying_filter_interpreter.cc ├── palm_classifying_filter_interpreter_unittest.cc ├── prop_registry.cc ├── prop_registry_unittest.cc ├── scaling_filter_interpreter.cc ├── scaling_filter_interpreter_unittest.cc ├── sensor_jump_filter_interpreter.cc ├── sensor_jump_filter_interpreter_unittest.cc ├── set_unittest.cc ├── split_correcting_filter_interpreter.cc ├── split_correcting_filter_interpreter_unittest.cc ├── stationary_wiggle_filter_interpreter.cc ├── string_util.cc ├── stuck_button_inhibitor_filter_interpreter.cc ├── stuck_button_inhibitor_filter_interpreter_unittest.cc ├── t5r2_correcting_filter_interpreter.cc ├── t5r2_correcting_filter_interpreter_unittest.cc ├── test_main.cc ├── trace_marker.cc ├── trace_marker_unittest.cc ├── tracer.cc ├── tracer_unittest.cc ├── trend_classifying_filter_interpreter.cc ├── unittest_util.cc ├── util.cc ├── util_unittest.cc └── vector_unittest.cc └── tools ├── local_coverage_rate.sh ├── logs └── cr48 │ ├── cursor_freeze.dat │ ├── report-291598177-system_logs.mini.txt │ └── report-291598469-system_logs.mini.txt ├── regression_test.sh ├── replay_log └── tplog.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/README.md -------------------------------------------------------------------------------- /data/non_linearity_data/testing_non_linearity_data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/data/non_linearity_data/testing_non_linearity_data.dat -------------------------------------------------------------------------------- /debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/debian/README.source -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /debian/libgestures-dev.dirs: -------------------------------------------------------------------------------- 1 | usr/include 2 | -------------------------------------------------------------------------------- /debian/libgestures-dev.install: -------------------------------------------------------------------------------- 1 | usr/include/* 2 | -------------------------------------------------------------------------------- /debian/libgestures.dirs: -------------------------------------------------------------------------------- 1 | usr/lib 2 | -------------------------------------------------------------------------------- /debian/libgestures.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/debian/libgestures.install -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /include/build/OWNERS: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /include/build/README.chromium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/README.chromium -------------------------------------------------------------------------------- /include/build/all.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/all.gyp -------------------------------------------------------------------------------- /include/build/all_android.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/all_android.gyp -------------------------------------------------------------------------------- /include/build/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/AndroidManifest.xml -------------------------------------------------------------------------------- /include/build/android/CheckInstallApk-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/CheckInstallApk-debug.apk -------------------------------------------------------------------------------- /include/build/android/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/PRESUBMIT.py -------------------------------------------------------------------------------- /include/build/android/adb_android_webview_command_line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_android_webview_command_line -------------------------------------------------------------------------------- /include/build/android/adb_chromium_testshell_command_line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_chromium_testshell_command_line -------------------------------------------------------------------------------- /include/build/android/adb_content_shell_command_line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_content_shell_command_line -------------------------------------------------------------------------------- /include/build/android/adb_device_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_device_functions.sh -------------------------------------------------------------------------------- /include/build/android/adb_gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_gdb -------------------------------------------------------------------------------- /include/build/android/adb_gdb_android_webview_shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_gdb_android_webview_shell -------------------------------------------------------------------------------- /include/build/android/adb_gdb_chromium_testshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_gdb_chromium_testshell -------------------------------------------------------------------------------- /include/build/android/adb_gdb_content_shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_gdb_content_shell -------------------------------------------------------------------------------- /include/build/android/adb_gdb_mojo_shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_gdb_mojo_shell -------------------------------------------------------------------------------- /include/build/android/adb_install_apk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_install_apk.py -------------------------------------------------------------------------------- /include/build/android/adb_kill_content_shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_kill_content_shell -------------------------------------------------------------------------------- /include/build/android/adb_logcat_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_logcat_monitor.py -------------------------------------------------------------------------------- /include/build/android/adb_logcat_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_logcat_printer.py -------------------------------------------------------------------------------- /include/build/android/adb_profile_chrome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_profile_chrome -------------------------------------------------------------------------------- /include/build/android/adb_profile_chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_profile_chrome.py -------------------------------------------------------------------------------- /include/build/android/adb_reverse_forwarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_reverse_forwarder.py -------------------------------------------------------------------------------- /include/build/android/adb_run_android_webview_shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_run_android_webview_shell -------------------------------------------------------------------------------- /include/build/android/adb_run_chromium_testshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_run_chromium_testshell -------------------------------------------------------------------------------- /include/build/android/adb_run_content_shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_run_content_shell -------------------------------------------------------------------------------- /include/build/android/adb_run_mojo_shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/adb_run_mojo_shell -------------------------------------------------------------------------------- /include/build/android/ant/apk-codegen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/ant/apk-codegen.xml -------------------------------------------------------------------------------- /include/build/android/ant/apk-compile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/ant/apk-compile.xml -------------------------------------------------------------------------------- /include/build/android/ant/apk-obfuscate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/ant/apk-obfuscate.xml -------------------------------------------------------------------------------- /include/build/android/ant/apk-package-resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/ant/apk-package-resources.xml -------------------------------------------------------------------------------- /include/build/android/ant/apk-package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/ant/apk-package.xml -------------------------------------------------------------------------------- /include/build/android/ant/chromium-debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/ant/chromium-debug.keystore -------------------------------------------------------------------------------- /include/build/android/ant/create-test-jar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/ant/create-test-jar.js -------------------------------------------------------------------------------- /include/build/android/ant/empty/res/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/ant/empty/res/.keep -------------------------------------------------------------------------------- /include/build/android/arm-linux-androideabi-gold/arm-linux-androideabi-ld: -------------------------------------------------------------------------------- 1 | ../../../third_party/android_tools/ndk/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86_64/bin/arm-linux-androideabi-ld.gold -------------------------------------------------------------------------------- /include/build/android/arm-linux-androideabi-gold/ld: -------------------------------------------------------------------------------- 1 | ../../../third_party/android_tools/ndk/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86_64/arm-linux-androideabi/bin/ld.gold -------------------------------------------------------------------------------- /include/build/android/asan_symbolize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/asan_symbolize.py -------------------------------------------------------------------------------- /include/build/android/avd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/avd.py -------------------------------------------------------------------------------- /include/build/android/bb_run_sharded_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/bb_run_sharded_steps.py -------------------------------------------------------------------------------- /include/build/android/buildbot/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/buildbot/OWNERS -------------------------------------------------------------------------------- /include/build/android/buildbot/bb_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/buildbot/bb_annotations.py -------------------------------------------------------------------------------- /include/build/android/buildbot/bb_device_status_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/buildbot/bb_device_status_check.py -------------------------------------------------------------------------------- /include/build/android/buildbot/bb_device_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/buildbot/bb_device_steps.py -------------------------------------------------------------------------------- /include/build/android/buildbot/bb_host_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/buildbot/bb_host_steps.py -------------------------------------------------------------------------------- /include/build/android/buildbot/bb_run_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/buildbot/bb_run_bot.py -------------------------------------------------------------------------------- /include/build/android/buildbot/bb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/buildbot/bb_utils.py -------------------------------------------------------------------------------- /include/build/android/buildbot/env_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/buildbot/env_to_json.py -------------------------------------------------------------------------------- /include/build/android/buildbot/tests/bb_run_bot_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/buildbot/tests/bb_run_bot_test.py -------------------------------------------------------------------------------- /include/build/android/chrome_with_libs.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/chrome_with_libs.gyp -------------------------------------------------------------------------------- /include/build/android/cpufeatures.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/cpufeatures.gypi -------------------------------------------------------------------------------- /include/build/android/create_standalone_apk_action.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/create_standalone_apk_action.gypi -------------------------------------------------------------------------------- /include/build/android/developer_recommended_flags.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/developer_recommended_flags.gypi -------------------------------------------------------------------------------- /include/build/android/dex_action.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/dex_action.gypi -------------------------------------------------------------------------------- /include/build/android/empty/src/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/empty/src/.keep -------------------------------------------------------------------------------- /include/build/android/empty_proguard.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/empty_proguard.flags -------------------------------------------------------------------------------- /include/build/android/enable_asserts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/enable_asserts.py -------------------------------------------------------------------------------- /include/build/android/envsetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/envsetup.sh -------------------------------------------------------------------------------- /include/build/android/envsetup_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/envsetup_functions.sh -------------------------------------------------------------------------------- /include/build/android/finalize_apk_action.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/finalize_apk_action.gypi -------------------------------------------------------------------------------- /include/build/android/findbugs_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/findbugs_diff.py -------------------------------------------------------------------------------- /include/build/android/findbugs_filter/findbugs_exclude.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/findbugs_filter/findbugs_exclude.xml -------------------------------------------------------------------------------- /include/build/android/findbugs_filter/findbugs_known_bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/findbugs_filter/findbugs_known_bugs.txt -------------------------------------------------------------------------------- /include/build/android/generate_emma_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/generate_emma_html.py -------------------------------------------------------------------------------- /include/build/android/gyp/ant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/ant.py -------------------------------------------------------------------------------- /include/build/android/gyp/apk_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/apk_install.py -------------------------------------------------------------------------------- /include/build/android/gyp/create_device_library_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/create_device_library_links.py -------------------------------------------------------------------------------- /include/build/android/gyp/create_native_libraries_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/create_native_libraries_header.py -------------------------------------------------------------------------------- /include/build/android/gyp/create_standalone_apk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/create_standalone_apk.py -------------------------------------------------------------------------------- /include/build/android/gyp/dex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/dex.py -------------------------------------------------------------------------------- /include/build/android/gyp/emma_instr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/emma_instr.py -------------------------------------------------------------------------------- /include/build/android/gyp/finalize_apk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/finalize_apk.py -------------------------------------------------------------------------------- /include/build/android/gyp/gcc_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/gcc_preprocess.py -------------------------------------------------------------------------------- /include/build/android/gyp/generate_v14_compatible_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/generate_v14_compatible_resources.py -------------------------------------------------------------------------------- /include/build/android/gyp/get_device_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/get_device_configuration.py -------------------------------------------------------------------------------- /include/build/android/gyp/jar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/jar.py -------------------------------------------------------------------------------- /include/build/android/gyp/jar_toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/jar_toc.py -------------------------------------------------------------------------------- /include/build/android/gyp/javac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/javac.py -------------------------------------------------------------------------------- /include/build/android/gyp/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/lint.py -------------------------------------------------------------------------------- /include/build/android/gyp/process_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/process_resources.py -------------------------------------------------------------------------------- /include/build/android/gyp/proguard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/proguard.py -------------------------------------------------------------------------------- /include/build/android/gyp/push_libraries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/push_libraries.py -------------------------------------------------------------------------------- /include/build/android/gyp/strip_library_for_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/strip_library_for_device.py -------------------------------------------------------------------------------- /include/build/android/gyp/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/util/__init__.py -------------------------------------------------------------------------------- /include/build/android/gyp/util/build_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/util/build_device.py -------------------------------------------------------------------------------- /include/build/android/gyp/util/build_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/util/build_utils.py -------------------------------------------------------------------------------- /include/build/android/gyp/util/md5_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/util/md5_check.py -------------------------------------------------------------------------------- /include/build/android/gyp/util/md5_check_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/util/md5_check_test.py -------------------------------------------------------------------------------- /include/build/android/gyp/write_ordered_libraries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/gyp/write_ordered_libraries.py -------------------------------------------------------------------------------- /include/build/android/host_heartbeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/host_heartbeat.py -------------------------------------------------------------------------------- /include/build/android/install_emulator_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/install_emulator_deps.py -------------------------------------------------------------------------------- /include/build/android/instr_action.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/instr_action.gypi -------------------------------------------------------------------------------- /include/build/android/java_cpp_template.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/java_cpp_template.gypi -------------------------------------------------------------------------------- /include/build/android/lighttpd_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/lighttpd_server.py -------------------------------------------------------------------------------- /include/build/android/lint/suppress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/lint/suppress.py -------------------------------------------------------------------------------- /include/build/android/lint/suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/lint/suppressions.xml -------------------------------------------------------------------------------- /include/build/android/lint_action.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/lint_action.gypi -------------------------------------------------------------------------------- /include/build/android/native_app_dependencies.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/native_app_dependencies.gypi -------------------------------------------------------------------------------- /include/build/android/provision_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/provision_devices.py -------------------------------------------------------------------------------- /include/build/android/push_libraries.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/push_libraries.gypi -------------------------------------------------------------------------------- /include/build/android/pylib/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/OWNERS -------------------------------------------------------------------------------- /include/build/android/pylib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/__init__.py -------------------------------------------------------------------------------- /include/build/android/pylib/android_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/android_commands.py -------------------------------------------------------------------------------- /include/build/android/pylib/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/base/__init__.py -------------------------------------------------------------------------------- /include/build/android/pylib/base/base_test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/base/base_test_result.py -------------------------------------------------------------------------------- /include/build/android/pylib/base/base_test_result_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/base/base_test_result_unittest.py -------------------------------------------------------------------------------- /include/build/android/pylib/base/base_test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/base/base_test_runner.py -------------------------------------------------------------------------------- /include/build/android/pylib/base/test_dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/base/test_dispatcher.py -------------------------------------------------------------------------------- /include/build/android/pylib/base/test_dispatcher_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/base/test_dispatcher_unittest.py -------------------------------------------------------------------------------- /include/build/android/pylib/chrome_test_server_spawner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/chrome_test_server_spawner.py -------------------------------------------------------------------------------- /include/build/android/pylib/cmd_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/cmd_helper.py -------------------------------------------------------------------------------- /include/build/android/pylib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/constants.py -------------------------------------------------------------------------------- /include/build/android/pylib/device/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/build/android/pylib/device/adb_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/device/adb_wrapper.py -------------------------------------------------------------------------------- /include/build/android/pylib/device/adb_wrapper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/device/adb_wrapper_test.py -------------------------------------------------------------------------------- /include/build/android/pylib/flag_changer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/flag_changer.py -------------------------------------------------------------------------------- /include/build/android/pylib/forwarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/forwarder.py -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/__init__.py -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/filter/OWNERS: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/filter/base_unittests_disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/filter/base_unittests_disabled -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/filter/base_unittests_emulator_additional_disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/filter/base_unittests_emulator_additional_disabled -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/filter/breakpad_unittests_disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/filter/breakpad_unittests_disabled -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/filter/content_browsertests_disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/filter/content_browsertests_disabled -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/filter/content_unittests_disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/filter/content_unittests_disabled -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/filter/ipc_tests_disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/filter/ipc_tests_disabled -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/filter/media_unittests_disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/filter/media_unittests_disabled -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/filter/net_unittests_disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/filter/net_unittests_disabled -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/filter/sync_unit_tests_disabled: -------------------------------------------------------------------------------- 1 | SyncHttpBridgeTest.* 2 | 3 | # crbug.com/144422 4 | OnDiskSyncableDirectory.FailInitialWrite 5 | -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/filter/ui_unittests_disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/filter/ui_unittests_disabled -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/filter/unit_tests_disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/filter/unit_tests_disabled -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/filter/webkit_unit_tests_disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/filter/webkit_unit_tests_disabled -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/gtest_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/gtest_config.py -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/setup.py -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/test_options.py -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/test_package.py -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/test_package_apk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/test_package_apk.py -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/test_package_exe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/test_package_exe.py -------------------------------------------------------------------------------- /include/build/android/pylib/gtest/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/gtest/test_runner.py -------------------------------------------------------------------------------- /include/build/android/pylib/host_driven/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/host_driven/__init__.py -------------------------------------------------------------------------------- /include/build/android/pylib/host_driven/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/host_driven/setup.py -------------------------------------------------------------------------------- /include/build/android/pylib/host_driven/test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/host_driven/test_case.py -------------------------------------------------------------------------------- /include/build/android/pylib/host_driven/test_info_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/host_driven/test_info_collection.py -------------------------------------------------------------------------------- /include/build/android/pylib/host_driven/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/host_driven/test_runner.py -------------------------------------------------------------------------------- /include/build/android/pylib/host_driven/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/host_driven/test_server.py -------------------------------------------------------------------------------- /include/build/android/pylib/host_driven/tests_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/host_driven/tests_annotations.py -------------------------------------------------------------------------------- /include/build/android/pylib/instrumentation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/instrumentation/__init__.py -------------------------------------------------------------------------------- /include/build/android/pylib/instrumentation/json_perf_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/instrumentation/json_perf_parser.py -------------------------------------------------------------------------------- /include/build/android/pylib/instrumentation/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/instrumentation/setup.py -------------------------------------------------------------------------------- /include/build/android/pylib/instrumentation/test_jar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/instrumentation/test_jar.py -------------------------------------------------------------------------------- /include/build/android/pylib/instrumentation/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/instrumentation/test_options.py -------------------------------------------------------------------------------- /include/build/android/pylib/instrumentation/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/instrumentation/test_package.py -------------------------------------------------------------------------------- /include/build/android/pylib/instrumentation/test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/instrumentation/test_result.py -------------------------------------------------------------------------------- /include/build/android/pylib/instrumentation/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/instrumentation/test_runner.py -------------------------------------------------------------------------------- /include/build/android/pylib/linker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/linker/__init__.py -------------------------------------------------------------------------------- /include/build/android/pylib/linker/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/linker/setup.py -------------------------------------------------------------------------------- /include/build/android/pylib/linker/test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/linker/test_case.py -------------------------------------------------------------------------------- /include/build/android/pylib/linker/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/linker/test_runner.py -------------------------------------------------------------------------------- /include/build/android/pylib/monkey/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/build/android/pylib/monkey/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/monkey/setup.py -------------------------------------------------------------------------------- /include/build/android/pylib/monkey/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/monkey/test_options.py -------------------------------------------------------------------------------- /include/build/android/pylib/monkey/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/monkey/test_runner.py -------------------------------------------------------------------------------- /include/build/android/pylib/perf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/perf/__init__.py -------------------------------------------------------------------------------- /include/build/android/pylib/perf/cache_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/perf/cache_control.py -------------------------------------------------------------------------------- /include/build/android/pylib/perf/perf_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/perf/perf_control.py -------------------------------------------------------------------------------- /include/build/android/pylib/perf/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/perf/setup.py -------------------------------------------------------------------------------- /include/build/android/pylib/perf/surface_stats_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/perf/surface_stats_collector.py -------------------------------------------------------------------------------- /include/build/android/pylib/perf/surface_stats_collector_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/perf/surface_stats_collector_unittest.py -------------------------------------------------------------------------------- /include/build/android/pylib/perf/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/perf/test_options.py -------------------------------------------------------------------------------- /include/build/android/pylib/perf/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/perf/test_runner.py -------------------------------------------------------------------------------- /include/build/android/pylib/perf/thermal_throttle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/perf/thermal_throttle.py -------------------------------------------------------------------------------- /include/build/android/pylib/pexpect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/pexpect.py -------------------------------------------------------------------------------- /include/build/android/pylib/ports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/ports.py -------------------------------------------------------------------------------- /include/build/android/pylib/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/screenshot.py -------------------------------------------------------------------------------- /include/build/android/pylib/system_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/system_properties.py -------------------------------------------------------------------------------- /include/build/android/pylib/uiautomator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/uiautomator/__init__.py -------------------------------------------------------------------------------- /include/build/android/pylib/uiautomator/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/uiautomator/setup.py -------------------------------------------------------------------------------- /include/build/android/pylib/uiautomator/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/uiautomator/test_options.py -------------------------------------------------------------------------------- /include/build/android/pylib/uiautomator/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/uiautomator/test_package.py -------------------------------------------------------------------------------- /include/build/android/pylib/uiautomator/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/uiautomator/test_runner.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/build/android/pylib/utils/apk_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/apk_helper.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/command_option_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/command_option_parser.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/emulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/emulator.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/findbugs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/findbugs.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/flakiness_dashboard_results_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/flakiness_dashboard_results_uploader.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/host_path_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/host_path_finder.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/repo_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/repo_utils.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/report_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/report_results.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/reraiser_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/reraiser_thread.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/reraiser_thread_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/reraiser_thread_unittest.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/run_tests_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/run_tests_helper.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/test_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/test_environment.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/test_options_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/test_options_parser.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/time_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/time_profile.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/timeout_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/timeout_retry.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/timeout_retry_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/timeout_retry_unittest.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/watchdog_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/watchdog_timer.py -------------------------------------------------------------------------------- /include/build/android/pylib/utils/xvfb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/utils/xvfb.py -------------------------------------------------------------------------------- /include/build/android/pylib/valgrind_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/pylib/valgrind_tools.py -------------------------------------------------------------------------------- /include/build/android/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/screenshot.py -------------------------------------------------------------------------------- /include/build/android/setup.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/setup.gyp -------------------------------------------------------------------------------- /include/build/android/strip_native_libraries.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/strip_native_libraries.gypi -------------------------------------------------------------------------------- /include/build/android/surface_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/surface_stats.py -------------------------------------------------------------------------------- /include/build/android/symbolize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/symbolize.py -------------------------------------------------------------------------------- /include/build/android/symbolize_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/symbolize_test.py -------------------------------------------------------------------------------- /include/build/android/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/test_runner.py -------------------------------------------------------------------------------- /include/build/android/tests/multiple_proguards/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/tests/multiple_proguards/AndroidManifest.xml -------------------------------------------------------------------------------- /include/build/android/tests/multiple_proguards/multiple_proguards.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/tests/multiple_proguards/multiple_proguards.gyp -------------------------------------------------------------------------------- /include/build/android/tests/multiple_proguards/proguard1.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/tests/multiple_proguards/proguard1.flags -------------------------------------------------------------------------------- /include/build/android/tests/multiple_proguards/proguard2.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/tests/multiple_proguards/proguard2.flags -------------------------------------------------------------------------------- /include/build/android/tests/multiple_proguards/src/dummy/DummyActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/tests/multiple_proguards/src/dummy/DummyActivity.java -------------------------------------------------------------------------------- /include/build/android/tests/symbolize/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/tests/symbolize/Makefile -------------------------------------------------------------------------------- /include/build/android/tests/symbolize/a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/tests/symbolize/a.cc -------------------------------------------------------------------------------- /include/build/android/tests/symbolize/b.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/tests/symbolize/b.cc -------------------------------------------------------------------------------- /include/build/android/tests/symbolize/liba.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/tests/symbolize/liba.so -------------------------------------------------------------------------------- /include/build/android/tests/symbolize/libb.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/tests/symbolize/libb.so -------------------------------------------------------------------------------- /include/build/android/tombstones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/tombstones.py -------------------------------------------------------------------------------- /include/build/android/update_verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/update_verification.py -------------------------------------------------------------------------------- /include/build/android/write_ordered_libraries.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/android/write_ordered_libraries.gypi -------------------------------------------------------------------------------- /include/build/apk_fake_jar.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/apk_fake_jar.gypi -------------------------------------------------------------------------------- /include/build/apk_test.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/apk_test.gypi -------------------------------------------------------------------------------- /include/build/apply_locales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/apply_locales.py -------------------------------------------------------------------------------- /include/build/asan.saves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/asan.saves -------------------------------------------------------------------------------- /include/build/branding_value.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/branding_value.sh -------------------------------------------------------------------------------- /include/build/build-ctags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/build-ctags.sh -------------------------------------------------------------------------------- /include/build/build_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/build_config.h -------------------------------------------------------------------------------- /include/build/chrome_settings.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/chrome_settings.gypi -------------------------------------------------------------------------------- /include/build/common.croc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/common.croc -------------------------------------------------------------------------------- /include/build/common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/common.gypi -------------------------------------------------------------------------------- /include/build/common_untrusted.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/common_untrusted.gypi -------------------------------------------------------------------------------- /include/build/compiler_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/compiler_version.py -------------------------------------------------------------------------------- /include/build/config/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/BUILD.gn -------------------------------------------------------------------------------- /include/build/config/BUILDCONFIG.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/BUILDCONFIG.gn -------------------------------------------------------------------------------- /include/build/config/OWNERS: -------------------------------------------------------------------------------- 1 | set noparent 2 | brettw@chromium.org 3 | -------------------------------------------------------------------------------- /include/build/config/android/config.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/android/config.gni -------------------------------------------------------------------------------- /include/build/config/arm.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/arm.gni -------------------------------------------------------------------------------- /include/build/config/clang/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/clang/BUILD.gn -------------------------------------------------------------------------------- /include/build/config/compiler/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/compiler/BUILD.gn -------------------------------------------------------------------------------- /include/build/config/ios/ios_sdk.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/ios/ios_sdk.gni -------------------------------------------------------------------------------- /include/build/config/ios/ios_sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/ios/ios_sdk.py -------------------------------------------------------------------------------- /include/build/config/linux/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/linux/BUILD.gn -------------------------------------------------------------------------------- /include/build/config/linux/pkg-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/linux/pkg-config.py -------------------------------------------------------------------------------- /include/build/config/linux/pkg_config.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/linux/pkg_config.gni -------------------------------------------------------------------------------- /include/build/config/linux/sysroot_ld_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/linux/sysroot_ld_path.py -------------------------------------------------------------------------------- /include/build/config/mac/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/mac/BUILD.gn -------------------------------------------------------------------------------- /include/build/config/mac/mac_sdk.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/mac/mac_sdk.gni -------------------------------------------------------------------------------- /include/build/config/sysroot.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/sysroot.gni -------------------------------------------------------------------------------- /include/build/config/win/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/win/BUILD.gn -------------------------------------------------------------------------------- /include/build/config/win/get_msvc_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/win/get_msvc_config.py -------------------------------------------------------------------------------- /include/build/config/win/get_msvc_config_real.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/win/get_msvc_config_real.py -------------------------------------------------------------------------------- /include/build/config/win/get_visual_studio_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/win/get_visual_studio_path.py -------------------------------------------------------------------------------- /include/build/config/win/visual_studio_version.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/config/win/visual_studio_version.gni -------------------------------------------------------------------------------- /include/build/copy_test_data_ios.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/copy_test_data_ios.gypi -------------------------------------------------------------------------------- /include/build/copy_test_data_ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/copy_test_data_ios.py -------------------------------------------------------------------------------- /include/build/cp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/cp.py -------------------------------------------------------------------------------- /include/build/dir_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/dir_exists.py -------------------------------------------------------------------------------- /include/build/download_nacl_toolchains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/download_nacl_toolchains.py -------------------------------------------------------------------------------- /include/build/env_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/env_dump.py -------------------------------------------------------------------------------- /include/build/escape_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/escape_unicode.py -------------------------------------------------------------------------------- /include/build/extract_from_cab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/extract_from_cab.py -------------------------------------------------------------------------------- /include/build/filename_rules.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/filename_rules.gypi -------------------------------------------------------------------------------- /include/build/gdb-add-index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/gdb-add-index -------------------------------------------------------------------------------- /include/build/get_landmines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/get_landmines.py -------------------------------------------------------------------------------- /include/build/git-hooks/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/git-hooks/OWNERS -------------------------------------------------------------------------------- /include/build/git-hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/git-hooks/pre-commit -------------------------------------------------------------------------------- /include/build/grit_action.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/grit_action.gypi -------------------------------------------------------------------------------- /include/build/grit_target.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/grit_target.gypi -------------------------------------------------------------------------------- /include/build/gyp_chromium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/gyp_chromium -------------------------------------------------------------------------------- /include/build/gyp_chromium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/gyp_chromium.py -------------------------------------------------------------------------------- /include/build/gyp_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/gyp_helper.py -------------------------------------------------------------------------------- /include/build/install-build-deps-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/install-build-deps-android.sh -------------------------------------------------------------------------------- /include/build/install-build-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/install-build-deps.sh -------------------------------------------------------------------------------- /include/build/install-chroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/install-chroot.sh -------------------------------------------------------------------------------- /include/build/internal/README.chromium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/internal/README.chromium -------------------------------------------------------------------------------- /include/build/internal/release_defaults.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/internal/release_defaults.gypi -------------------------------------------------------------------------------- /include/build/internal/release_impl.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/internal/release_impl.gypi -------------------------------------------------------------------------------- /include/build/internal/release_impl_official.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/internal/release_impl_official.gypi -------------------------------------------------------------------------------- /include/build/intsafe_workaround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/intsafe_workaround.h -------------------------------------------------------------------------------- /include/build/ios/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/ios/PRESUBMIT.py -------------------------------------------------------------------------------- /include/build/ios/chrome_ios.croc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/ios/chrome_ios.croc -------------------------------------------------------------------------------- /include/build/ios/clean_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/ios/clean_env.py -------------------------------------------------------------------------------- /include/build/ios/grit_whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/ios/grit_whitelist.txt -------------------------------------------------------------------------------- /include/build/ios/mac_build.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/ios/mac_build.gypi -------------------------------------------------------------------------------- /include/build/isolate.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/isolate.gypi -------------------------------------------------------------------------------- /include/build/jar_file_jni_generator.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/jar_file_jni_generator.gypi -------------------------------------------------------------------------------- /include/build/java.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/java.gypi -------------------------------------------------------------------------------- /include/build/java_aidl.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/java_aidl.gypi -------------------------------------------------------------------------------- /include/build/java_apk.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/java_apk.gypi -------------------------------------------------------------------------------- /include/build/java_prebuilt.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/java_prebuilt.gypi -------------------------------------------------------------------------------- /include/build/jni_generator.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/jni_generator.gypi -------------------------------------------------------------------------------- /include/build/json_schema_bundle_compile.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/json_schema_bundle_compile.gypi -------------------------------------------------------------------------------- /include/build/json_schema_compile.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/json_schema_compile.gypi -------------------------------------------------------------------------------- /include/build/json_to_struct.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/json_to_struct.gypi -------------------------------------------------------------------------------- /include/build/landmine_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/landmine_utils.py -------------------------------------------------------------------------------- /include/build/landmines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/landmines.py -------------------------------------------------------------------------------- /include/build/linux/bin/eu-strip.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/bin/eu-strip.sha1 -------------------------------------------------------------------------------- /include/build/linux/chrome_linux.croc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/chrome_linux.croc -------------------------------------------------------------------------------- /include/build/linux/dump_app_syms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/dump_app_syms -------------------------------------------------------------------------------- /include/build/linux/install-arm-sysroot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/install-arm-sysroot.py -------------------------------------------------------------------------------- /include/build/linux/install-chromeos-fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/install-chromeos-fonts.py -------------------------------------------------------------------------------- /include/build/linux/pkg-config-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/pkg-config-wrapper -------------------------------------------------------------------------------- /include/build/linux/python_arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/python_arch.sh -------------------------------------------------------------------------------- /include/build/linux/rewrite_dirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/rewrite_dirs.py -------------------------------------------------------------------------------- /include/build/linux/sysroot_ld_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/sysroot_ld_path.sh -------------------------------------------------------------------------------- /include/build/linux/system.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/system.gyp -------------------------------------------------------------------------------- /include/build/linux/system.isolate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/system.isolate -------------------------------------------------------------------------------- /include/build/linux/unbundle/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/README -------------------------------------------------------------------------------- /include/build/linux/unbundle/expat.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/expat.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/ffmpeg.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/ffmpeg.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/flac.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/flac.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/harfbuzz.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/harfbuzz.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/icu.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/icu.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/jsoncpp.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/jsoncpp.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/libevent.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/libevent.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/libjpeg.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/libjpeg.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/libpng.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/libpng.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/libusb.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/libusb.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/libvpx.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/libvpx.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/libwebp.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/libwebp.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/libxml.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/libxml.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/libxslt.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/libxslt.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/openssl.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/openssl.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/opus.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/opus.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/re2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/re2.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/remove_bundled_libraries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/remove_bundled_libraries.py -------------------------------------------------------------------------------- /include/build/linux/unbundle/replace_gyp_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/replace_gyp_files.py -------------------------------------------------------------------------------- /include/build/linux/unbundle/snappy.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/snappy.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/speex.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/speex.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/sqlite.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/sqlite.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/v8.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/v8.gyp -------------------------------------------------------------------------------- /include/build/linux/unbundle/zlib.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/linux/unbundle/zlib.gyp -------------------------------------------------------------------------------- /include/build/mac/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/mac/OWNERS -------------------------------------------------------------------------------- /include/build/mac/asan.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/mac/asan.gyp -------------------------------------------------------------------------------- /include/build/mac/change_mach_o_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/mac/change_mach_o_flags.py -------------------------------------------------------------------------------- /include/build/mac/change_mach_o_flags_from_xcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/mac/change_mach_o_flags_from_xcode.sh -------------------------------------------------------------------------------- /include/build/mac/chrome_mac.croc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/mac/chrome_mac.croc -------------------------------------------------------------------------------- /include/build/mac/copy_asan_runtime_dylib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/mac/copy_asan_runtime_dylib.sh -------------------------------------------------------------------------------- /include/build/mac/copy_framework_unversioned.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/mac/copy_framework_unversioned.sh -------------------------------------------------------------------------------- /include/build/mac/edit_xibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/mac/edit_xibs.sh -------------------------------------------------------------------------------- /include/build/mac/find_sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/mac/find_sdk.py -------------------------------------------------------------------------------- /include/build/mac/make_more_helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/mac/make_more_helpers.sh -------------------------------------------------------------------------------- /include/build/mac/strip_from_xcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/mac/strip_from_xcode -------------------------------------------------------------------------------- /include/build/mac/strip_save_dsym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/mac/strip_save_dsym -------------------------------------------------------------------------------- /include/build/mac/tweak_info_plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/mac/tweak_info_plist.py -------------------------------------------------------------------------------- /include/build/mac/verify_no_objc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/mac/verify_no_objc.sh -------------------------------------------------------------------------------- /include/build/nocompile.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/nocompile.gypi -------------------------------------------------------------------------------- /include/build/output_dll_copy.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/output_dll_copy.rules -------------------------------------------------------------------------------- /include/build/precompile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/precompile.cc -------------------------------------------------------------------------------- /include/build/precompile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/precompile.h -------------------------------------------------------------------------------- /include/build/protoc.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/protoc.gypi -------------------------------------------------------------------------------- /include/build/protoc_java.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/protoc_java.gypi -------------------------------------------------------------------------------- /include/build/protoc_java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/protoc_java.py -------------------------------------------------------------------------------- /include/build/release.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/release.gypi -------------------------------------------------------------------------------- /include/build/sanitize-mac-build-log.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/sanitize-mac-build-log.sed -------------------------------------------------------------------------------- /include/build/sanitize-mac-build-log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/sanitize-mac-build-log.sh -------------------------------------------------------------------------------- /include/build/sanitize-win-build-log.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/sanitize-win-build-log.sed -------------------------------------------------------------------------------- /include/build/sanitize-win-build-log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/sanitize-win-build-log.sh -------------------------------------------------------------------------------- /include/build/shim_headers.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/shim_headers.gypi -------------------------------------------------------------------------------- /include/build/slave/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/slave/OWNERS -------------------------------------------------------------------------------- /include/build/slave/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/slave/README -------------------------------------------------------------------------------- /include/build/some.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/some.gyp -------------------------------------------------------------------------------- /include/build/symlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/symlink.py -------------------------------------------------------------------------------- /include/build/temp_gyp/README.chromium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/temp_gyp/README.chromium -------------------------------------------------------------------------------- /include/build/temp_gyp/pdfsqueeze.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/temp_gyp/pdfsqueeze.gyp -------------------------------------------------------------------------------- /include/build/toolchain/OWNERS: -------------------------------------------------------------------------------- 1 | set noparent 2 | brettw@chromium.org 3 | -------------------------------------------------------------------------------- /include/build/toolchain/android/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/toolchain/android/BUILD.gn -------------------------------------------------------------------------------- /include/build/toolchain/android/find_android_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/toolchain/android/find_android_compiler.py -------------------------------------------------------------------------------- /include/build/toolchain/clang.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/toolchain/clang.gni -------------------------------------------------------------------------------- /include/build/toolchain/gcc_toolchain.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/toolchain/gcc_toolchain.gni -------------------------------------------------------------------------------- /include/build/toolchain/get_default_posix_goma_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/toolchain/get_default_posix_goma_dir.py -------------------------------------------------------------------------------- /include/build/toolchain/goma.gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/toolchain/goma.gni -------------------------------------------------------------------------------- /include/build/toolchain/linux/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/toolchain/linux/BUILD.gn -------------------------------------------------------------------------------- /include/build/toolchain/mac/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/toolchain/mac/BUILD.gn -------------------------------------------------------------------------------- /include/build/toolchain/mac/setup_toolchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/toolchain/mac/setup_toolchain.py -------------------------------------------------------------------------------- /include/build/toolchain/nacl/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/toolchain/nacl/BUILD.gn -------------------------------------------------------------------------------- /include/build/toolchain/win/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/toolchain/win/BUILD.gn -------------------------------------------------------------------------------- /include/build/toolchain/win/setup_toolchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/toolchain/win/setup_toolchain.py -------------------------------------------------------------------------------- /include/build/tree_truth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/tree_truth.sh -------------------------------------------------------------------------------- /include/build/uiautomator_test.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/uiautomator_test.gypi -------------------------------------------------------------------------------- /include/build/update-linux-sandbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/update-linux-sandbox.sh -------------------------------------------------------------------------------- /include/build/util/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/util/BUILD.gn -------------------------------------------------------------------------------- /include/build/util/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/util/OWNERS -------------------------------------------------------------------------------- /include/build/util/lastchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/util/lastchange.py -------------------------------------------------------------------------------- /include/build/util/lib/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/build/util/lib/common/perf_result_data_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/util/lib/common/perf_result_data_type.py -------------------------------------------------------------------------------- /include/build/util/lib/common/perf_tests_results_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/util/lib/common/perf_tests_results_helper.py -------------------------------------------------------------------------------- /include/build/util/lib/common/unittest_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/util/lib/common/unittest_util.py -------------------------------------------------------------------------------- /include/build/util/lib/common/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/util/lib/common/util.py -------------------------------------------------------------------------------- /include/build/whitespace_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/whitespace_file.txt -------------------------------------------------------------------------------- /include/build/win/chrome_win.croc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/win/chrome_win.croc -------------------------------------------------------------------------------- /include/build/win/compatibility.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/win/compatibility.manifest -------------------------------------------------------------------------------- /include/build/win/importlibs/create_import_lib.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/win/importlibs/create_import_lib.gypi -------------------------------------------------------------------------------- /include/build/win/importlibs/create_importlib_win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/win/importlibs/create_importlib_win.py -------------------------------------------------------------------------------- /include/build/win/importlibs/filter_export_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/win/importlibs/filter_export_list.py -------------------------------------------------------------------------------- /include/build/win/importlibs/x86/user32.winxp.imports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/win/importlibs/x86/user32.winxp.imports -------------------------------------------------------------------------------- /include/build/win/importlibs/x86/user32.winxp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/win/importlibs/x86/user32.winxp.lib -------------------------------------------------------------------------------- /include/build/win/install-build-deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/win/install-build-deps.py -------------------------------------------------------------------------------- /include/build/win/reorder-imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/win/reorder-imports.py -------------------------------------------------------------------------------- /include/build/win/setup_cygwin_mount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/win/setup_cygwin_mount.py -------------------------------------------------------------------------------- /include/build/win_precompile.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/build/win_precompile.gypi -------------------------------------------------------------------------------- /include/gestures/include/accel_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/accel_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/activity_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/activity_log.h -------------------------------------------------------------------------------- /include/gestures/include/activity_replay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/activity_replay.h -------------------------------------------------------------------------------- /include/gestures/include/box_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/box_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/click_wiggle_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/click_wiggle_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/command_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/command_line.h -------------------------------------------------------------------------------- /include/gestures/include/compiler_specific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/compiler_specific.h -------------------------------------------------------------------------------- /include/gestures/include/cr48_profile_sensor_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/cr48_profile_sensor_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/eintr_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/eintr_wrapper.h -------------------------------------------------------------------------------- /include/gestures/include/file_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/file_util.h -------------------------------------------------------------------------------- /include/gestures/include/filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/finger_merge_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/finger_merge_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/finger_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/finger_metrics.h -------------------------------------------------------------------------------- /include/gestures/include/fling_stop_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/fling_stop_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/fling_to_scroll_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/fling_to_scroll_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/gestures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/gestures.h -------------------------------------------------------------------------------- /include/gestures/include/iir_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/iir_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/immediate_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/immediate_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/integral_gesture_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/integral_gesture_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/list.h -------------------------------------------------------------------------------- /include/gestures/include/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/logging.h -------------------------------------------------------------------------------- /include/gestures/include/logging_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/logging_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/lookahead_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/lookahead_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/macros.h -------------------------------------------------------------------------------- /include/gestures/include/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/map.h -------------------------------------------------------------------------------- /include/gestures/include/memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/memory_manager.h -------------------------------------------------------------------------------- /include/gestures/include/metrics_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/metrics_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/mouse_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/mouse_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/multitouch_mouse_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/multitouch_mouse_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/non_linearity_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/non_linearity_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/palm_classifying_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/palm_classifying_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/prop_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/prop_registry.h -------------------------------------------------------------------------------- /include/gestures/include/scaling_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/scaling_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/sensor_jump_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/sensor_jump_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/set.h -------------------------------------------------------------------------------- /include/gestures/include/split_correcting_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/split_correcting_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/stationary_wiggle_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/stationary_wiggle_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/string_util.h -------------------------------------------------------------------------------- /include/gestures/include/stuck_button_inhibitor_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/stuck_button_inhibitor_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/t5r2_correcting_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/t5r2_correcting_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/trace_marker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/trace_marker.h -------------------------------------------------------------------------------- /include/gestures/include/tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/tracer.h -------------------------------------------------------------------------------- /include/gestures/include/trend_classifying_filter_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/trend_classifying_filter_interpreter.h -------------------------------------------------------------------------------- /include/gestures/include/unittest_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/unittest_util.h -------------------------------------------------------------------------------- /include/gestures/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/util.h -------------------------------------------------------------------------------- /include/gestures/include/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gestures/include/vector.h -------------------------------------------------------------------------------- /include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/gtest.h -------------------------------------------------------------------------------- /include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /libgestures.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/libgestures.pc -------------------------------------------------------------------------------- /lid_touchpad_helper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/lid_touchpad_helper/Makefile -------------------------------------------------------------------------------- /lid_touchpad_helper/etc/init/lid_touchpad_helper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/lid_touchpad_helper/etc/init/lid_touchpad_helper.conf -------------------------------------------------------------------------------- /lid_touchpad_helper/lid_touchpad_helper.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/lid_touchpad_helper/lid_touchpad_helper.conf -------------------------------------------------------------------------------- /lid_touchpad_helper/lid_touchpad_helper_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/lid_touchpad_helper/lid_touchpad_helper_main.cc -------------------------------------------------------------------------------- /src/accel_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/accel_filter_interpreter.cc -------------------------------------------------------------------------------- /src/accel_filter_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/accel_filter_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/activity_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/activity_log.cc -------------------------------------------------------------------------------- /src/activity_log_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/activity_log_unittest.cc -------------------------------------------------------------------------------- /src/activity_replay.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/activity_replay.cc -------------------------------------------------------------------------------- /src/activity_replay_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/activity_replay_unittest.cc -------------------------------------------------------------------------------- /src/box_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/box_filter_interpreter.cc -------------------------------------------------------------------------------- /src/box_filter_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/box_filter_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/click_wiggle_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/click_wiggle_filter_interpreter.cc -------------------------------------------------------------------------------- /src/click_wiggle_filter_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/click_wiggle_filter_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/command_line.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/command_line.cc -------------------------------------------------------------------------------- /src/cr48_profile_sensor_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/cr48_profile_sensor_filter_interpreter.cc -------------------------------------------------------------------------------- /src/cr48_profile_sensor_filter_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/cr48_profile_sensor_filter_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/file_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/file_util.cc -------------------------------------------------------------------------------- /src/filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/filter_interpreter.cc -------------------------------------------------------------------------------- /src/finger_merge_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/finger_merge_filter_interpreter.cc -------------------------------------------------------------------------------- /src/finger_metrics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/finger_metrics.cc -------------------------------------------------------------------------------- /src/fling_stop_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/fling_stop_filter_interpreter.cc -------------------------------------------------------------------------------- /src/fling_stop_filter_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/fling_stop_filter_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/fling_to_scroll_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/fling_to_scroll_filter_interpreter.cc -------------------------------------------------------------------------------- /src/gestures.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/gestures.cc -------------------------------------------------------------------------------- /src/gestures_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/gestures_unittest.cc -------------------------------------------------------------------------------- /src/iir_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/iir_filter_interpreter.cc -------------------------------------------------------------------------------- /src/iir_filter_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/iir_filter_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/immediate_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/immediate_interpreter.cc -------------------------------------------------------------------------------- /src/immediate_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/immediate_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/integral_gesture_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/integral_gesture_filter_interpreter.cc -------------------------------------------------------------------------------- /src/integral_gesture_filter_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/integral_gesture_filter_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/interpreter.cc -------------------------------------------------------------------------------- /src/interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/interpreter_unittest.cc -------------------------------------------------------------------------------- /src/json_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/json_reader.cpp -------------------------------------------------------------------------------- /src/json_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/json_value.cpp -------------------------------------------------------------------------------- /src/list_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/list_unittest.cc -------------------------------------------------------------------------------- /src/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/log.cc -------------------------------------------------------------------------------- /src/logging_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/logging_filter_interpreter.cc -------------------------------------------------------------------------------- /src/logging_filter_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/logging_filter_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/lookahead_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/lookahead_filter_interpreter.cc -------------------------------------------------------------------------------- /src/lookahead_filter_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/lookahead_filter_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/map_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/map_unittest.cc -------------------------------------------------------------------------------- /src/metrics_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/metrics_filter_interpreter.cc -------------------------------------------------------------------------------- /src/mouse_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/mouse_interpreter.cc -------------------------------------------------------------------------------- /src/mouse_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/mouse_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/multitouch_mouse_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/multitouch_mouse_interpreter.cc -------------------------------------------------------------------------------- /src/multitouch_mouse_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/multitouch_mouse_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/non_linearity_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/non_linearity_filter_interpreter.cc -------------------------------------------------------------------------------- /src/non_linearity_filter_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/non_linearity_filter_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/palm_classifying_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/palm_classifying_filter_interpreter.cc -------------------------------------------------------------------------------- /src/palm_classifying_filter_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/palm_classifying_filter_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/prop_registry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/prop_registry.cc -------------------------------------------------------------------------------- /src/prop_registry_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/prop_registry_unittest.cc -------------------------------------------------------------------------------- /src/scaling_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/scaling_filter_interpreter.cc -------------------------------------------------------------------------------- /src/scaling_filter_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/scaling_filter_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/sensor_jump_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/sensor_jump_filter_interpreter.cc -------------------------------------------------------------------------------- /src/sensor_jump_filter_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/sensor_jump_filter_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/set_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/set_unittest.cc -------------------------------------------------------------------------------- /src/split_correcting_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/split_correcting_filter_interpreter.cc -------------------------------------------------------------------------------- /src/split_correcting_filter_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/split_correcting_filter_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/stationary_wiggle_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/stationary_wiggle_filter_interpreter.cc -------------------------------------------------------------------------------- /src/string_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/string_util.cc -------------------------------------------------------------------------------- /src/stuck_button_inhibitor_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/stuck_button_inhibitor_filter_interpreter.cc -------------------------------------------------------------------------------- /src/stuck_button_inhibitor_filter_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/stuck_button_inhibitor_filter_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/t5r2_correcting_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/t5r2_correcting_filter_interpreter.cc -------------------------------------------------------------------------------- /src/t5r2_correcting_filter_interpreter_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/t5r2_correcting_filter_interpreter_unittest.cc -------------------------------------------------------------------------------- /src/test_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/test_main.cc -------------------------------------------------------------------------------- /src/trace_marker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/trace_marker.cc -------------------------------------------------------------------------------- /src/trace_marker_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/trace_marker_unittest.cc -------------------------------------------------------------------------------- /src/tracer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/tracer.cc -------------------------------------------------------------------------------- /src/tracer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/tracer_unittest.cc -------------------------------------------------------------------------------- /src/trend_classifying_filter_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/trend_classifying_filter_interpreter.cc -------------------------------------------------------------------------------- /src/unittest_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/unittest_util.cc -------------------------------------------------------------------------------- /src/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/util.cc -------------------------------------------------------------------------------- /src/util_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/util_unittest.cc -------------------------------------------------------------------------------- /src/vector_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/src/vector_unittest.cc -------------------------------------------------------------------------------- /tools/local_coverage_rate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/tools/local_coverage_rate.sh -------------------------------------------------------------------------------- /tools/logs/cr48/cursor_freeze.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/tools/logs/cr48/cursor_freeze.dat -------------------------------------------------------------------------------- /tools/logs/cr48/report-291598177-system_logs.mini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/tools/logs/cr48/report-291598177-system_logs.mini.txt -------------------------------------------------------------------------------- /tools/logs/cr48/report-291598469-system_logs.mini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/tools/logs/cr48/report-291598469-system_logs.mini.txt -------------------------------------------------------------------------------- /tools/regression_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/tools/regression_test.sh -------------------------------------------------------------------------------- /tools/replay_log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/tools/replay_log -------------------------------------------------------------------------------- /tools/tplog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugegreenbug/libgestures/HEAD/tools/tplog.py --------------------------------------------------------------------------------