├── .bazelrc ├── .bazelversion ├── .gitignore ├── .gitmodules ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── WORKSPACE ├── base ├── BUILD ├── build_info.c ├── build_info.h ├── init.cc └── init.h ├── examples ├── BUILD ├── asan │ ├── BUILD │ ├── leak.cc │ └── use-after-free.cc ├── hello.cc ├── hello_test.cc ├── rpc │ ├── BUILD │ ├── bank-client.cc │ ├── bank-server.cc │ ├── bank.proto │ └── helloworld │ │ ├── BUILD │ │ ├── README.md │ │ ├── greeter_async_client.cc │ │ ├── greeter_async_server.cc │ │ ├── greeter_client.cc │ │ ├── greeter_server.cc │ │ ├── helloworld.proto │ │ └── java │ │ └── io │ │ └── grpc │ │ └── examples │ │ └── helloworld │ │ ├── HelloWorldClient.java │ │ └── HelloWorldServer.java └── run_under │ ├── BUILD │ └── env.py ├── install-bazel.sh ├── third_party ├── boost │ └── BUILD ├── boringssl │ ├── BUILD │ ├── BUILD.generated.bzl │ ├── BUILD.generated_tests.bzl │ ├── err_data.c │ ├── linux-aarch64 │ │ └── crypto │ │ │ ├── aes │ │ │ ├── aesv8-armx.S │ │ │ └── aesv8-armx64.S │ │ │ ├── bn │ │ │ └── armv8-mont.S │ │ │ ├── modes │ │ │ ├── ghashv8-armx.S │ │ │ └── ghashv8-armx64.S │ │ │ └── sha │ │ │ ├── sha1-armv8.S │ │ │ ├── sha256-armv8.S │ │ │ └── sha512-armv8.S │ ├── linux-arm │ │ └── crypto │ │ │ ├── aes │ │ │ ├── aes-armv4.S │ │ │ ├── aesv8-armx.S │ │ │ ├── aesv8-armx32.S │ │ │ └── bsaes-armv7.S │ │ │ ├── bn │ │ │ └── armv4-mont.S │ │ │ ├── modes │ │ │ ├── ghash-armv4.S │ │ │ ├── ghashv8-armx.S │ │ │ └── ghashv8-armx32.S │ │ │ └── sha │ │ │ ├── sha1-armv4-large.S │ │ │ ├── sha256-armv4.S │ │ │ └── sha512-armv4.S │ ├── linux-x86 │ │ └── crypto │ │ │ ├── aes │ │ │ ├── aes-586.S │ │ │ ├── aesni-x86.S │ │ │ └── vpaes-x86.S │ │ │ ├── bn │ │ │ ├── bn-586.S │ │ │ ├── co-586.S │ │ │ └── x86-mont.S │ │ │ ├── cpu-x86-asm.S │ │ │ ├── md5 │ │ │ └── md5-586.S │ │ │ ├── modes │ │ │ └── ghash-x86.S │ │ │ ├── rc4 │ │ │ └── rc4-586.S │ │ │ └── sha │ │ │ ├── sha1-586.S │ │ │ ├── sha256-586.S │ │ │ └── sha512-586.S │ └── linux-x86_64 │ │ └── crypto │ │ ├── aes │ │ ├── aes-x86_64.S │ │ ├── aesni-x86_64.S │ │ ├── bsaes-x86_64.S │ │ └── vpaes-x86_64.S │ │ ├── bn │ │ ├── rsaz-avx2.S │ │ ├── rsaz-x86_64.S │ │ ├── x86_64-mont.S │ │ └── x86_64-mont5.S │ │ ├── cpu-x86_64-asm.S │ │ ├── ec │ │ └── p256-x86_64-asm.S │ │ ├── md5 │ │ └── md5-x86_64.S │ │ ├── modes │ │ ├── aesni-gcm-x86_64.S │ │ └── ghash-x86_64.S │ │ ├── rand │ │ └── rdrand-x86_64.S │ │ ├── rc4 │ │ ├── rc4-md5-x86_64.S │ │ └── rc4-x86_64.S │ │ └── sha │ │ ├── sha1-x86_64.S │ │ ├── sha256-x86_64.S │ │ └── sha512-x86_64.S ├── cares │ ├── ares_build.h │ ├── cares.BUILD │ ├── config_darwin │ │ └── ares_config.h │ └── config_linux │ │ └── ares_config.h ├── chromium_browser_clang │ ├── BUILD │ ├── CROSSTOOL │ └── get_latest.py ├── clang_toolchain │ ├── BUILD │ ├── cc_configure_clang.bzl │ └── download_clang.bzl ├── folly │ ├── BUILD │ └── linux-k8 │ │ └── folly │ │ └── folly-config.h ├── gflags │ ├── BUILD │ └── gflags_build │ │ └── k8 │ │ └── include │ │ └── gflags │ │ ├── config.h │ │ ├── gflags.h │ │ ├── gflags_completions.h │ │ ├── gflags_declare.h │ │ └── gflags_gflags.h ├── glog │ └── glog_build │ │ └── k8 │ │ ├── include │ │ └── glog │ │ │ ├── logging.h │ │ │ ├── raw_logging.h │ │ │ ├── stl_logging.h │ │ │ └── vlog_is_on.h │ │ └── src │ │ └── config.h ├── gmock │ └── BUILD ├── gperftools │ ├── BUILD │ ├── linux-x86_64 │ │ └── src │ │ │ ├── config.h │ │ │ └── gperftools │ │ │ └── tcmalloc.h │ └── runtest.sh ├── http-parser │ └── BUILD ├── icu │ ├── BUILD │ ├── icupkg.inc.x86_64 │ ├── my-config.sh │ └── test │ │ ├── BUILD │ │ ├── README │ │ ├── gtest_UnicodeString.cpp │ │ └── test_icu.cpp ├── ijar │ ├── BUILD │ ├── LICENSE │ ├── README.txt │ ├── classfile.cc │ ├── common.h │ ├── ijar.cc │ ├── test │ │ ├── A.java │ │ ├── AnnotatedClass.java │ │ ├── Annotations.java │ │ ├── B.java │ │ ├── BUILD │ │ ├── DeprecatedParts.java │ │ ├── DumbClass.java │ │ ├── EnclosingMethod.java │ │ ├── IjarTests.java │ │ ├── Object.java │ │ ├── PrivateMembersClass.java │ │ ├── PrivateNestedClass.java │ │ ├── StripVerifyingVisitor.java │ │ ├── TypeAnnotationTest2.java │ │ ├── UseDeprecatedParts.java │ │ ├── UseRestrictedAnnotation.java │ │ ├── WellCompressed1.java │ │ ├── WellCompressed2.java │ │ ├── ijar_test.sh │ │ ├── invokedynamic │ │ │ └── ClassWithLambda.java │ │ ├── libwrongcentraldir.jar │ │ ├── package-info.java │ │ ├── testenv.sh │ │ ├── typeannotations2 │ │ │ ├── NonNull.java │ │ │ ├── Nullable.java │ │ │ ├── Util.java │ │ │ └── java │ │ │ │ └── lang │ │ │ │ └── annotation │ │ │ │ └── ElementType.java │ │ └── zip_test.sh │ ├── zip.cc │ ├── zip.h │ └── zip_main.cc ├── java │ ├── animal-sniffer │ │ └── BUILD │ ├── commons-logging │ │ └── BUILD │ ├── grpc-java │ │ └── BUILD │ ├── guava │ │ └── BUILD │ ├── j2objc │ │ └── BUILD │ ├── javassist │ │ └── BUILD │ ├── jdk │ │ └── langtools │ │ │ ├── BUILD │ │ │ └── javac.jar │ ├── jsr305 │ │ ├── BUILD │ │ ├── LICENSE │ │ └── jsr-305.jar │ ├── log4j │ │ └── BUILD │ ├── slf4j │ │ └── BUILD │ └── twitter-commons │ │ └── BUILD ├── jemalloc │ ├── BUILD │ ├── gen_public_symbols.sh │ └── k8 │ │ └── include │ │ └── jemalloc │ │ ├── internal │ │ ├── jemalloc_internal_defs.h │ │ ├── jemalloc_preamble.h │ │ ├── private_namespace.gen.h │ │ ├── private_namespace.h │ │ ├── public_namespace.h │ │ ├── public_symbols.txt │ │ └── public_unnamespace.h │ │ ├── jemalloc.h │ │ ├── jemalloc_defs.h │ │ ├── jemalloc_macros.h │ │ ├── jemalloc_mangle.h │ │ ├── jemalloc_mangle_jet.h │ │ ├── jemalloc_protos.h │ │ ├── jemalloc_protos_jet.h │ │ ├── jemalloc_rename.h │ │ └── jemalloc_typedefs.h ├── libco │ └── BUILD ├── libevent │ ├── BUILD │ └── linux-k8 │ │ ├── event-config.h │ │ └── internal │ │ └── config.h ├── libunwind │ ├── BUILD │ └── libunwind_build │ │ └── k8 │ │ └── include │ │ ├── libunwind-common.h │ │ ├── libunwind.h │ │ ├── private │ │ └── config.h │ │ └── tdep │ │ └── libunwind_i.h ├── openssl │ ├── BUILD │ ├── BUILD.generated.bzl │ ├── generate_build_files.py │ └── linux-x86_64 │ │ ├── crypto │ │ ├── aes │ │ │ └── asm │ │ │ │ ├── aes-x86_64.S │ │ │ │ ├── aesni-mb-x86_64.S │ │ │ │ ├── aesni-sha1-x86_64.S │ │ │ │ ├── aesni-sha256-x86_64.S │ │ │ │ ├── aesni-x86_64.S │ │ │ │ ├── bsaes-x86_64.S │ │ │ │ └── vpaes-x86_64.S │ │ ├── bn │ │ │ └── asm │ │ │ │ ├── rsaz-avx2.S │ │ │ │ ├── rsaz-x86_64.S │ │ │ │ ├── x86_64-gf2m.S │ │ │ │ ├── x86_64-mont.S │ │ │ │ └── x86_64-mont5.S │ │ ├── camellia │ │ │ └── asm │ │ │ │ └── cmll-x86_64.S │ │ ├── ec │ │ │ └── asm │ │ │ │ └── ecp_nistz256-x86_64.S │ │ ├── md5 │ │ │ └── asm │ │ │ │ └── md5-x86_64.S │ │ ├── modes │ │ │ └── asm │ │ │ │ ├── aesni-gcm-x86_64.S │ │ │ │ └── ghash-x86_64.S │ │ ├── rc4 │ │ │ └── asm │ │ │ │ ├── rc4-md5-x86_64.S │ │ │ │ └── rc4-x86_64.S │ │ ├── sha │ │ │ └── asm │ │ │ │ ├── sha1-mb-x86_64.S │ │ │ │ ├── sha1-x86_64.S │ │ │ │ ├── sha256-mb-x86_64.S │ │ │ │ ├── sha256-x86_64.S │ │ │ │ └── sha512-x86_64.S │ │ ├── whrlpool │ │ │ └── asm │ │ │ │ └── wp-x86_64.S │ │ └── x86_64cpuid.S │ │ └── include │ │ └── openssl │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1t.h │ │ ├── bio.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── comp.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── crypto.h │ │ ├── des.h │ │ ├── des_old.h │ │ ├── dh.h │ │ ├── dsa.h │ │ ├── dso.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── engine.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── krb5_asn.h │ │ ├── kssl.h │ │ ├── lhash.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── ocsp.h │ │ ├── opensslconf.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pkcs12.h │ │ ├── pkcs7.h │ │ ├── pqueue.h │ │ ├── rand.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── stack.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── ui_compat.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ └── x509v3.h ├── pbjson │ ├── BUILD │ └── pbjson.h ├── plink │ ├── BUILD │ ├── LICENSE │ ├── plink.py │ └── setup.py ├── proxygen │ └── BUILD ├── rapidjson │ └── BUILD ├── snappy │ ├── BUILD │ └── linux-k8 │ │ ├── config.h │ │ └── snappy-stubs-public.h ├── v8 │ ├── BUILD │ └── base │ │ └── trace_event │ │ └── .keep ├── wangle │ └── BUILD └── zlib │ └── BUILD └── tools ├── BUILD ├── android ├── BUILD ├── aar_generator.sh ├── android_permissions.py ├── build_incremental_dexmanifest.py ├── build_split_manifest.py ├── build_split_manifest_test.py ├── incremental_install.py ├── incremental_install_test.py ├── jack │ ├── BUILD │ ├── empty │ └── fail.sh ├── merge_manifests.py ├── merge_manifests_test.py ├── proguard_whitelister.py ├── proguard_whitelister_input.cfg ├── proguard_whitelister_test.py ├── resources_processor.sh ├── strip_resources.py ├── stubify_manifest.py └── stubify_manifest_test.py ├── bazel.rc ├── build_rules ├── BUILD ├── appengine │ ├── BUILD │ ├── README.md │ ├── appengine.BUILD │ ├── appengine.WORKSPACE │ └── appengine.bzl ├── boost.bzl ├── closure │ ├── BUILD │ ├── README.md │ ├── closure.WORKSPACE │ ├── closure_compiler.BUILD │ ├── closure_js_binary.bzl │ ├── closure_js_library.bzl │ ├── closure_library.BUILD │ ├── closure_stylesheet_library.bzl │ ├── closure_template_library.bzl │ └── closure_templates.BUILD ├── genproto.bzl ├── java_rules_skylark.bzl ├── pkg_deb.bzl ├── py_rules.bzl ├── run_under.bzl ├── rust │ ├── README.md │ └── rust.bzl └── test_rules.bzl ├── buildstamp ├── BUILD └── get_workspace_status ├── cpp └── BUILD ├── defaults └── BUILD ├── genrule ├── BUILD └── genrule-setup.sh ├── jdk └── BUILD ├── lrte ├── BUILD └── CROSSTOOL ├── objc ├── BUILD ├── dummy.c ├── ios_runner.sh.mac_template ├── ios_test.sh.bazel_template ├── j2objc_dead_code_pruner.py ├── memleaks │ ├── BUILD │ └── memleaks_stub ├── memleaks_plugin_stub ├── sim_devices │ └── BUILD └── testrunner_stub ├── python ├── 2to3.sh ├── BUILD └── plink_wrapper.sh ├── test ├── BUILD ├── dummy_coverage_report_generator └── test-setup.sh └── test_sharding_compliant /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 3.7.2 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/WORKSPACE -------------------------------------------------------------------------------- /base/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/base/BUILD -------------------------------------------------------------------------------- /base/build_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/base/build_info.c -------------------------------------------------------------------------------- /base/build_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/base/build_info.h -------------------------------------------------------------------------------- /base/init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/base/init.cc -------------------------------------------------------------------------------- /base/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/base/init.h -------------------------------------------------------------------------------- /examples/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/BUILD -------------------------------------------------------------------------------- /examples/asan/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/asan/BUILD -------------------------------------------------------------------------------- /examples/asan/leak.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/asan/leak.cc -------------------------------------------------------------------------------- /examples/asan/use-after-free.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/asan/use-after-free.cc -------------------------------------------------------------------------------- /examples/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/hello.cc -------------------------------------------------------------------------------- /examples/hello_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/hello_test.cc -------------------------------------------------------------------------------- /examples/rpc/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/rpc/BUILD -------------------------------------------------------------------------------- /examples/rpc/bank-client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/rpc/bank-client.cc -------------------------------------------------------------------------------- /examples/rpc/bank-server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/rpc/bank-server.cc -------------------------------------------------------------------------------- /examples/rpc/bank.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/rpc/bank.proto -------------------------------------------------------------------------------- /examples/rpc/helloworld/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/rpc/helloworld/BUILD -------------------------------------------------------------------------------- /examples/rpc/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/rpc/helloworld/README.md -------------------------------------------------------------------------------- /examples/rpc/helloworld/greeter_async_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/rpc/helloworld/greeter_async_client.cc -------------------------------------------------------------------------------- /examples/rpc/helloworld/greeter_async_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/rpc/helloworld/greeter_async_server.cc -------------------------------------------------------------------------------- /examples/rpc/helloworld/greeter_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/rpc/helloworld/greeter_client.cc -------------------------------------------------------------------------------- /examples/rpc/helloworld/greeter_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/rpc/helloworld/greeter_server.cc -------------------------------------------------------------------------------- /examples/rpc/helloworld/helloworld.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/rpc/helloworld/helloworld.proto -------------------------------------------------------------------------------- /examples/rpc/helloworld/java/io/grpc/examples/helloworld/HelloWorldClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/rpc/helloworld/java/io/grpc/examples/helloworld/HelloWorldClient.java -------------------------------------------------------------------------------- /examples/rpc/helloworld/java/io/grpc/examples/helloworld/HelloWorldServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/rpc/helloworld/java/io/grpc/examples/helloworld/HelloWorldServer.java -------------------------------------------------------------------------------- /examples/run_under/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/run_under/BUILD -------------------------------------------------------------------------------- /examples/run_under/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/examples/run_under/env.py -------------------------------------------------------------------------------- /install-bazel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/install-bazel.sh -------------------------------------------------------------------------------- /third_party/boost/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boost/BUILD -------------------------------------------------------------------------------- /third_party/boringssl/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/BUILD -------------------------------------------------------------------------------- /third_party/boringssl/BUILD.generated.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/BUILD.generated.bzl -------------------------------------------------------------------------------- /third_party/boringssl/BUILD.generated_tests.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/BUILD.generated_tests.bzl -------------------------------------------------------------------------------- /third_party/boringssl/err_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/err_data.c -------------------------------------------------------------------------------- /third_party/boringssl/linux-aarch64/crypto/aes/aesv8-armx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-aarch64/crypto/aes/aesv8-armx.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-aarch64/crypto/aes/aesv8-armx64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-aarch64/crypto/aes/aesv8-armx64.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-aarch64/crypto/bn/armv8-mont.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-aarch64/crypto/bn/armv8-mont.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-aarch64/crypto/modes/ghashv8-armx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-aarch64/crypto/modes/ghashv8-armx.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-aarch64/crypto/modes/ghashv8-armx64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-aarch64/crypto/modes/ghashv8-armx64.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-aarch64/crypto/sha/sha1-armv8.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-aarch64/crypto/sha/sha1-armv8.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-aarch64/crypto/sha/sha256-armv8.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-aarch64/crypto/sha/sha256-armv8.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-aarch64/crypto/sha/sha512-armv8.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-aarch64/crypto/sha/sha512-armv8.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-arm/crypto/aes/aes-armv4.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-arm/crypto/aes/aes-armv4.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-arm/crypto/aes/aesv8-armx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-arm/crypto/aes/aesv8-armx.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-arm/crypto/aes/aesv8-armx32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-arm/crypto/aes/aesv8-armx32.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-arm/crypto/aes/bsaes-armv7.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-arm/crypto/aes/bsaes-armv7.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-arm/crypto/bn/armv4-mont.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-arm/crypto/bn/armv4-mont.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-arm/crypto/modes/ghash-armv4.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-arm/crypto/modes/ghash-armv4.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-arm/crypto/modes/ghashv8-armx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-arm/crypto/modes/ghashv8-armx.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-arm/crypto/modes/ghashv8-armx32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-arm/crypto/modes/ghashv8-armx32.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-arm/crypto/sha/sha1-armv4-large.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-arm/crypto/sha/sha1-armv4-large.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-arm/crypto/sha/sha256-armv4.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-arm/crypto/sha/sha256-armv4.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-arm/crypto/sha/sha512-armv4.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-arm/crypto/sha/sha512-armv4.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86/crypto/aes/aes-586.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86/crypto/aes/aes-586.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86/crypto/aes/aesni-x86.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86/crypto/aes/aesni-x86.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86/crypto/aes/vpaes-x86.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86/crypto/aes/vpaes-x86.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86/crypto/bn/bn-586.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86/crypto/bn/bn-586.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86/crypto/bn/co-586.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86/crypto/bn/co-586.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86/crypto/bn/x86-mont.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86/crypto/bn/x86-mont.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86/crypto/cpu-x86-asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86/crypto/cpu-x86-asm.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86/crypto/md5/md5-586.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86/crypto/md5/md5-586.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86/crypto/modes/ghash-x86.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86/crypto/modes/ghash-x86.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86/crypto/rc4/rc4-586.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86/crypto/rc4/rc4-586.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86/crypto/sha/sha1-586.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86/crypto/sha/sha1-586.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86/crypto/sha/sha256-586.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86/crypto/sha/sha256-586.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86/crypto/sha/sha512-586.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86/crypto/sha/sha512-586.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/aes/aes-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/aes/aes-x86_64.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/aes/aesni-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/aes/aesni-x86_64.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/aes/bsaes-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/aes/bsaes-x86_64.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/aes/vpaes-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/aes/vpaes-x86_64.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/bn/rsaz-avx2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/bn/rsaz-avx2.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/bn/rsaz-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/bn/rsaz-x86_64.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/bn/x86_64-mont.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/bn/x86_64-mont.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/bn/x86_64-mont5.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/bn/x86_64-mont5.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/cpu-x86_64-asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/cpu-x86_64-asm.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/ec/p256-x86_64-asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/ec/p256-x86_64-asm.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/md5/md5-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/md5/md5-x86_64.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/modes/aesni-gcm-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/modes/aesni-gcm-x86_64.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/modes/ghash-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/modes/ghash-x86_64.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/rand/rdrand-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/rand/rdrand-x86_64.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/rc4/rc4-md5-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/rc4/rc4-md5-x86_64.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/rc4/rc4-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/rc4/rc4-x86_64.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/sha/sha1-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/sha/sha1-x86_64.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/sha/sha256-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/sha/sha256-x86_64.S -------------------------------------------------------------------------------- /third_party/boringssl/linux-x86_64/crypto/sha/sha512-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/boringssl/linux-x86_64/crypto/sha/sha512-x86_64.S -------------------------------------------------------------------------------- /third_party/cares/ares_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/cares/ares_build.h -------------------------------------------------------------------------------- /third_party/cares/cares.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/cares/cares.BUILD -------------------------------------------------------------------------------- /third_party/cares/config_darwin/ares_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/cares/config_darwin/ares_config.h -------------------------------------------------------------------------------- /third_party/cares/config_linux/ares_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/cares/config_linux/ares_config.h -------------------------------------------------------------------------------- /third_party/chromium_browser_clang/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/chromium_browser_clang/BUILD -------------------------------------------------------------------------------- /third_party/chromium_browser_clang/CROSSTOOL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/chromium_browser_clang/CROSSTOOL -------------------------------------------------------------------------------- /third_party/chromium_browser_clang/get_latest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/chromium_browser_clang/get_latest.py -------------------------------------------------------------------------------- /third_party/clang_toolchain/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/clang_toolchain/cc_configure_clang.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/clang_toolchain/cc_configure_clang.bzl -------------------------------------------------------------------------------- /third_party/clang_toolchain/download_clang.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/clang_toolchain/download_clang.bzl -------------------------------------------------------------------------------- /third_party/folly/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/folly/BUILD -------------------------------------------------------------------------------- /third_party/folly/linux-k8/folly/folly-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/folly/linux-k8/folly/folly-config.h -------------------------------------------------------------------------------- /third_party/gflags/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/gflags/BUILD -------------------------------------------------------------------------------- /third_party/gflags/gflags_build/k8/include/gflags/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/gflags/gflags_build/k8/include/gflags/config.h -------------------------------------------------------------------------------- /third_party/gflags/gflags_build/k8/include/gflags/gflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/gflags/gflags_build/k8/include/gflags/gflags.h -------------------------------------------------------------------------------- /third_party/gflags/gflags_build/k8/include/gflags/gflags_completions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/gflags/gflags_build/k8/include/gflags/gflags_completions.h -------------------------------------------------------------------------------- /third_party/gflags/gflags_build/k8/include/gflags/gflags_declare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/gflags/gflags_build/k8/include/gflags/gflags_declare.h -------------------------------------------------------------------------------- /third_party/gflags/gflags_build/k8/include/gflags/gflags_gflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/gflags/gflags_build/k8/include/gflags/gflags_gflags.h -------------------------------------------------------------------------------- /third_party/glog/glog_build/k8/include/glog/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/glog/glog_build/k8/include/glog/logging.h -------------------------------------------------------------------------------- /third_party/glog/glog_build/k8/include/glog/raw_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/glog/glog_build/k8/include/glog/raw_logging.h -------------------------------------------------------------------------------- /third_party/glog/glog_build/k8/include/glog/stl_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/glog/glog_build/k8/include/glog/stl_logging.h -------------------------------------------------------------------------------- /third_party/glog/glog_build/k8/include/glog/vlog_is_on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/glog/glog_build/k8/include/glog/vlog_is_on.h -------------------------------------------------------------------------------- /third_party/glog/glog_build/k8/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/glog/glog_build/k8/src/config.h -------------------------------------------------------------------------------- /third_party/gmock/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/gmock/BUILD -------------------------------------------------------------------------------- /third_party/gperftools/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/gperftools/BUILD -------------------------------------------------------------------------------- /third_party/gperftools/linux-x86_64/src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/gperftools/linux-x86_64/src/config.h -------------------------------------------------------------------------------- /third_party/gperftools/linux-x86_64/src/gperftools/tcmalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/gperftools/linux-x86_64/src/gperftools/tcmalloc.h -------------------------------------------------------------------------------- /third_party/gperftools/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/gperftools/runtest.sh -------------------------------------------------------------------------------- /third_party/http-parser/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/http-parser/BUILD -------------------------------------------------------------------------------- /third_party/icu/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/icu/BUILD -------------------------------------------------------------------------------- /third_party/icu/icupkg.inc.x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/icu/icupkg.inc.x86_64 -------------------------------------------------------------------------------- /third_party/icu/my-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/icu/my-config.sh -------------------------------------------------------------------------------- /third_party/icu/test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/icu/test/BUILD -------------------------------------------------------------------------------- /third_party/icu/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/icu/test/README -------------------------------------------------------------------------------- /third_party/icu/test/gtest_UnicodeString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/icu/test/gtest_UnicodeString.cpp -------------------------------------------------------------------------------- /third_party/icu/test/test_icu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/icu/test/test_icu.cpp -------------------------------------------------------------------------------- /third_party/ijar/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/BUILD -------------------------------------------------------------------------------- /third_party/ijar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/LICENSE -------------------------------------------------------------------------------- /third_party/ijar/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/README.txt -------------------------------------------------------------------------------- /third_party/ijar/classfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/classfile.cc -------------------------------------------------------------------------------- /third_party/ijar/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/common.h -------------------------------------------------------------------------------- /third_party/ijar/ijar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/ijar.cc -------------------------------------------------------------------------------- /third_party/ijar/test/A.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/A.java -------------------------------------------------------------------------------- /third_party/ijar/test/AnnotatedClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/AnnotatedClass.java -------------------------------------------------------------------------------- /third_party/ijar/test/Annotations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/Annotations.java -------------------------------------------------------------------------------- /third_party/ijar/test/B.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/B.java -------------------------------------------------------------------------------- /third_party/ijar/test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/BUILD -------------------------------------------------------------------------------- /third_party/ijar/test/DeprecatedParts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/DeprecatedParts.java -------------------------------------------------------------------------------- /third_party/ijar/test/DumbClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/DumbClass.java -------------------------------------------------------------------------------- /third_party/ijar/test/EnclosingMethod.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/EnclosingMethod.java -------------------------------------------------------------------------------- /third_party/ijar/test/IjarTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/IjarTests.java -------------------------------------------------------------------------------- /third_party/ijar/test/Object.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/Object.java -------------------------------------------------------------------------------- /third_party/ijar/test/PrivateMembersClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/PrivateMembersClass.java -------------------------------------------------------------------------------- /third_party/ijar/test/PrivateNestedClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/PrivateNestedClass.java -------------------------------------------------------------------------------- /third_party/ijar/test/StripVerifyingVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/StripVerifyingVisitor.java -------------------------------------------------------------------------------- /third_party/ijar/test/TypeAnnotationTest2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/TypeAnnotationTest2.java -------------------------------------------------------------------------------- /third_party/ijar/test/UseDeprecatedParts.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/UseDeprecatedParts.java -------------------------------------------------------------------------------- /third_party/ijar/test/UseRestrictedAnnotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/UseRestrictedAnnotation.java -------------------------------------------------------------------------------- /third_party/ijar/test/WellCompressed1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/WellCompressed1.java -------------------------------------------------------------------------------- /third_party/ijar/test/WellCompressed2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/WellCompressed2.java -------------------------------------------------------------------------------- /third_party/ijar/test/ijar_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/ijar_test.sh -------------------------------------------------------------------------------- /third_party/ijar/test/invokedynamic/ClassWithLambda.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/invokedynamic/ClassWithLambda.java -------------------------------------------------------------------------------- /third_party/ijar/test/libwrongcentraldir.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/libwrongcentraldir.jar -------------------------------------------------------------------------------- /third_party/ijar/test/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/package-info.java -------------------------------------------------------------------------------- /third_party/ijar/test/testenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/testenv.sh -------------------------------------------------------------------------------- /third_party/ijar/test/typeannotations2/NonNull.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/typeannotations2/NonNull.java -------------------------------------------------------------------------------- /third_party/ijar/test/typeannotations2/Nullable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/typeannotations2/Nullable.java -------------------------------------------------------------------------------- /third_party/ijar/test/typeannotations2/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/typeannotations2/Util.java -------------------------------------------------------------------------------- /third_party/ijar/test/typeannotations2/java/lang/annotation/ElementType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/typeannotations2/java/lang/annotation/ElementType.java -------------------------------------------------------------------------------- /third_party/ijar/test/zip_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/test/zip_test.sh -------------------------------------------------------------------------------- /third_party/ijar/zip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/zip.cc -------------------------------------------------------------------------------- /third_party/ijar/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/zip.h -------------------------------------------------------------------------------- /third_party/ijar/zip_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/ijar/zip_main.cc -------------------------------------------------------------------------------- /third_party/java/animal-sniffer/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/java/animal-sniffer/BUILD -------------------------------------------------------------------------------- /third_party/java/commons-logging/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/java/commons-logging/BUILD -------------------------------------------------------------------------------- /third_party/java/grpc-java/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/java/grpc-java/BUILD -------------------------------------------------------------------------------- /third_party/java/guava/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/java/guava/BUILD -------------------------------------------------------------------------------- /third_party/java/j2objc/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/java/j2objc/BUILD -------------------------------------------------------------------------------- /third_party/java/javassist/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/java/javassist/BUILD -------------------------------------------------------------------------------- /third_party/java/jdk/langtools/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/java/jdk/langtools/BUILD -------------------------------------------------------------------------------- /third_party/java/jdk/langtools/javac.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/java/jdk/langtools/javac.jar -------------------------------------------------------------------------------- /third_party/java/jsr305/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/java/jsr305/BUILD -------------------------------------------------------------------------------- /third_party/java/jsr305/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/java/jsr305/LICENSE -------------------------------------------------------------------------------- /third_party/java/jsr305/jsr-305.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/java/jsr305/jsr-305.jar -------------------------------------------------------------------------------- /third_party/java/log4j/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/java/log4j/BUILD -------------------------------------------------------------------------------- /third_party/java/slf4j/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/java/slf4j/BUILD -------------------------------------------------------------------------------- /third_party/java/twitter-commons/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/java/twitter-commons/BUILD -------------------------------------------------------------------------------- /third_party/jemalloc/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/BUILD -------------------------------------------------------------------------------- /third_party/jemalloc/gen_public_symbols.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/gen_public_symbols.sh -------------------------------------------------------------------------------- /third_party/jemalloc/k8/include/jemalloc/internal/jemalloc_internal_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/k8/include/jemalloc/internal/jemalloc_internal_defs.h -------------------------------------------------------------------------------- /third_party/jemalloc/k8/include/jemalloc/internal/jemalloc_preamble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/k8/include/jemalloc/internal/jemalloc_preamble.h -------------------------------------------------------------------------------- /third_party/jemalloc/k8/include/jemalloc/internal/private_namespace.gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/k8/include/jemalloc/internal/private_namespace.gen.h -------------------------------------------------------------------------------- /third_party/jemalloc/k8/include/jemalloc/internal/private_namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/k8/include/jemalloc/internal/private_namespace.h -------------------------------------------------------------------------------- /third_party/jemalloc/k8/include/jemalloc/internal/public_namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/k8/include/jemalloc/internal/public_namespace.h -------------------------------------------------------------------------------- /third_party/jemalloc/k8/include/jemalloc/internal/public_symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/k8/include/jemalloc/internal/public_symbols.txt -------------------------------------------------------------------------------- /third_party/jemalloc/k8/include/jemalloc/internal/public_unnamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/k8/include/jemalloc/internal/public_unnamespace.h -------------------------------------------------------------------------------- /third_party/jemalloc/k8/include/jemalloc/jemalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/k8/include/jemalloc/jemalloc.h -------------------------------------------------------------------------------- /third_party/jemalloc/k8/include/jemalloc/jemalloc_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/k8/include/jemalloc/jemalloc_defs.h -------------------------------------------------------------------------------- /third_party/jemalloc/k8/include/jemalloc/jemalloc_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/k8/include/jemalloc/jemalloc_macros.h -------------------------------------------------------------------------------- /third_party/jemalloc/k8/include/jemalloc/jemalloc_mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/k8/include/jemalloc/jemalloc_mangle.h -------------------------------------------------------------------------------- /third_party/jemalloc/k8/include/jemalloc/jemalloc_mangle_jet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/k8/include/jemalloc/jemalloc_mangle_jet.h -------------------------------------------------------------------------------- /third_party/jemalloc/k8/include/jemalloc/jemalloc_protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/k8/include/jemalloc/jemalloc_protos.h -------------------------------------------------------------------------------- /third_party/jemalloc/k8/include/jemalloc/jemalloc_protos_jet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/k8/include/jemalloc/jemalloc_protos_jet.h -------------------------------------------------------------------------------- /third_party/jemalloc/k8/include/jemalloc/jemalloc_rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/k8/include/jemalloc/jemalloc_rename.h -------------------------------------------------------------------------------- /third_party/jemalloc/k8/include/jemalloc/jemalloc_typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/jemalloc/k8/include/jemalloc/jemalloc_typedefs.h -------------------------------------------------------------------------------- /third_party/libco/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/libco/BUILD -------------------------------------------------------------------------------- /third_party/libevent/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/libevent/BUILD -------------------------------------------------------------------------------- /third_party/libevent/linux-k8/event-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/libevent/linux-k8/event-config.h -------------------------------------------------------------------------------- /third_party/libevent/linux-k8/internal/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/libevent/linux-k8/internal/config.h -------------------------------------------------------------------------------- /third_party/libunwind/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/libunwind/BUILD -------------------------------------------------------------------------------- /third_party/libunwind/libunwind_build/k8/include/libunwind-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/libunwind/libunwind_build/k8/include/libunwind-common.h -------------------------------------------------------------------------------- /third_party/libunwind/libunwind_build/k8/include/libunwind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/libunwind/libunwind_build/k8/include/libunwind.h -------------------------------------------------------------------------------- /third_party/libunwind/libunwind_build/k8/include/private/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/libunwind/libunwind_build/k8/include/private/config.h -------------------------------------------------------------------------------- /third_party/libunwind/libunwind_build/k8/include/tdep/libunwind_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/libunwind/libunwind_build/k8/include/tdep/libunwind_i.h -------------------------------------------------------------------------------- /third_party/openssl/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/BUILD -------------------------------------------------------------------------------- /third_party/openssl/BUILD.generated.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/BUILD.generated.bzl -------------------------------------------------------------------------------- /third_party/openssl/generate_build_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/generate_build_files.py -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/aes/asm/aes-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/aes/asm/aes-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/aes/asm/aesni-mb-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/aes/asm/aesni-mb-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/aes/asm/aesni-sha1-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/aes/asm/aesni-sha1-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/aes/asm/aesni-sha256-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/aes/asm/aesni-sha256-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/aes/asm/aesni-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/aes/asm/aesni-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/aes/asm/bsaes-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/aes/asm/bsaes-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/aes/asm/vpaes-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/aes/asm/vpaes-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/bn/asm/rsaz-avx2.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/bn/asm/rsaz-avx2.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/bn/asm/rsaz-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/bn/asm/rsaz-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/bn/asm/x86_64-gf2m.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/bn/asm/x86_64-gf2m.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/bn/asm/x86_64-mont.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/bn/asm/x86_64-mont.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/bn/asm/x86_64-mont5.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/bn/asm/x86_64-mont5.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/camellia/asm/cmll-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/camellia/asm/cmll-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/ec/asm/ecp_nistz256-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/ec/asm/ecp_nistz256-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/md5/asm/md5-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/md5/asm/md5-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/modes/asm/aesni-gcm-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/modes/asm/aesni-gcm-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/modes/asm/ghash-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/modes/asm/ghash-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/rc4/asm/rc4-md5-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/rc4/asm/rc4-md5-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/rc4/asm/rc4-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/rc4/asm/rc4-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/sha/asm/sha1-mb-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/sha/asm/sha1-mb-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/sha/asm/sha1-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/sha/asm/sha1-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/sha/asm/sha256-mb-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/sha/asm/sha256-mb-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/sha/asm/sha256-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/sha/asm/sha256-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/sha/asm/sha512-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/sha/asm/sha512-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/whrlpool/asm/wp-x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/whrlpool/asm/wp-x86_64.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/crypto/x86_64cpuid.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/crypto/x86_64cpuid.S -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/aes.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/aes/aes.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/asn1.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/asn1/asn1.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/asn1/asn1_mac.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/asn1t.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/asn1/asn1t.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/bio.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/bio/bio.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/blowfish.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/bf/blowfish.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/bn.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/bn/bn.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/buffer.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/buffer/buffer.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/camellia.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/camellia/camellia.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/cast.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/cast/cast.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/cmac.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/cmac/cmac.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/cms.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/cms/cms.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/comp.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/comp/comp.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/conf.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/conf/conf.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/conf_api.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/conf/conf_api.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/crypto.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/crypto.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/des.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/des/des.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/des_old.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/des/des_old.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/dh.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/dh/dh.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/dsa.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/dsa/dsa.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/dso.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/dso/dso.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/dtls1.h: -------------------------------------------------------------------------------- 1 | ../../../src/ssl/dtls1.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/e_os2.h: -------------------------------------------------------------------------------- 1 | ../../../src/e_os2.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/ebcdic.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/ec.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/ec/ec.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/ecdh.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/ecdh/ecdh.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/ecdsa/ecdsa.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/engine.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/engine/engine.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/err.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/err/err.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/evp.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/evp/evp.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/hmac.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/hmac/hmac.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/idea.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/idea/idea.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/krb5_asn.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/krb5/krb5_asn.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/kssl.h: -------------------------------------------------------------------------------- 1 | ../../../src/ssl/kssl.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/lhash.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/lhash/lhash.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/md4.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/md4/md4.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/md5.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/md5/md5.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/mdc2.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/mdc2/mdc2.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/modes.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/modes/modes.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/objects/obj_mac.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/objects.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/objects/objects.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/ocsp.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/ocsp/ocsp.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/openssl/linux-x86_64/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/opensslv.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/opensslv.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/ossl_typ.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/pem.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/pem/pem.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/pem2.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/pem/pem2.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/pkcs12/pkcs12.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/pkcs7/pkcs7.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/pqueue.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/pqueue/pqueue.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/rand.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/rand/rand.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/rc2.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/rc2/rc2.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/rc4.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/rc4/rc4.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/ripemd.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/ripemd/ripemd.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/rsa.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/rsa/rsa.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/safestack.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/stack/safestack.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/seed.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/seed/seed.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/sha.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/sha/sha.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/srp.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/srp/srp.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/srtp.h: -------------------------------------------------------------------------------- 1 | ../../../src/ssl/srtp.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/ssl.h: -------------------------------------------------------------------------------- 1 | ../../../src/ssl/ssl.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/ssl2.h: -------------------------------------------------------------------------------- 1 | ../../../src/ssl/ssl2.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/ssl23.h: -------------------------------------------------------------------------------- 1 | ../../../src/ssl/ssl23.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/ssl3.h: -------------------------------------------------------------------------------- 1 | ../../../src/ssl/ssl3.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/stack.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/stack/stack.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/symhacks.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/symhacks.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/tls1.h: -------------------------------------------------------------------------------- 1 | ../../../src/ssl/tls1.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/ts.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/ts/ts.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/txt_db.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/txt_db/txt_db.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/ui.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/ui/ui.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/ui_compat.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/ui/ui_compat.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/whrlpool/whrlpool.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/x509.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/x509/x509.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/x509/x509_vfy.h -------------------------------------------------------------------------------- /third_party/openssl/linux-x86_64/include/openssl/x509v3.h: -------------------------------------------------------------------------------- 1 | ../../../src/crypto/x509v3/x509v3.h -------------------------------------------------------------------------------- /third_party/pbjson/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/pbjson/BUILD -------------------------------------------------------------------------------- /third_party/pbjson/pbjson.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "upstream/src/pbjson.hpp" 4 | -------------------------------------------------------------------------------- /third_party/plink/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/plink/BUILD -------------------------------------------------------------------------------- /third_party/plink/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/plink/LICENSE -------------------------------------------------------------------------------- /third_party/plink/plink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/plink/plink.py -------------------------------------------------------------------------------- /third_party/plink/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/plink/setup.py -------------------------------------------------------------------------------- /third_party/proxygen/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/proxygen/BUILD -------------------------------------------------------------------------------- /third_party/rapidjson/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/rapidjson/BUILD -------------------------------------------------------------------------------- /third_party/snappy/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/snappy/BUILD -------------------------------------------------------------------------------- /third_party/snappy/linux-k8/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/snappy/linux-k8/config.h -------------------------------------------------------------------------------- /third_party/snappy/linux-k8/snappy-stubs-public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/snappy/linux-k8/snappy-stubs-public.h -------------------------------------------------------------------------------- /third_party/v8/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/v8/BUILD -------------------------------------------------------------------------------- /third_party/v8/base/trace_event/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/wangle/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/wangle/BUILD -------------------------------------------------------------------------------- /third_party/zlib/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/third_party/zlib/BUILD -------------------------------------------------------------------------------- /tools/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/BUILD -------------------------------------------------------------------------------- /tools/android/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/BUILD -------------------------------------------------------------------------------- /tools/android/aar_generator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/aar_generator.sh -------------------------------------------------------------------------------- /tools/android/android_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/android_permissions.py -------------------------------------------------------------------------------- /tools/android/build_incremental_dexmanifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/build_incremental_dexmanifest.py -------------------------------------------------------------------------------- /tools/android/build_split_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/build_split_manifest.py -------------------------------------------------------------------------------- /tools/android/build_split_manifest_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/build_split_manifest_test.py -------------------------------------------------------------------------------- /tools/android/incremental_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/incremental_install.py -------------------------------------------------------------------------------- /tools/android/incremental_install_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/incremental_install_test.py -------------------------------------------------------------------------------- /tools/android/jack/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/jack/BUILD -------------------------------------------------------------------------------- /tools/android/jack/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/android/jack/fail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/jack/fail.sh -------------------------------------------------------------------------------- /tools/android/merge_manifests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/merge_manifests.py -------------------------------------------------------------------------------- /tools/android/merge_manifests_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/merge_manifests_test.py -------------------------------------------------------------------------------- /tools/android/proguard_whitelister.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/proguard_whitelister.py -------------------------------------------------------------------------------- /tools/android/proguard_whitelister_input.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/proguard_whitelister_input.cfg -------------------------------------------------------------------------------- /tools/android/proguard_whitelister_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/proguard_whitelister_test.py -------------------------------------------------------------------------------- /tools/android/resources_processor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/resources_processor.sh -------------------------------------------------------------------------------- /tools/android/strip_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/strip_resources.py -------------------------------------------------------------------------------- /tools/android/stubify_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/stubify_manifest.py -------------------------------------------------------------------------------- /tools/android/stubify_manifest_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/android/stubify_manifest_test.py -------------------------------------------------------------------------------- /tools/bazel.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/bazel.rc -------------------------------------------------------------------------------- /tools/build_rules/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/BUILD -------------------------------------------------------------------------------- /tools/build_rules/appengine/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/appengine/BUILD -------------------------------------------------------------------------------- /tools/build_rules/appengine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/appengine/README.md -------------------------------------------------------------------------------- /tools/build_rules/appengine/appengine.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/appengine/appengine.BUILD -------------------------------------------------------------------------------- /tools/build_rules/appengine/appengine.WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/appengine/appengine.WORKSPACE -------------------------------------------------------------------------------- /tools/build_rules/appengine/appengine.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/appengine/appengine.bzl -------------------------------------------------------------------------------- /tools/build_rules/boost.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/boost.bzl -------------------------------------------------------------------------------- /tools/build_rules/closure/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/closure/BUILD -------------------------------------------------------------------------------- /tools/build_rules/closure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/closure/README.md -------------------------------------------------------------------------------- /tools/build_rules/closure/closure.WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/closure/closure.WORKSPACE -------------------------------------------------------------------------------- /tools/build_rules/closure/closure_compiler.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/closure/closure_compiler.BUILD -------------------------------------------------------------------------------- /tools/build_rules/closure/closure_js_binary.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/closure/closure_js_binary.bzl -------------------------------------------------------------------------------- /tools/build_rules/closure/closure_js_library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/closure/closure_js_library.bzl -------------------------------------------------------------------------------- /tools/build_rules/closure/closure_library.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/closure/closure_library.BUILD -------------------------------------------------------------------------------- /tools/build_rules/closure/closure_stylesheet_library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/closure/closure_stylesheet_library.bzl -------------------------------------------------------------------------------- /tools/build_rules/closure/closure_template_library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/closure/closure_template_library.bzl -------------------------------------------------------------------------------- /tools/build_rules/closure/closure_templates.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/closure/closure_templates.BUILD -------------------------------------------------------------------------------- /tools/build_rules/genproto.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/genproto.bzl -------------------------------------------------------------------------------- /tools/build_rules/java_rules_skylark.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/java_rules_skylark.bzl -------------------------------------------------------------------------------- /tools/build_rules/pkg_deb.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/pkg_deb.bzl -------------------------------------------------------------------------------- /tools/build_rules/py_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/py_rules.bzl -------------------------------------------------------------------------------- /tools/build_rules/run_under.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/run_under.bzl -------------------------------------------------------------------------------- /tools/build_rules/rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/rust/README.md -------------------------------------------------------------------------------- /tools/build_rules/rust/rust.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/rust/rust.bzl -------------------------------------------------------------------------------- /tools/build_rules/test_rules.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/build_rules/test_rules.bzl -------------------------------------------------------------------------------- /tools/buildstamp/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/buildstamp/BUILD -------------------------------------------------------------------------------- /tools/buildstamp/get_workspace_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/buildstamp/get_workspace_status -------------------------------------------------------------------------------- /tools/cpp/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/cpp/BUILD -------------------------------------------------------------------------------- /tools/defaults/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/defaults/BUILD -------------------------------------------------------------------------------- /tools/genrule/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/genrule/BUILD -------------------------------------------------------------------------------- /tools/genrule/genrule-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/genrule/genrule-setup.sh -------------------------------------------------------------------------------- /tools/jdk/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/jdk/BUILD -------------------------------------------------------------------------------- /tools/lrte/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/lrte/BUILD -------------------------------------------------------------------------------- /tools/lrte/CROSSTOOL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/lrte/CROSSTOOL -------------------------------------------------------------------------------- /tools/objc/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/objc/BUILD -------------------------------------------------------------------------------- /tools/objc/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/objc/dummy.c -------------------------------------------------------------------------------- /tools/objc/ios_runner.sh.mac_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/objc/ios_runner.sh.mac_template -------------------------------------------------------------------------------- /tools/objc/ios_test.sh.bazel_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/objc/ios_test.sh.bazel_template -------------------------------------------------------------------------------- /tools/objc/j2objc_dead_code_pruner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/objc/j2objc_dead_code_pruner.py -------------------------------------------------------------------------------- /tools/objc/memleaks/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/objc/memleaks/BUILD -------------------------------------------------------------------------------- /tools/objc/memleaks/memleaks_stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/objc/memleaks/memleaks_stub -------------------------------------------------------------------------------- /tools/objc/memleaks_plugin_stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/objc/memleaks_plugin_stub -------------------------------------------------------------------------------- /tools/objc/sim_devices/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/objc/sim_devices/BUILD -------------------------------------------------------------------------------- /tools/objc/testrunner_stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/objc/testrunner_stub -------------------------------------------------------------------------------- /tools/python/2to3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 1 4 | -------------------------------------------------------------------------------- /tools/python/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/python/BUILD -------------------------------------------------------------------------------- /tools/python/plink_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/python/plink_wrapper.sh -------------------------------------------------------------------------------- /tools/test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/test/BUILD -------------------------------------------------------------------------------- /tools/test/dummy_coverage_report_generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/test/dummy_coverage_report_generator -------------------------------------------------------------------------------- /tools/test/test-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/test/test-setup.sh -------------------------------------------------------------------------------- /tools/test_sharding_compliant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bazelment/trunk/HEAD/tools/test_sharding_compliant --------------------------------------------------------------------------------