├── tools ├── android │ ├── jack │ │ ├── empty │ │ ├── BUILD │ │ └── fail.sh │ ├── bazel_debug.keystore │ ├── aar_generator.sh │ ├── resources_processor.sh │ ├── idlclass.sh │ ├── merge_dexzips.sh │ └── shuffle_jars.sh ├── build_defs │ ├── scala │ │ ├── BUILD │ │ ├── test │ │ │ ├── src │ │ │ │ └── main │ │ │ │ │ ├── resources │ │ │ │ │ └── scala │ │ │ │ │ │ └── test │ │ │ │ │ │ └── hellos │ │ │ │ │ └── scala │ │ │ │ │ └── scala │ │ │ │ │ └── test │ │ │ │ │ ├── ScalaLibBinary.scala │ │ │ │ │ └── ScalaLibResources.scala │ │ │ ├── ScalaBinary.scala │ │ │ ├── OtherLib.scala │ │ │ ├── HelloLib.scala │ │ │ ├── OtherJavaLib.java │ │ │ └── JavaBinary.java │ │ └── scala.BUILD │ ├── docker │ │ ├── testdata │ │ │ ├── bar │ │ │ ├── foo │ │ │ ├── test │ │ │ │ ├── test │ │ │ │ └── BUILD │ │ │ └── strip_top.py │ │ └── testenv.py │ ├── pkg │ │ ├── testdata │ │ │ ├── empty.ar │ │ │ ├── a.ar │ │ │ ├── ab.ar │ │ │ ├── b.ar │ │ │ ├── tar_test.tar.gz │ │ │ ├── tar_test.tar.xz │ │ │ ├── tar_test.tar.bz2 │ │ │ ├── a_b.ar │ │ │ ├── a_ab.ar │ │ │ └── a_b_ab.ar │ │ └── testenv.py │ ├── sass │ │ ├── test │ │ │ └── BUILD │ │ ├── BUILD │ │ ├── sassc.BUILD │ │ └── libsass.BUILD │ ├── groovy │ │ └── groovy.BUILD │ ├── jsonnet │ │ └── BUILD │ └── dotnet │ │ ├── BUILD │ │ └── nunit.BUILD ├── python │ ├── 2to3.sh │ └── BUILD ├── bazel.rc ├── build_rules │ ├── rust │ │ └── test │ │ │ └── BUILD │ ├── go │ │ ├── toolchain │ │ │ └── BUILD.go-toolchain │ │ ├── BUILD │ │ └── tools │ │ │ └── BUILD │ └── appengine │ │ └── BUILD ├── defaults │ └── BUILD ├── objc │ ├── memleaks_plugin_stub │ ├── memleaks │ │ ├── memleaks_stub │ │ └── BUILD │ ├── sim_devices │ │ └── BUILD │ └── testrunner_stub ├── test_sharding_compliant ├── genrule │ ├── BUILD │ └── genrule-setup.sh ├── buildstamp │ ├── BUILD │ └── get_workspace_status ├── test │ └── BUILD └── j2objc │ └── BUILD ├── scripts ├── resources │ └── idea │ │ ├── .name │ │ ├── copyright │ │ └── profiles_settings.xml │ │ ├── vcs.xml │ │ ├── modules.xml │ │ └── misc.xml ├── packages │ └── debian │ │ ├── bazel.bazelrc │ │ └── description ├── ci │ ├── release_email.txt │ └── rc_email.txt └── release │ └── BUILD ├── third_party ├── py │ ├── gflags │ │ ├── debian │ │ │ ├── compat │ │ │ ├── docs │ │ │ └── README │ │ ├── tests │ │ │ └── flags_modules_for_testing │ │ │ │ └── __init__.py │ │ ├── AUTHORS │ │ ├── python_gflags.egg-info │ │ │ ├── dependency_links.txt │ │ │ ├── top_level.txt │ │ │ ├── PKG-INFO │ │ │ └── SOURCES.txt │ │ ├── setup.cfg │ │ ├── README.md │ │ ├── PKG-INFO │ │ ├── BUILD │ │ └── MANIFEST.in │ ├── mock │ │ ├── mock.egg-info │ │ │ ├── top_level.txt │ │ │ └── dependency_links.txt │ │ ├── html │ │ │ ├── objects.inv │ │ │ ├── _static │ │ │ │ ├── file.png │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ ├── scrn1.png │ │ │ │ ├── scrn2.png │ │ │ │ ├── documentation.png │ │ │ │ ├── header_sm_mid.png │ │ │ │ ├── triangle_left.png │ │ │ │ ├── triangle_open.png │ │ │ │ ├── triangle_closed.png │ │ │ │ ├── searchfield_repeat.png │ │ │ │ ├── title_background.png │ │ │ │ ├── searchfield_leftcap.png │ │ │ │ ├── searchfield_rightcap.png │ │ │ │ ├── breadcrumb_background.png │ │ │ │ ├── mobile.css │ │ │ │ └── toc.js │ │ │ └── .doctrees │ │ │ │ ├── mock.doctree │ │ │ │ ├── compare.doctree │ │ │ │ ├── index.doctree │ │ │ │ ├── patch.doctree │ │ │ │ ├── changelog.doctree │ │ │ │ ├── examples.doctree │ │ │ │ ├── magicmock.doctree │ │ │ │ ├── sentinel.doctree │ │ │ │ ├── mocksignature.doctree │ │ │ │ └── getting-started.doctree │ │ ├── MANIFEST.in │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── testwith.py │ │ │ └── support.py │ │ ├── setup.cfg │ │ ├── README.md │ │ ├── BUILD │ │ └── tox.ini │ └── concurrent │ │ ├── __init__.py │ │ ├── BUILD │ │ └── README.md ├── iossim │ ├── iossim │ └── BUILD ├── asm │ ├── asm-5.0.3.jar │ ├── asm-5.0.4.jar │ ├── asm-util-5.0.4.jar │ └── asm-commons-5.0.4.jar ├── jsr305 │ └── jsr-305.jar ├── gson │ └── gson-2.2.4.jar ├── guava │ ├── guava-19.0.jar │ └── guava-testlib.jar ├── jsch │ └── jsch-0.1.51.jar ├── junit │ └── junit-4.11.jar ├── truth │ └── truth-0.27.jar ├── auto │ ├── auto-value-1.0.jar │ ├── auto-common-0.3.jar │ └── auto-service-1.0-rc2.jar ├── slf4j │ ├── slf4j-api-1.7.7.jar │ └── slf4j-jdk14-1.7.7.jar ├── guice │ ├── guice-4.0-no_aop.jar │ └── guice-multibindings-4.0.jar ├── java │ ├── jarjar │ │ ├── jarjar-1.4.jar │ │ └── BUILD │ ├── jdk │ │ └── langtools │ │ │ ├── javac.jar │ │ │ └── BUILD │ ├── dd_plist │ │ └── BUILD │ └── buck-ios-support │ │ ├── BUILD │ │ ├── README │ │ └── java │ │ └── com │ │ └── facebook │ │ └── buck │ │ └── apple │ │ └── xcode │ │ └── xcodeproj │ │ └── PBXProjectItem.java ├── joda-time │ └── joda-time-2.3.jar ├── joda_time │ └── joda-time-2.3.jar ├── hamcrest │ └── hamcrest-core-1.3.jar ├── jsr330_inject │ └── javax.inject.jar ├── maven │ ├── maven-settings-3.3.3.jar │ ├── maven-builder-support-3.3.3.jar │ └── maven-settings-builder-3.3.3.jar ├── protobuf │ ├── protoc-osx-x86_32.exe │ ├── protoc-osx-x86_64.exe │ ├── protoc-linux-x86_32.exe │ ├── protoc-linux-x86_64.exe │ ├── protoc-windows-x86_32.exe │ ├── protoc-windows-x86_64.exe │ ├── protobuf-java-3.0.0-alpha-3.jar │ └── README.md ├── apache_velocity │ └── velocity-1.7.jar ├── ijar │ └── test │ │ ├── libwrongcentraldir.jar │ │ ├── package-info.java │ │ ├── Object.java │ │ ├── TypeAnnotationTest2.java │ │ ├── typeannotations2 │ │ ├── Util.java │ │ └── java │ │ │ └── lang │ │ │ └── annotation │ │ │ └── ElementType.java │ │ ├── PrivateNestedClass.java │ │ ├── methodparameters │ │ └── Test.java │ │ ├── UseRestrictedAnnotation.java │ │ └── DumbClass.java ├── maven_model │ ├── maven-model-3.2.3.jar │ ├── maven-aether-provider-3.2.3.jar │ ├── maven-model-builder-3.2.3.jar │ └── maven-repository-metadata-3.2.3.jar ├── mockito │ └── mockito-all-1.10.19.jar ├── apache_httpcore │ └── httpcore-4.2.4.jar ├── pcollections │ └── pcollections-2.1.2.jar ├── aether │ ├── aether-api-1.0.0.v20140518.jar │ ├── aether-impl-1.0.0.v20140518.jar │ ├── aether-spi-1.0.0.v20140518.jar │ ├── aether-util-1.0.0.v20140518.jar │ ├── aether-transport-file-1.0.0.v20140518.jar │ ├── aether-transport-http-1.0.0.v20140518.jar │ ├── aether-connector-basic-1.0.0.v20140518.jar │ ├── aether-transport-wagon-1.0.0.v20140518.jar │ └── aether-transport-classpath-1.0.0.v20140518.jar ├── apache_httpclient │ └── httpclient-4.2.5.jar ├── bytebuddy │ └── byte-buddy-dep-0.7-rc6.jar ├── jformatstring │ └── jFormatString-3.0.0.jar ├── plexus_utils │ └── plexus-utils-3.0.21.jar ├── apache_commons_codec │ └── commons-codec-1.9.jar ├── apache_commons_pool2 │ └── commons-pool2-2.3.jar ├── jcip_annotations │ └── jcip-annotations-1.0-1.jar ├── apache_commons_logging │ └── commons-logging-1.1.1.jar ├── checker_framework_dataflow │ └── dataflow-1.8.10.jar ├── error_prone │ ├── error_prone_core-2.0.8-20151216.jar │ ├── error_prone_annotation-2.0.8-20151216.jar │ └── error_prone_annotations-2.0.8-20151216.jar ├── jgit │ └── org.eclipse.jgit-4.0.1.201506240215-r.jar ├── android_common │ ├── com.android.tools_common_23.1.3.jar │ ├── com.android.tools_sdklib_23.1.3.jar │ ├── com.android.tools_sdk-common_23.1.3.jar │ ├── com.android.tools.build_builder_0.13.3.jar │ ├── com.android.tools.build_builder-model_0.13.3.jar │ ├── com.android.tools.layoutlib_layoutlib_23.1.3.jar │ └── com.android.tools.build_manifest-merger_23.1.3.jar ├── plexus_interpolation │ └── plexus-interpolation-1.22.jar ├── apache_commons_compress │ └── apache-commons-compress-1.9.jar ├── tomcat_annotations_api │ └── tomcat-annotations-api-8.0.5.jar ├── apache_commons_collections │ └── commons-collections-3.2.1.jar └── plexus_component_annotations │ └── plexus-component-annotations-1.6.jar ├── examples ├── java-native │ ├── src │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── greeting.txt │ │ │ │ └── BUILD │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── myproject │ │ │ │ ├── HelloErrorProne.java │ │ │ │ └── BUILD │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── myproject │ │ │ └── Fail.java │ ├── README.md │ └── BUILD ├── java-skylark │ ├── src │ │ ├── main │ │ │ ├── resources │ │ │ │ ├── greeting.txt │ │ │ │ └── BUILD │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── myproject │ │ │ │ └── BUILD │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── myproject │ │ │ ├── Fail.java │ │ │ └── BUILD │ ├── README.md │ └── BUILD ├── objc │ ├── PrenotCalculator │ │ ├── Resources │ │ │ └── test.txt │ │ ├── ValuesViewController.h │ │ ├── Expression.h │ │ ├── Literal.h │ │ ├── AppDelegate.h │ │ ├── main.m │ │ ├── CoreData.h │ │ ├── CalculatedValues.h │ │ └── DataModel.xcdatamodeld │ │ │ └── .xccurrentversion │ ├── expression_prebuilt.a │ └── README.md ├── py │ ├── bin.py │ ├── lib.py │ └── BUILD ├── jsonnet │ ├── invalid.out │ ├── invalid.jsonnet │ └── shell-workflows.jsonnet ├── cpp │ ├── README.md │ ├── hello-lib.cc │ ├── hello-lib.h │ ├── hello-fail.cc │ ├── BUILD │ └── hello-world.cc ├── py_native │ ├── lib.py │ ├── bin.py │ ├── fail.py │ ├── test.py │ └── BUILD ├── android │ └── java │ │ └── bazel │ │ ├── jni_dep.h │ │ ├── Jni.java │ │ ├── Lib.java │ │ ├── jni.cc │ │ ├── jni_dep.cc │ │ ├── MainActivity.java │ │ ├── BUILD │ │ └── AndroidManifest.xml ├── sass │ ├── shared │ │ ├── _colors.scss │ │ ├── _fonts.scss │ │ └── BUILD │ └── hello_world │ │ ├── main.scss │ │ └── BUILD ├── go │ ├── lib │ │ ├── lib.go │ │ ├── lib_test.go │ │ └── BUILD │ ├── vendor │ │ └── github_com │ │ │ └── user │ │ │ └── vendored │ │ │ ├── vendored.go │ │ │ └── BUILD │ └── bin │ │ ├── bin.go │ │ └── BUILD ├── proto │ ├── test.proto │ └── BUILD ├── dotnet │ ├── example_test │ │ ├── BUILD │ │ └── MyTest.cs │ ├── example_transitive_lib │ │ ├── BUILD │ │ └── TransitiveClass.cs │ ├── example_binary │ │ ├── BUILD │ │ └── Program.cs │ └── example_lib │ │ ├── BUILD │ │ └── MyClass.cs ├── BUILD ├── d │ ├── hello_world │ │ └── BUILD │ └── hello_lib │ │ ├── BUILD │ │ └── greeter_test.d ├── gen │ └── BUILD ├── rust │ ├── hello_world │ │ ├── BUILD │ │ └── src │ │ │ └── main.rs │ ├── hello_lib │ │ ├── src │ │ │ └── lib.rs │ │ ├── BUILD │ │ └── tests │ │ │ └── greeting.rs │ └── fibonacci │ │ ├── BUILD │ │ └── benches │ │ └── fibonacci_bench.rs └── j2objc │ ├── J2ObjcExample │ ├── GreeterViewController.h │ ├── AppDelegate.h │ └── main.m │ ├── README.md │ └── src │ └── main │ └── java │ └── com │ └── example │ └── myproject │ └── package-info.java ├── site ├── BUILD ├── assets │ ├── dash.png │ ├── dirty.png │ ├── graph.png │ ├── recipe.png │ ├── fullbuild.png │ ├── incbuild.png │ ├── dash-shell.png │ ├── bazel-stickers.jpg │ ├── change-garlic.png │ ├── ctrl-w-tweet.png │ ├── dirty-unmark.png │ └── simple-graph.png ├── blog │ ├── _posts │ │ ├── 2015-3-27-Hello-World.md │ │ ├── 2015-04-15-share-your-project.md │ │ ├── 2015-06-25-ErrorProne.md │ │ └── 2015-04-22-thank-you-stickers.md │ ├── index.md │ └── feed.xml ├── docs │ ├── windows.md │ ├── skylark │ │ └── index.md │ └── docs_style.css ├── 404.md └── search.html ├── src ├── test │ ├── java │ │ └── com │ │ │ └── google │ │ │ └── devtools │ │ │ ├── build │ │ │ ├── lib │ │ │ │ ├── util │ │ │ │ │ └── ResourceFileLoaderTest.message │ │ │ │ └── vfs │ │ │ │ │ ├── sample_with_dirs.zip │ │ │ │ │ └── sample_without_dirs.zip │ │ │ ├── android │ │ │ │ ├── idlclass │ │ │ │ │ └── BUILD │ │ │ │ ├── ideinfo │ │ │ │ │ └── BUILD │ │ │ │ └── ziputils │ │ │ │ │ └── BUILD │ │ │ └── skyframe │ │ │ │ └── SomeErrorException.java │ │ │ └── common │ │ │ └── options │ │ │ └── BUILD │ ├── shell │ │ ├── bazel │ │ │ ├── testdata │ │ │ │ ├── pluto-repo.tar.gz │ │ │ │ ├── refetch-repo.tar.gz │ │ │ │ ├── outer-planets-repo.tar.gz │ │ │ │ ├── BUILD │ │ │ │ └── refetch.git_log │ │ │ └── bazel_docgen_test.sh │ │ ├── BUILD │ │ └── integration │ │ │ └── BUILD │ └── cpp │ │ ├── BUILD │ │ └── util │ │ └── BUILD ├── main │ ├── java │ │ └── com │ │ │ └── google │ │ │ └── devtools │ │ │ ├── build │ │ │ ├── docgen │ │ │ │ └── templates │ │ │ │ │ ├── be │ │ │ │ │ ├── footer.vm │ │ │ │ │ ├── header.vm │ │ │ │ │ └── predefined-python-variables.vm │ │ │ │ │ ├── skylark-nav.vm │ │ │ │ │ └── attributes │ │ │ │ │ ├── test │ │ │ │ │ ├── local.html │ │ │ │ │ ├── flaky.html │ │ │ │ │ ├── size.html │ │ │ │ │ ├── args.html │ │ │ │ │ ├── shard_count.html │ │ │ │ │ └── timeout.html │ │ │ │ │ ├── common │ │ │ │ │ ├── licenses.html │ │ │ │ │ ├── distribs.html │ │ │ │ │ ├── features.html │ │ │ │ │ └── data.html │ │ │ │ │ └── binary │ │ │ │ │ └── args.html │ │ │ ├── lib │ │ │ │ ├── bazel │ │ │ │ │ ├── rules │ │ │ │ │ │ ├── tools.WORKSPACE │ │ │ │ │ │ ├── android │ │ │ │ │ │ │ ├── android_ndk_stl_filegroup_template.txt │ │ │ │ │ │ │ └── android_ndk_cc_toolchain_suite_template.txt │ │ │ │ │ │ └── objc │ │ │ │ │ │ │ └── j2objc.WORKSPACE │ │ │ │ │ ├── commands │ │ │ │ │ │ └── fetch.txt │ │ │ │ │ └── dash │ │ │ │ │ │ └── BUILD │ │ │ │ ├── runtime │ │ │ │ │ └── commands │ │ │ │ │ │ ├── version.txt │ │ │ │ │ │ ├── mobile-install.txt │ │ │ │ │ │ ├── help.txt │ │ │ │ │ │ ├── build.txt │ │ │ │ │ │ ├── clean.txt │ │ │ │ │ │ ├── canonicalize.txt │ │ │ │ │ │ ├── run.txt │ │ │ │ │ │ ├── startup_options.txt │ │ │ │ │ │ ├── analyze-profile.txt │ │ │ │ │ │ ├── test.txt │ │ │ │ │ │ └── query.txt │ │ │ │ ├── skylarkinterface │ │ │ │ │ └── README.md │ │ │ │ ├── exec │ │ │ │ │ └── AlwaysOutOfDateAction.java │ │ │ │ ├── packages │ │ │ │ │ └── TriState.java │ │ │ │ ├── skyframe │ │ │ │ │ ├── CompletionReceiver.java │ │ │ │ │ └── FileSymlinkException.java │ │ │ │ ├── buildtool │ │ │ │ │ └── buildevent │ │ │ │ │ │ └── BuildInterruptedEvent.java │ │ │ │ └── cmdline │ │ │ │ │ └── LabelSyntaxException.java │ │ │ └── skyframe │ │ │ │ ├── BUILD │ │ │ │ ├── SkyValue.java │ │ │ │ ├── NotComparableSkyValue.java │ │ │ │ └── Injectable.java │ │ │ └── common │ │ │ └── options │ │ │ ├── BUILD │ │ │ └── TriState.java │ ├── tools │ │ ├── build_interface_so │ │ └── network-tools.h │ └── protobuf │ │ └── BUILD ├── tools │ ├── android │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── devtools │ │ │ └── build │ │ │ └── android │ │ │ ├── README │ │ │ ├── incrementaldeployment │ │ │ ├── README │ │ │ └── BUILD │ │ │ ├── idlclass │ │ │ └── BUILD.tools │ │ │ ├── ideinfo │ │ │ └── BUILD.tools │ │ │ ├── ziputils │ │ │ └── BUILD.tools │ │ │ └── BUILD.tools │ ├── xcode │ │ ├── stdredirect │ │ │ ├── README │ │ │ └── BUILD │ │ ├── environment │ │ │ ├── README │ │ │ └── BUILD │ │ ├── momcwrapper │ │ │ ├── README │ │ │ └── BUILD │ │ ├── xcrunwrapper │ │ │ ├── BUILD │ │ │ └── README │ │ ├── actoolwrapper │ │ │ ├── README │ │ │ └── BUILD │ │ ├── ibtoolwrapper │ │ │ ├── README │ │ │ └── BUILD │ │ ├── swiftstdlibtoolwrapper │ │ │ ├── README │ │ │ └── BUILD │ │ └── realpath │ │ │ ├── BUILD │ │ │ └── README │ ├── xcode-common │ │ ├── java │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── devtools │ │ │ │ └── build │ │ │ │ └── xcode │ │ │ │ ├── util │ │ │ │ └── BUILD │ │ │ │ ├── common │ │ │ │ └── BUILD │ │ │ │ └── zip │ │ │ │ └── BUILD │ │ └── BUILD │ └── generate_workspace │ │ └── BUILD ├── objc_tools │ ├── xcodegen │ │ └── README │ ├── bundlemerge │ │ └── README │ └── plmerge │ │ └── README └── java_tools │ ├── buildjar │ └── java │ │ └── com │ │ └── google │ │ └── devtools │ │ └── build │ │ └── buildjar │ │ ├── genclass │ │ └── BUILD │ │ └── jarhelper │ │ └── BUILD │ └── singlejar │ └── java │ └── com │ └── google │ └── devtools │ └── build │ └── zip │ └── BUILD ├── .gitattributes ├── BUILD └── .gitignore /tools/android/jack/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/build_defs/scala/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/resources/idea/.name: -------------------------------------------------------------------------------- 1 | bazel -------------------------------------------------------------------------------- /third_party/py/gflags/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /tools/build_defs/docker/testdata/bar: -------------------------------------------------------------------------------- 1 | blah -------------------------------------------------------------------------------- /tools/build_defs/docker/testdata/foo: -------------------------------------------------------------------------------- 1 | asdf -------------------------------------------------------------------------------- /tools/build_defs/docker/testdata/test/test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/build_defs/pkg/testdata/empty.ar: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /tools/python/2to3.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 1 4 | -------------------------------------------------------------------------------- /third_party/py/gflags/debian/docs: -------------------------------------------------------------------------------- 1 | AUTHORS 2 | README 3 | -------------------------------------------------------------------------------- /third_party/py/mock/mock.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | mock 2 | -------------------------------------------------------------------------------- /examples/java-native/src/main/resources/greeting.txt: -------------------------------------------------------------------------------- 1 | Bye 2 | -------------------------------------------------------------------------------- /examples/java-skylark/src/main/resources/greeting.txt: -------------------------------------------------------------------------------- 1 | Heyo 2 | -------------------------------------------------------------------------------- /third_party/py/mock/mock.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/objc/PrenotCalculator/Resources/test.txt: -------------------------------------------------------------------------------- 1 | It worked! 2 | -------------------------------------------------------------------------------- /third_party/py/gflags/tests/flags_modules_for_testing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/py/gflags/AUTHORS: -------------------------------------------------------------------------------- 1 | google-gflags@googlegroups.com 2 | 3 | -------------------------------------------------------------------------------- /third_party/py/gflags/python_gflags.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /site/BUILD: -------------------------------------------------------------------------------- 1 | exports_files( 2 | ["docs/bazel-user-manual.html"], 3 | ) 4 | -------------------------------------------------------------------------------- /site/assets/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/site/assets/dash.png -------------------------------------------------------------------------------- /examples/py/bin.py: -------------------------------------------------------------------------------- 1 | from examples.py import lib 2 | 3 | print("Fib(5)=%d" % lib.Fib(5)) 4 | -------------------------------------------------------------------------------- /site/assets/dirty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/site/assets/dirty.png -------------------------------------------------------------------------------- /site/assets/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/site/assets/graph.png -------------------------------------------------------------------------------- /site/assets/recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/site/assets/recipe.png -------------------------------------------------------------------------------- /src/test/java/com/google/devtools/build/lib/util/ResourceFileLoaderTest.message: -------------------------------------------------------------------------------- 1 | Hello, world. -------------------------------------------------------------------------------- /third_party/py/gflags/python_gflags.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | gflags 2 | gflags_validators 3 | -------------------------------------------------------------------------------- /examples/jsonnet/invalid.out: -------------------------------------------------------------------------------- 1 | RUNTIME ERROR: Foo. 2 | examples/jsonnet/invalid.jsonnet:15:1-12 3 | -------------------------------------------------------------------------------- /site/assets/fullbuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/site/assets/fullbuild.png -------------------------------------------------------------------------------- /site/assets/incbuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/site/assets/incbuild.png -------------------------------------------------------------------------------- /third_party/iossim/iossim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/iossim/iossim -------------------------------------------------------------------------------- /site/assets/dash-shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/site/assets/dash-shell.png -------------------------------------------------------------------------------- /tools/build_defs/scala/test/src/main/resources/scala/test/hellos: -------------------------------------------------------------------------------- 1 | Hello 2 | Guten Tag 3 | Bonjour 4 | -------------------------------------------------------------------------------- /site/assets/bazel-stickers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/site/assets/bazel-stickers.jpg -------------------------------------------------------------------------------- /site/assets/change-garlic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/site/assets/change-garlic.png -------------------------------------------------------------------------------- /site/assets/ctrl-w-tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/site/assets/ctrl-w-tweet.png -------------------------------------------------------------------------------- /site/assets/dirty-unmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/site/assets/dirty-unmark.png -------------------------------------------------------------------------------- /site/assets/simple-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/site/assets/simple-graph.png -------------------------------------------------------------------------------- /src/main/java/com/google/devtools/build/docgen/templates/be/footer.vm: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /third_party/asm/asm-5.0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/asm/asm-5.0.3.jar -------------------------------------------------------------------------------- /third_party/asm/asm-5.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/asm/asm-5.0.4.jar -------------------------------------------------------------------------------- /third_party/jsr305/jsr-305.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/jsr305/jsr-305.jar -------------------------------------------------------------------------------- /src/tools/android/java/com/google/devtools/build/android/README: -------------------------------------------------------------------------------- 1 | Utilities and actions for Bazel Android rules. -------------------------------------------------------------------------------- /third_party/gson/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/gson/gson-2.2.4.jar -------------------------------------------------------------------------------- /third_party/guava/guava-19.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/guava/guava-19.0.jar -------------------------------------------------------------------------------- /third_party/jsch/jsch-0.1.51.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/jsch/jsch-0.1.51.jar -------------------------------------------------------------------------------- /third_party/junit/junit-4.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/junit/junit-4.11.jar -------------------------------------------------------------------------------- /third_party/py/gflags/setup.cfg: -------------------------------------------------------------------------------- 1 | [egg_info] 2 | tag_build = 3 | tag_date = 0 4 | tag_svn_revision = 0 5 | 6 | -------------------------------------------------------------------------------- /third_party/truth/truth-0.27.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/truth/truth-0.27.jar -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.bzl linguist-language=Python 2 | BUILD linguist-language=Python 3 | site/* linguist-documentation 4 | -------------------------------------------------------------------------------- /examples/objc/expression_prebuilt.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/examples/objc/expression_prebuilt.a -------------------------------------------------------------------------------- /third_party/asm/asm-util-5.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/asm/asm-util-5.0.4.jar -------------------------------------------------------------------------------- /third_party/auto/auto-value-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/auto/auto-value-1.0.jar -------------------------------------------------------------------------------- /third_party/guava/guava-testlib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/guava/guava-testlib.jar -------------------------------------------------------------------------------- /tools/android/bazel_debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/tools/android/bazel_debug.keystore -------------------------------------------------------------------------------- /tools/bazel.rc: -------------------------------------------------------------------------------- 1 | build:android --crosstool_top=@androidndk//:toolchain --host_crosstool_top=//tools/cpp:toolchain 2 | -------------------------------------------------------------------------------- /tools/build_defs/pkg/testdata/a.ar: -------------------------------------------------------------------------------- 1 | ! 2 | a/ 1439231934 1000 1000 100664 1 ` 3 | a 4 | -------------------------------------------------------------------------------- /tools/build_defs/pkg/testdata/ab.ar: -------------------------------------------------------------------------------- 1 | ! 2 | ab/ 1439231936 1000 1000 100664 2 ` 3 | ab 4 | -------------------------------------------------------------------------------- /tools/build_defs/pkg/testdata/b.ar: -------------------------------------------------------------------------------- 1 | ! 2 | b/ 1439231939 1000 1000 100664 1 ` 3 | b 4 | -------------------------------------------------------------------------------- /src/objc_tools/xcodegen/README: -------------------------------------------------------------------------------- 1 | xcodegen generates xcode project files for metadata about a given set of 2 | targets. 3 | -------------------------------------------------------------------------------- /third_party/asm/asm-commons-5.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/asm/asm-commons-5.0.4.jar -------------------------------------------------------------------------------- /third_party/auto/auto-common-0.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/auto/auto-common-0.3.jar -------------------------------------------------------------------------------- /third_party/py/mock/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/objects.inv -------------------------------------------------------------------------------- /third_party/slf4j/slf4j-api-1.7.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/slf4j/slf4j-api-1.7.7.jar -------------------------------------------------------------------------------- /tools/build_defs/sass/test/BUILD: -------------------------------------------------------------------------------- 1 | load("sass_rule_test", "sass_rule_test") 2 | 3 | sass_rule_test("//examples/sass") 4 | -------------------------------------------------------------------------------- /tools/build_rules/rust/test/BUILD: -------------------------------------------------------------------------------- 1 | load("rust_rule_test", "rust_rule_test") 2 | 3 | rust_rule_test("//examples/rust") 4 | -------------------------------------------------------------------------------- /examples/py/lib.py: -------------------------------------------------------------------------------- 1 | def Fib(n): 2 | if n == 0 or n == 1: 3 | return 1 4 | else: 5 | return Fib(n-1) + Fib(n-2) 6 | -------------------------------------------------------------------------------- /third_party/guice/guice-4.0-no_aop.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/guice/guice-4.0-no_aop.jar -------------------------------------------------------------------------------- /third_party/java/jarjar/jarjar-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/java/jarjar/jarjar-1.4.jar -------------------------------------------------------------------------------- /third_party/java/jdk/langtools/javac.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/java/jdk/langtools/javac.jar -------------------------------------------------------------------------------- /third_party/joda-time/joda-time-2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/joda-time/joda-time-2.3.jar -------------------------------------------------------------------------------- /third_party/joda_time/joda-time-2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/joda_time/joda-time-2.3.jar -------------------------------------------------------------------------------- /third_party/py/concurrent/__init__.py: -------------------------------------------------------------------------------- 1 | from pkgutil import extend_path 2 | 3 | __path__ = extend_path(__path__, __name__) 4 | -------------------------------------------------------------------------------- /third_party/slf4j/slf4j-jdk14-1.7.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/slf4j/slf4j-jdk14-1.7.7.jar -------------------------------------------------------------------------------- /tools/defaults/BUILD: -------------------------------------------------------------------------------- 1 | # At runtime, a package is synthesized in memory that corresponds 2 | # the command-line flag settings. 3 | -------------------------------------------------------------------------------- /examples/java-native/README.md: -------------------------------------------------------------------------------- 1 | Java Examples 2 | ============= 3 | 4 | This directory contains examples for Java language rules. 5 | -------------------------------------------------------------------------------- /src/objc_tools/bundlemerge/README: -------------------------------------------------------------------------------- 1 | bundlemerge merges the assorted files making up an iOS application into a final 2 | IPA bundle. 3 | -------------------------------------------------------------------------------- /third_party/auto/auto-service-1.0-rc2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/auto/auto-service-1.0-rc2.jar -------------------------------------------------------------------------------- /third_party/hamcrest/hamcrest-core-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/hamcrest/hamcrest-core-1.3.jar -------------------------------------------------------------------------------- /third_party/jsr330_inject/javax.inject.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/jsr330_inject/javax.inject.jar -------------------------------------------------------------------------------- /third_party/maven/maven-settings-3.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/maven/maven-settings-3.3.3.jar -------------------------------------------------------------------------------- /third_party/protobuf/protoc-osx-x86_32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/protobuf/protoc-osx-x86_32.exe -------------------------------------------------------------------------------- /third_party/protobuf/protoc-osx-x86_64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/protobuf/protoc-osx-x86_64.exe -------------------------------------------------------------------------------- /third_party/py/mock/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/_static/file.png -------------------------------------------------------------------------------- /third_party/py/mock/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/_static/minus.png -------------------------------------------------------------------------------- /third_party/py/mock/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/_static/plus.png -------------------------------------------------------------------------------- /third_party/py/mock/html/_static/scrn1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/_static/scrn1.png -------------------------------------------------------------------------------- /third_party/py/mock/html/_static/scrn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/_static/scrn2.png -------------------------------------------------------------------------------- /examples/cpp/README.md: -------------------------------------------------------------------------------- 1 | C++ Examples 2 | ============ 3 | 4 | These examples demonstrate building C++ binaries, libraries, and tests. 5 | -------------------------------------------------------------------------------- /scripts/resources/idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/objc_tools/plmerge/README: -------------------------------------------------------------------------------- 1 | plmerge merges plist files into one. It is similar to Xcode's built in 2 | builtin-infoPlistUtility. 3 | -------------------------------------------------------------------------------- /third_party/apache_velocity/velocity-1.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/apache_velocity/velocity-1.7.jar -------------------------------------------------------------------------------- /third_party/guice/guice-multibindings-4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/guice/guice-multibindings-4.0.jar -------------------------------------------------------------------------------- /third_party/ijar/test/libwrongcentraldir.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/ijar/test/libwrongcentraldir.jar -------------------------------------------------------------------------------- /third_party/maven_model/maven-model-3.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/maven_model/maven-model-3.2.3.jar -------------------------------------------------------------------------------- /third_party/mockito/mockito-all-1.10.19.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/mockito/mockito-all-1.10.19.jar -------------------------------------------------------------------------------- /third_party/protobuf/protoc-linux-x86_32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/protobuf/protoc-linux-x86_32.exe -------------------------------------------------------------------------------- /third_party/protobuf/protoc-linux-x86_64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/protobuf/protoc-linux-x86_64.exe -------------------------------------------------------------------------------- /third_party/py/mock/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE.txt tox.ini tests/*.py 2 | recursive-include docs *.txt *.py *.png *.css *.html *.js 3 | -------------------------------------------------------------------------------- /tools/build_defs/pkg/testdata/tar_test.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/tools/build_defs/pkg/testdata/tar_test.tar.gz -------------------------------------------------------------------------------- /tools/build_defs/pkg/testdata/tar_test.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/tools/build_defs/pkg/testdata/tar_test.tar.xz -------------------------------------------------------------------------------- /examples/py_native/lib.py: -------------------------------------------------------------------------------- 1 | """A tiny example binary for the native Python rules of Bazel.""" 2 | 3 | 4 | def GetNumber(): 5 | return 42 6 | -------------------------------------------------------------------------------- /src/test/shell/bazel/testdata/pluto-repo.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/src/test/shell/bazel/testdata/pluto-repo.tar.gz -------------------------------------------------------------------------------- /third_party/apache_httpcore/httpcore-4.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/apache_httpcore/httpcore-4.2.4.jar -------------------------------------------------------------------------------- /third_party/pcollections/pcollections-2.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/pcollections/pcollections-2.1.2.jar -------------------------------------------------------------------------------- /third_party/protobuf/protoc-windows-x86_32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/protobuf/protoc-windows-x86_32.exe -------------------------------------------------------------------------------- /third_party/protobuf/protoc-windows-x86_64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/protobuf/protoc-windows-x86_64.exe -------------------------------------------------------------------------------- /third_party/py/mock/html/.doctrees/mock.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/.doctrees/mock.doctree -------------------------------------------------------------------------------- /tools/build_defs/pkg/testdata/tar_test.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/tools/build_defs/pkg/testdata/tar_test.tar.bz2 -------------------------------------------------------------------------------- /examples/android/java/bazel/jni_dep.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | jstring NewStringLatin1(JNIEnv *env, const char *str); 6 | -------------------------------------------------------------------------------- /src/test/shell/bazel/testdata/refetch-repo.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/src/test/shell/bazel/testdata/refetch-repo.tar.gz -------------------------------------------------------------------------------- /third_party/aether/aether-api-1.0.0.v20140518.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/aether/aether-api-1.0.0.v20140518.jar -------------------------------------------------------------------------------- /third_party/aether/aether-impl-1.0.0.v20140518.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/aether/aether-impl-1.0.0.v20140518.jar -------------------------------------------------------------------------------- /third_party/aether/aether-spi-1.0.0.v20140518.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/aether/aether-spi-1.0.0.v20140518.jar -------------------------------------------------------------------------------- /third_party/aether/aether-util-1.0.0.v20140518.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/aether/aether-util-1.0.0.v20140518.jar -------------------------------------------------------------------------------- /third_party/apache_httpclient/httpclient-4.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/apache_httpclient/httpclient-4.2.5.jar -------------------------------------------------------------------------------- /third_party/bytebuddy/byte-buddy-dep-0.7-rc6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/bytebuddy/byte-buddy-dep-0.7-rc6.jar -------------------------------------------------------------------------------- /third_party/jformatstring/jFormatString-3.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/jformatstring/jFormatString-3.0.0.jar -------------------------------------------------------------------------------- /third_party/maven/maven-builder-support-3.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/maven/maven-builder-support-3.3.3.jar -------------------------------------------------------------------------------- /third_party/maven/maven-settings-builder-3.3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/maven/maven-settings-builder-3.3.3.jar -------------------------------------------------------------------------------- /third_party/plexus_utils/plexus-utils-3.0.21.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/plexus_utils/plexus-utils-3.0.21.jar -------------------------------------------------------------------------------- /third_party/py/mock/html/.doctrees/compare.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/.doctrees/compare.doctree -------------------------------------------------------------------------------- /third_party/py/mock/html/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/.doctrees/index.doctree -------------------------------------------------------------------------------- /third_party/py/mock/html/.doctrees/patch.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/.doctrees/patch.doctree -------------------------------------------------------------------------------- /third_party/py/mock/html/_static/documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/_static/documentation.png -------------------------------------------------------------------------------- /third_party/py/mock/html/_static/header_sm_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/_static/header_sm_mid.png -------------------------------------------------------------------------------- /third_party/py/mock/html/_static/triangle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/_static/triangle_left.png -------------------------------------------------------------------------------- /third_party/py/mock/html/_static/triangle_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/_static/triangle_open.png -------------------------------------------------------------------------------- /third_party/protobuf/protobuf-java-3.0.0-alpha-3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/protobuf/protobuf-java-3.0.0-alpha-3.jar -------------------------------------------------------------------------------- /third_party/py/mock/html/.doctrees/changelog.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/.doctrees/changelog.doctree -------------------------------------------------------------------------------- /third_party/py/mock/html/.doctrees/examples.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/.doctrees/examples.doctree -------------------------------------------------------------------------------- /third_party/py/mock/html/.doctrees/magicmock.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/.doctrees/magicmock.doctree -------------------------------------------------------------------------------- /third_party/py/mock/html/.doctrees/sentinel.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/.doctrees/sentinel.doctree -------------------------------------------------------------------------------- /third_party/py/mock/html/_static/triangle_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/_static/triangle_closed.png -------------------------------------------------------------------------------- /src/test/shell/bazel/testdata/outer-planets-repo.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/src/test/shell/bazel/testdata/outer-planets-repo.tar.gz -------------------------------------------------------------------------------- /third_party/apache_commons_codec/commons-codec-1.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/apache_commons_codec/commons-codec-1.9.jar -------------------------------------------------------------------------------- /third_party/apache_commons_pool2/commons-pool2-2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/apache_commons_pool2/commons-pool2-2.3.jar -------------------------------------------------------------------------------- /third_party/jcip_annotations/jcip-annotations-1.0-1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/jcip_annotations/jcip-annotations-1.0-1.jar -------------------------------------------------------------------------------- /third_party/maven_model/maven-aether-provider-3.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/maven_model/maven-aether-provider-3.2.3.jar -------------------------------------------------------------------------------- /third_party/maven_model/maven-model-builder-3.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/maven_model/maven-model-builder-3.2.3.jar -------------------------------------------------------------------------------- /third_party/py/mock/html/_static/searchfield_repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/_static/searchfield_repeat.png -------------------------------------------------------------------------------- /third_party/py/mock/html/_static/title_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/_static/title_background.png -------------------------------------------------------------------------------- /examples/sass/shared/_colors.scss: -------------------------------------------------------------------------------- 1 | // Colors that all Sass code can share. 2 | 3 | $example-blue: #00f; 4 | $example-red: #f00; 5 | $example-green: #008000; 6 | -------------------------------------------------------------------------------- /src/main/java/com/google/devtools/build/lib/bazel/rules/tools.WORKSPACE: -------------------------------------------------------------------------------- 1 | local_repository(name = "bazel_tools", path = __embedded_dir__ + "/embedded_tools") 2 | -------------------------------------------------------------------------------- /third_party/py/mock/html/.doctrees/mocksignature.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/.doctrees/mocksignature.doctree -------------------------------------------------------------------------------- /third_party/py/mock/html/_static/searchfield_leftcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/_static/searchfield_leftcap.png -------------------------------------------------------------------------------- /third_party/py/mock/html/_static/searchfield_rightcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/_static/searchfield_rightcap.png -------------------------------------------------------------------------------- /tools/objc/memleaks_plugin_stub: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ( 4 | printf 'Bazel does not yet support memleaks detection for ios_tests.\n' 5 | ) >&2 6 | 7 | exit 1 8 | -------------------------------------------------------------------------------- /examples/go/lib/lib.go: -------------------------------------------------------------------------------- 1 | package lib 2 | 3 | // Meaning calculates the meaning of Life, the Universe and Everything. 4 | func Meaning() int { 5 | return 42 6 | } 7 | -------------------------------------------------------------------------------- /third_party/aether/aether-transport-file-1.0.0.v20140518.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/aether/aether-transport-file-1.0.0.v20140518.jar -------------------------------------------------------------------------------- /third_party/aether/aether-transport-http-1.0.0.v20140518.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/aether/aether-transport-http-1.0.0.v20140518.jar -------------------------------------------------------------------------------- /third_party/apache_commons_logging/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/apache_commons_logging/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /third_party/checker_framework_dataflow/dataflow-1.8.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/checker_framework_dataflow/dataflow-1.8.10.jar -------------------------------------------------------------------------------- /third_party/error_prone/error_prone_core-2.0.8-20151216.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/error_prone/error_prone_core-2.0.8-20151216.jar -------------------------------------------------------------------------------- /third_party/jgit/org.eclipse.jgit-4.0.1.201506240215-r.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/jgit/org.eclipse.jgit-4.0.1.201506240215-r.jar -------------------------------------------------------------------------------- /third_party/maven_model/maven-repository-metadata-3.2.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/maven_model/maven-repository-metadata-3.2.3.jar -------------------------------------------------------------------------------- /third_party/py/mock/html/.doctrees/getting-started.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/.doctrees/getting-started.doctree -------------------------------------------------------------------------------- /third_party/py/mock/html/_static/breadcrumb_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/py/mock/html/_static/breadcrumb_background.png -------------------------------------------------------------------------------- /tools/objc/memleaks/memleaks_stub: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ( 4 | printf 'Bazel does not yet support memleaks detection for ios_tests.\n' 5 | ) >&2 6 | 7 | exit 1 8 | -------------------------------------------------------------------------------- /src/main/java/com/google/devtools/build/lib/runtime/commands/version.txt: -------------------------------------------------------------------------------- 1 | Prints the version information that was embedded when %{product} was built. 2 | 3 | %{options} 4 | -------------------------------------------------------------------------------- /third_party/aether/aether-connector-basic-1.0.0.v20140518.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/aether/aether-connector-basic-1.0.0.v20140518.jar -------------------------------------------------------------------------------- /third_party/aether/aether-transport-wagon-1.0.0.v20140518.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/aether/aether-transport-wagon-1.0.0.v20140518.jar -------------------------------------------------------------------------------- /third_party/android_common/com.android.tools_common_23.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/android_common/com.android.tools_common_23.1.3.jar -------------------------------------------------------------------------------- /third_party/android_common/com.android.tools_sdklib_23.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/android_common/com.android.tools_sdklib_23.1.3.jar -------------------------------------------------------------------------------- /third_party/plexus_interpolation/plexus-interpolation-1.22.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/plexus_interpolation/plexus-interpolation-1.22.jar -------------------------------------------------------------------------------- /src/main/tools/build_interface_so: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [[ $# != 2 ]]; then 4 | echo "Usage: $0 " 1>&2 5 | exit 1 6 | fi 7 | 8 | exec cp $1 $2 9 | -------------------------------------------------------------------------------- /third_party/aether/aether-transport-classpath-1.0.0.v20140518.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/aether/aether-transport-classpath-1.0.0.v20140518.jar -------------------------------------------------------------------------------- /third_party/error_prone/error_prone_annotation-2.0.8-20151216.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/error_prone/error_prone_annotation-2.0.8-20151216.jar -------------------------------------------------------------------------------- /examples/go/vendor/github_com/user/vendored/vendored.go: -------------------------------------------------------------------------------- 1 | package vendored 2 | 3 | // Vendored returns a string. 4 | func Vendored() string { 5 | return "I was vendored" 6 | } 7 | -------------------------------------------------------------------------------- /third_party/android_common/com.android.tools_sdk-common_23.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/android_common/com.android.tools_sdk-common_23.1.3.jar -------------------------------------------------------------------------------- /third_party/apache_commons_compress/apache-commons-compress-1.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/apache_commons_compress/apache-commons-compress-1.9.jar -------------------------------------------------------------------------------- /third_party/error_prone/error_prone_annotations-2.0.8-20151216.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/error_prone/error_prone_annotations-2.0.8-20151216.jar -------------------------------------------------------------------------------- /third_party/tomcat_annotations_api/tomcat-annotations-api-8.0.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/tomcat_annotations_api/tomcat-annotations-api-8.0.5.jar -------------------------------------------------------------------------------- /src/test/java/com/google/devtools/build/lib/vfs/sample_with_dirs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/src/test/java/com/google/devtools/build/lib/vfs/sample_with_dirs.zip -------------------------------------------------------------------------------- /third_party/android_common/com.android.tools.build_builder_0.13.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/android_common/com.android.tools.build_builder_0.13.3.jar -------------------------------------------------------------------------------- /third_party/apache_commons_collections/commons-collections-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/apache_commons_collections/commons-collections-3.2.1.jar -------------------------------------------------------------------------------- /tools/build_defs/pkg/testdata/a_b.ar: -------------------------------------------------------------------------------- 1 | ! 2 | a/ 1439231934 1000 1000 100664 1 ` 3 | a 4 | b/ 1439231939 1000 1000 100664 1 ` 5 | b 6 | -------------------------------------------------------------------------------- /examples/py_native/bin.py: -------------------------------------------------------------------------------- 1 | """A tiny example binary for the native Python rules of Bazel.""" 2 | from examples.py_native.lib import GetNumber 3 | 4 | print "The number is %d" % GetNumber() 5 | -------------------------------------------------------------------------------- /site/blog/_posts/2015-3-27-Hello-World.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: posts 3 | title: Hello World 4 | --- 5 | 6 | Welcome to the Bazel blog! We'll be using this forum for news and 7 | announcements. 8 | -------------------------------------------------------------------------------- /src/test/java/com/google/devtools/build/lib/vfs/sample_without_dirs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/src/test/java/com/google/devtools/build/lib/vfs/sample_without_dirs.zip -------------------------------------------------------------------------------- /tools/build_defs/pkg/testdata/a_ab.ar: -------------------------------------------------------------------------------- 1 | ! 2 | a/ 1439231934 1000 1000 100664 1 ` 3 | a 4 | ab/ 1439231936 1000 1000 100664 2 ` 5 | ab 6 | -------------------------------------------------------------------------------- /tools/build_defs/scala/test/ScalaBinary.scala: -------------------------------------------------------------------------------- 1 | package scala.test 2 | 3 | object ScalaBinary { 4 | def main(args: Array[String]) { 5 | HelloLib.printMessage("Hello"); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /tools/objc/sim_devices/BUILD: -------------------------------------------------------------------------------- 1 | package(default_visibility = ["//visibility:public"]) 2 | 3 | ios_device( 4 | name = "default", 5 | ios_version = "8.4", 6 | type = "IPHONE", 7 | ) 8 | -------------------------------------------------------------------------------- /tools/test_sharding_compliant: -------------------------------------------------------------------------------- 1 | Used by Bazel. It is just a file to have an explicit target that 2 | sharding-compliant targets can depend on. The content of this file 3 | does not matter. 4 | -------------------------------------------------------------------------------- /src/main/java/com/google/devtools/build/lib/bazel/rules/android/android_ndk_stl_filegroup_template.txt: -------------------------------------------------------------------------------- 1 | filegroup( 2 | name = "%name%", 3 | srcs = glob(["%fileGlobPattern%"]), 4 | ) 5 | 6 | -------------------------------------------------------------------------------- /third_party/android_common/com.android.tools.build_builder-model_0.13.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/android_common/com.android.tools.build_builder-model_0.13.3.jar -------------------------------------------------------------------------------- /third_party/android_common/com.android.tools.layoutlib_layoutlib_23.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/android_common/com.android.tools.layoutlib_layoutlib_23.1.3.jar -------------------------------------------------------------------------------- /third_party/py/mock/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2007-2012 Michael Foord & the mock team 2 | # E-mail: fuzzyman AT voidspace DOT org DOT uk 3 | # http://www.voidspace.org.uk/python/mock/ 4 | -------------------------------------------------------------------------------- /src/main/java/com/google/devtools/build/docgen/templates/skylark-nav.vm: -------------------------------------------------------------------------------- 1 | #foreach ($module in $modules) 2 | 3 |
  • ${module.title}
  • 4 | #end 5 | -------------------------------------------------------------------------------- /third_party/android_common/com.android.tools.build_manifest-merger_23.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/android_common/com.android.tools.build_manifest-merger_23.1.3.jar -------------------------------------------------------------------------------- /third_party/plexus_component_annotations/plexus-component-annotations-1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex/bazel/master/third_party/plexus_component_annotations/plexus-component-annotations-1.6.jar -------------------------------------------------------------------------------- /examples/android/java/bazel/Jni.java: -------------------------------------------------------------------------------- 1 | package bazel; 2 | 3 | /** 4 | * JNI stubs for the Bazel Android "Hello, World" app. 5 | */ 6 | public class Jni { 7 | public static native String hello(); 8 | } 9 | -------------------------------------------------------------------------------- /examples/java-skylark/src/test/java/com/example/myproject/Fail.java: -------------------------------------------------------------------------------- 1 | package com.example.myproject; 2 | 3 | class Fail { 4 | public static void main(String []args) { 5 | System.exit(1); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /scripts/resources/idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/main/java/com/google/devtools/build/lib/bazel/commands/fetch.txt: -------------------------------------------------------------------------------- 1 | 2 | Usage: %{product} %{command} [