This repository has been archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
809 changed files
with
19,104 additions
and
16,892 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<launchConfiguration type="org.eclipse.ui.externaltools.ProgramBuilderLaunchConfigurationType"> | ||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> | ||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="/opt/local/bin/python"/> | ||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS" value="full,incremental,"/> | ||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS" value="make_dev.py linux"/> | ||
<booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/> | ||
<stringAttribute key="org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY" value="${project_loc}/build"/> | ||
</launchConfiguration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.sh text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,27 @@ | ||
.project | ||
.pydevproject | ||
dev_builds | ||
.settings | ||
build | ||
*.env | ||
*.egg-info | ||
src/dist | ||
build/dist/osx/installer/Readme.txt | ||
build/dist/osx/installer/License.txt | ||
doc/fontconfig | ||
doc/html | ||
doc/pdf | ||
*.bak | ||
*.pyc | ||
CERT_Basic_Fuzzing_Framework.egg-info | ||
dev_builds | ||
doc | ||
dist_builds | ||
setup_env/bff.env | ||
src/dist | ||
src/linux/COPYING.txt | ||
src/windows/COPYING.txt | ||
build/distmods/osx/installer/bff/ | ||
build/distmods/osx/installer/*.txt | ||
*.stackdump | ||
.teeproject | ||
.externalToolBuilders | ||
*.pkl | ||
doc/epydoc/html | ||
doc/epydoc/fontconfig |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ subject to the following terms: | |
|
||
# LICENSE # | ||
|
||
Copyright © 2013 Carnegie Mellon University. All Rights Reserved. | ||
Copyright © 2010-2016 Carnegie Mellon University. All Rights Reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
@@ -13,7 +13,7 @@ modification, are permitted provided that the following conditions are met: | |
3. Products derived from this software may not include "Carnegie Mellon University," "SEI" and/or "Software Engineering Institute" in the name of such derived product, nor shall "Carnegie Mellon University," "SEI" and/or "Software Engineering Institute" be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact [email protected]. | ||
|
||
# ACKNOWLEDGMENTS AND DISCLAIMERS: # | ||
Copyright © 2013 Carnegie Mellon University | ||
Copyright © 2010-2016 Carnegie Mellon University | ||
|
||
This material is based upon work funded and supported by the Department of | ||
Homeland Security under Contract No. FA8721-05-C-0003 with Carnegie Mellon | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Use make_dev.py to copy files in a dev environment to a different dir for use by | ||
your test VM. | ||
|
||
Use make_dist2.py to build a distributable package. | ||
|
||
usage: make_dist2.py [-h] [-d] [-v] platform srcpath distpath | ||
|
||
positional arguments: | ||
platform One of ['windows', 'darwin', 'linux'] | ||
srcpath path/to/bff/src | ||
distpath Directory to build into | ||
|
||
optional arguments: | ||
-h, --help show this help message and exit | ||
-d, --debug enable debug messages | ||
-v, --verbose enable debug messages |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
''' | ||
Created on Dec 9, 2013 | ||
@author: adh | ||
''' | ||
from .. import Build | ||
import os | ||
import sys | ||
mydir = os.path.dirname(os.path.abspath(__file__)) | ||
parentdir = os.path.abspath(os.path.join(mydir, '..')) | ||
sys.path.append(parentdir) | ||
from devmods.misc import copyfile | ||
|
||
|
||
class WindowsBuild(Build): | ||
_name = 'BFF' | ||
_platform = 'windows' | ||
|
||
def _copy_platform(self): | ||
target_path = self.target_path | ||
Build._copy_platform(self) | ||
# Copy example bff.yaml file to configs directory | ||
f_src = os.path.join(target_path, 'configs', 'examples', 'bff.yaml') | ||
f_dst = os.path.join(target_path, 'configs') | ||
copyfile(f_src, f_dst) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.