Skip to content
This repository was archived by the owner on Nov 10, 2023. It is now read-only.

Commit 3ffe61a

Browse files
committed
Initial import.
0 parents  commit 3ffe61a

756 files changed

Lines changed: 96268 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.buckconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[java]
2+
# Indicates that any folder named src or test
3+
# are folders that contain Java code.
4+
src_roots = src, test
5+
[alias]
6+
buck = //src/com/facebook/buck/cli:cli

.classpath

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry excluding="**/BUCK" kind="src" path="src"/>
4+
<classpathentry excluding="**/BUCK" kind="src" path="third-party/java/aosp/src"/>
5+
<classpathentry excluding="**/BUCK" kind="src" path="test"/>
6+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
7+
<classpathentry kind="lib" path="lib/guava-14.0.1.jar"/>
8+
<classpathentry kind="lib" path="lib/ddmlib-r21.jar"/>
9+
<classpathentry kind="lib" path="lib/args4j.jar"/>
10+
<classpathentry kind="lib" path="lib/junit-4.11.jar"/>
11+
<classpathentry kind="lib" path="lib/jsr305.jar"/>
12+
<classpathentry kind="lib" path="lib/easymock-3.0.jar"/>
13+
<classpathentry kind="lib" path="lib/objenesis-1.2.jar"/>
14+
<classpathentry kind="lib" path="lib/cglib-nodep-2.2.jar"/>
15+
<classpathentry kind="lib" path="lib/jackson-core-2.0.5.jar"/>
16+
<classpathentry kind="lib" path="lib/jackson-databind-2.0.5.jar"/>
17+
<classpathentry kind="lib" path="lib/jackson-annotations-2.0.5.jar"/>
18+
<classpathentry kind="lib" path="lib/ini4j-0.5.2.jar"/>
19+
<classpathentry kind="lib" path="lib/hamcrest-core-1.3.jar"/>
20+
<classpathentry kind="lib" path="lib/hamcrest-library-1.3.jar"/>
21+
<classpathentry kind="lib" path="lib/sdklib.jar"/>
22+
<classpathentry kind="output" path="build/classes"/>
23+
</classpath>

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Ant
2+
build/
3+
4+
# Buck
5+
/buck-out/
6+
local.properties
7+
8+
# Compiled Python
9+
*.pyc
10+
11+
# IntelliJ, based on http://devnet.jetbrains.net/docs/DOC-1186
12+
.idea/dictionaries
13+
.idea/inspectionProfiles
14+
.idea/tasks.xml
15+
.idea/uiDesigner.xml
16+
.idea/workspace.xml
17+
18+
# From building Emma with Ant.
19+
/third-party/java/emma-2.0.5312/out/
20+
21+
# OS X
22+
.DS_Store
23+

.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/ant.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyleSettings.xml

Lines changed: 39 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/buck_lib.xml

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)