New feature: Build Profiling 80/256980/4
authorhyokeun.jeon <hyokeun.jeon@samsung.com>
Fri, 16 Apr 2021 02:11:31 +0000 (11:11 +0900)
committerhyokeun.jeon <hyokeun.jeon@samsung.com>
Fri, 16 Apr 2021 09:26:44 +0000 (18:26 +0900)
commit94c7be8eb6ade6384c64e6d7b1483c53ed2192e4
tree98f17e94c4bf1aa824cccb5b78ee9d7f3a0cd271
parent180ca69222ef340f0f07b4e07f36abab2db85b67
New feature: Build Profiling

Change-Id: I574195db54e4a5af829720bb8bdaeeaa8f7ff899
67 files changed:
Makefile
bsr/.coveragerc [new file with mode: 0644]
bsr/.gitignore [new file with mode: 0644]
bsr/LICENSE [new file with mode: 0644]
bsr/README.md [new file with mode: 0644]
bsr/bsr/.pylintrc [new file with mode: 0644]
bsr/bsr/__init__.py [new file with mode: 0644]
bsr/bsr/__version__.py [new file with mode: 0644]
bsr/bsr/analyzer/__init__.py [new file with mode: 0644]
bsr/bsr/analyzer/data_analyzer.py [new file with mode: 0644]
bsr/bsr/bsr [new file with mode: 0755]
bsr/bsr/gbs/__init__.py [new file with mode: 0644]
bsr/bsr/gbs/gbs_actions.py [new file with mode: 0644]
bsr/bsr/network/__init__.py [new file with mode: 0644]
bsr/bsr/network/dep_graph.py [new file with mode: 0644]
bsr/bsr/network/dep_parse.py [new file with mode: 0644]
bsr/bsr/report/__init__.py [new file with mode: 0644]
bsr/bsr/report/build_time.py [new file with mode: 0644]
bsr/bsr/report/depends_xml.py [new file with mode: 0644]
bsr/bsr/report/info_meta.py [new file with mode: 0644]
bsr/bsr/tests/__init__.py [new file with mode: 0644]
bsr/bsr/tests/test_build_time.py [new file with mode: 0644]
bsr/bsr/tests/test_data_analyzer.py [new file with mode: 0644]
bsr/bsr/tests/test_depends_xml.py [new file with mode: 0644]
bsr/bsr/tests/test_gbs_actions.py [new file with mode: 0644]
bsr/bsr/tests/test_info_meta.py [new file with mode: 0644]
bsr/bsr/tests/test_network.py [new file with mode: 0644]
bsr/bsr/utility/__init__.py [new file with mode: 0644]
bsr/bsr/utility/monitoring.py [new file with mode: 0644]
bsr/bsr/utility/utils.py [new file with mode: 0644]
bsr/bsr/web_dist/asset-manifest.json [new file with mode: 0644]
bsr/bsr/web_dist/images/Tizen-Pinwheel-On-Light-RGB.png [new file with mode: 0644]
bsr/bsr/web_dist/images/fox.svg [new file with mode: 0644]
bsr/bsr/web_dist/index.html [new file with mode: 0644]
bsr/bsr/web_dist/static/css/2.e905ac86.chunk.css [new file with mode: 0644]
bsr/bsr/web_dist/static/css/main.c6b1a691.chunk.css [new file with mode: 0644]
bsr/bsr/web_dist/static/js/2.b9f32fb5.chunk.js [new file with mode: 0644]
bsr/bsr/web_dist/static/js/2.b9f32fb5.chunk.js.LICENSE.txt [new file with mode: 0644]
bsr/bsr/web_dist/static/js/main.b95f85c6.chunk.js [new file with mode: 0644]
bsr/bsr/web_dist/static/js/runtime-main.bc689076.js [new file with mode: 0644]
bsr/bsr/web_dist/static/media/brand-icons.278156e4.woff2 [new file with mode: 0644]
bsr/bsr/web_dist/static/media/brand-icons.65a2fb6d.ttf [new file with mode: 0644]
bsr/bsr/web_dist/static/media/brand-icons.6729d297.svg [new file with mode: 0644]
bsr/bsr/web_dist/static/media/brand-icons.cac87dc0.woff [new file with mode: 0644]
bsr/bsr/web_dist/static/media/brand-icons.d68fa3e6.eot [new file with mode: 0644]
bsr/bsr/web_dist/static/media/flags.99f63ae7.png [new file with mode: 0644]
bsr/bsr/web_dist/static/media/icons.38c6d8ba.woff2 [new file with mode: 0644]
bsr/bsr/web_dist/static/media/icons.425399f8.woff [new file with mode: 0644]
bsr/bsr/web_dist/static/media/icons.62d9dae4.svg [new file with mode: 0644]
bsr/bsr/web_dist/static/media/icons.a01e3f2d.eot [new file with mode: 0644]
bsr/bsr/web_dist/static/media/icons.c656b8ca.ttf [new file with mode: 0644]
bsr/bsr/web_dist/static/media/outline-icons.53671035.ttf [new file with mode: 0644]
bsr/bsr/web_dist/static/media/outline-icons.687a4990.woff2 [new file with mode: 0644]
bsr/bsr/web_dist/static/media/outline-icons.752905fa.eot [new file with mode: 0644]
bsr/bsr/web_dist/static/media/outline-icons.9c4845b4.svg [new file with mode: 0644]
bsr/bsr/web_dist/static/media/outline-icons.ddae9b1b.woff [new file with mode: 0644]
bsr/requirements.txt [new file with mode: 0644]
bsr/setup.cfg [new file with mode: 0644]
bsr/setup.py [new file with mode: 0644]
bsr/tox.ini [new file with mode: 0644]
debian/control
debian/gbs-bsr.install [new file with mode: 0644]
debian/gbs.install
debian/rules
gitbuildsys/cmd_build.py
packaging/gbs.spec
tools/gbs