├── third_party
├── BUILD
└── maven
│ ├── BUILD
│ ├── org
│ ├── json
│ │ └── BUILD
│ ├── jsoup
│ │ └── BUILD
│ ├── yaml
│ │ └── BUILD
│ ├── javassist
│ │ └── BUILD
│ ├── objenesis
│ │ └── BUILD
│ ├── threeten
│ │ └── BUILD
│ ├── antlr
│ │ └── BUILD
│ ├── hamcrest
│ │ └── BUILD
│ ├── codehaus
│ │ └── mojo
│ │ │ └── BUILD
│ ├── mockito
│ │ └── BUILD
│ ├── apache
│ │ ├── commons
│ │ │ └── BUILD
│ │ ├── ant
│ │ │ └── BUILD
│ │ ├── pdfbox
│ │ │ └── BUILD
│ │ └── httpcomponents
│ │ │ └── BUILD
│ ├── slf4j
│ │ └── BUILD
│ └── checkerframework
│ │ └── BUILD
│ ├── com
│ ├── jcraft
│ │ └── BUILD
│ ├── squareup
│ │ ├── okio
│ │ │ └── BUILD
│ │ ├── BUILD
│ │ └── okhttp
│ │ │ └── BUILD
│ ├── google
│ │ ├── code
│ │ │ ├── gson
│ │ │ │ └── BUILD
│ │ │ └── findbugs
│ │ │ │ └── BUILD
│ │ ├── re2j
│ │ │ └── BUILD
│ │ ├── j2objc
│ │ │ └── BUILD
│ │ ├── jimfs
│ │ │ └── BUILD
│ │ ├── auto
│ │ │ ├── BUILD
│ │ │ ├── factory
│ │ │ │ └── BUILD
│ │ │ ├── service
│ │ │ │ └── BUILD
│ │ │ └── value
│ │ │ │ └── BUILD
│ │ ├── apis
│ │ │ └── BUILD
│ │ ├── googlejavaformat
│ │ │ └── BUILD
│ │ ├── oauth_client
│ │ │ └── BUILD
│ │ ├── protobuf
│ │ │ └── BUILD
│ │ ├── flogger
│ │ │ └── BUILD
│ │ ├── auth
│ │ │ └── BUILD
│ │ ├── errorprone
│ │ │ └── BUILD
│ │ ├── api_client
│ │ │ └── BUILD
│ │ └── firebase
│ │ │ └── BUILD
│ ├── fasterxml
│ │ └── jackson
│ │ │ └── core
│ │ │ └── BUILD
│ └── puppycrawl
│ │ └── tools
│ │ └── BUILD
│ ├── antlr
│ └── BUILD
│ ├── javax
│ ├── inject
│ │ └── BUILD
│ └── annotation
│ │ └── BUILD
│ ├── info
│ └── picocli
│ │ └── BUILD
│ ├── commons_logging
│ └── BUILD
│ ├── net
│ ├── sf
│ │ └── saxon
│ │ │ └── BUILD
│ └── bytebuddy
│ │ └── BUILD
│ ├── commons_codec
│ └── BUILD
│ ├── commons_collections
│ └── BUILD
│ ├── junit
│ └── BUILD
│ └── commons_beanutils
│ └── BUILD
├── .bazelversion
├── reviewer-ci.sh
├── tools
├── protoc
│ ├── .gitignore
│ ├── package.json
│ └── README.md
├── workspacerun
│ ├── .gitignore
│ ├── apps.json
│ ├── package.json
│ └── README.md
├── reviewer
│ ├── local_server
│ │ ├── web_login
│ │ │ ├── .gitignore
│ │ │ ├── .firebaserc
│ │ │ ├── README.md
│ │ │ └── firebase.json
│ │ └── service
│ │ │ ├── tests
│ │ │ ├── get_diff_request.json
│ │ │ ├── get_diff_files_request.json
│ │ │ └── get_text_diff_request.json
│ │ │ └── auth_service.proto
│ ├── webapp
│ │ ├── functions
│ │ │ ├── .gitignore
│ │ │ └── package.json
│ │ ├── src
│ │ │ ├── app
│ │ │ │ ├── shared
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── speech-arrow
│ │ │ │ │ │ ├── speech-arrow.component.html
│ │ │ │ │ │ └── index.ts
│ │ │ │ │ ├── toolbar
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── toolbar.component.html
│ │ │ │ │ │ └── toolbar.component.ts
│ │ │ │ │ ├── diff-status
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── diff-status.component.scss
│ │ │ │ │ │ ├── diff-status.component.html
│ │ │ │ │ │ ├── diff-status.component.ts
│ │ │ │ │ │ └── status-list.ts
│ │ │ │ │ ├── page-loading
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── page-loading.component.scss
│ │ │ │ │ │ ├── page-loading.component.html
│ │ │ │ │ │ └── page-loading.component.ts
│ │ │ │ │ ├── thread
│ │ │ │ │ │ ├── new-thread
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── new-thread.component.scss
│ │ │ │ │ │ │ ├── new-thread.component.ts
│ │ │ │ │ │ │ └── new-thread.component.html
│ │ │ │ │ │ ├── thread-reply
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ └── thread-reply.component.scss
│ │ │ │ │ │ ├── thread-comments
│ │ │ │ │ │ │ ├── comment-menu
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── comment-menu.component.html
│ │ │ │ │ │ │ │ └── comment-menu.component.ts
│ │ │ │ │ │ │ ├── thread-edit-comment
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── thread-edit-comment.component.scss
│ │ │ │ │ │ │ │ └── thread-edit-comment.component.html
│ │ │ │ │ │ │ ├── thread-comments.interface.ts
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ └── thread-comments.component.scss
│ │ │ │ │ │ ├── delete-comment-dialog
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── delete-comment-dialog.component.scss
│ │ │ │ │ │ │ ├── delete-comment-dialog.component.html
│ │ │ │ │ │ │ └── delete-comment-dialog.component.ts
│ │ │ │ │ │ ├── thread.component.scss
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── thread.component.html
│ │ │ │ │ │ ├── index.scss
│ │ │ │ │ │ └── thread.service.ts
│ │ │ │ │ ├── select-dashboard
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── select-dashboard.component.ts
│ │ │ │ │ │ ├── select-dashboard.component.html
│ │ │ │ │ │ └── select-dashboard.component.scss
│ │ │ │ │ ├── code-changes
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── services
│ │ │ │ │ │ │ └── index.ts
│ │ │ │ │ │ ├── basic-styles.scss
│ │ │ │ │ │ └── code-changes.interface.ts
│ │ │ │ │ ├── pipes
│ │ │ │ │ │ └── index.ts
│ │ │ │ │ └── directives
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── focus.directive.ts
│ │ │ │ │ │ └── html.directive.ts
│ │ │ │ ├── routes
│ │ │ │ │ ├── diff
│ │ │ │ │ │ ├── diff-discussion
│ │ │ │ │ │ │ ├── diff-discussion.component.scss
│ │ │ │ │ │ │ ├── code-threads
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── code-threads.component.scss
│ │ │ │ │ │ │ │ └── code-threads.component.html
│ │ │ │ │ │ │ ├── diff-threads
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── diff-threads.component.scss
│ │ │ │ │ │ │ │ └── diff-threads.component.html
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── diff-discussion.component.html
│ │ │ │ │ │ │ └── diff-discussion.component.ts
│ │ │ │ │ │ ├── diff-files
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ └── diff-files.component.scss
│ │ │ │ │ │ ├── diff-header
│ │ │ │ │ │ │ ├── user-popup
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── user-popup.component.html
│ │ │ │ │ │ │ │ └── user-popup.component.scss
│ │ │ │ │ │ │ ├── reply-popup
│ │ │ │ │ │ │ │ └── index.ts
│ │ │ │ │ │ │ ├── add-user-popup
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ └── add-user-popup.component.html
│ │ │ │ │ │ │ ├── diff-header-content
│ │ │ │ │ │ │ │ └── index.ts
│ │ │ │ │ │ │ ├── diff-header-titlebar
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ └── diff-header-titlebar.component.scss
│ │ │ │ │ │ │ ├── diff-header.component.html
│ │ │ │ │ │ │ ├── diff-header.component.ts
│ │ │ │ │ │ │ └── index.ts
│ │ │ │ │ │ ├── delete-diff-dialog
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── delete-diff-dialog.component.scss
│ │ │ │ │ │ │ └── delete-diff-dialog.component.html
│ │ │ │ │ │ ├── diff-routing.module.ts
│ │ │ │ │ │ ├── diff.component.html
│ │ │ │ │ │ └── diff.module.ts
│ │ │ │ │ ├── login
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ ├── login.component.html
│ │ │ │ │ │ └── login.component.ts
│ │ │ │ │ ├── page-not-found
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── page-not-found.component.ts
│ │ │ │ │ ├── file-changes
│ │ │ │ │ │ ├── commit-menu
│ │ │ │ │ │ │ ├── commit-popup
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── commit-popup.component.html
│ │ │ │ │ │ │ │ ├── commit-popup.component.ts
│ │ │ │ │ │ │ │ └── commit-popup.component.scss
│ │ │ │ │ │ │ ├── drag-element
│ │ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ │ ├── drag-element.component.html
│ │ │ │ │ │ │ │ ├── drag-element.component.scss
│ │ │ │ │ │ │ │ └── drag-element.component.ts
│ │ │ │ │ │ │ └── index.ts
│ │ │ │ │ │ ├── file-changes-routing.module.ts
│ │ │ │ │ │ └── file-changes.module.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── log
│ │ │ │ │ │ ├── log.module.ts
│ │ │ │ │ │ ├── log-routing.module.ts
│ │ │ │ │ │ ├── log.component.html
│ │ │ │ │ │ └── log.component.scss
│ │ │ │ │ └── diffs
│ │ │ │ │ │ ├── diffs-routing.module.ts
│ │ │ │ │ │ ├── diffs.module.ts
│ │ │ │ │ │ └── diffs.component.scss
│ │ │ │ ├── app.component.html
│ │ │ │ ├── import
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── firebase
│ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ └── firebase.module.ts
│ │ │ │ │ └── material.module.ts
│ │ │ │ ├── core
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── services
│ │ │ │ │ │ ├── mock
│ │ │ │ │ │ │ ├── index.ts
│ │ │ │ │ │ │ ├── auth-mock.guard.ts
│ │ │ │ │ │ │ ├── auth-mock.service.ts
│ │ │ │ │ │ │ └── firebase-mock.service.ts
│ │ │ │ │ │ ├── document-event.service.ts
│ │ │ │ │ │ ├── encoding.service.ts
│ │ │ │ │ │ ├── auth.guard.ts
│ │ │ │ │ │ ├── exception.service.ts
│ │ │ │ │ │ ├── tests
│ │ │ │ │ │ │ └── encoding.service.spec.ts
│ │ │ │ │ │ └── highlight.service.ts
│ │ │ │ │ └── core.module.ts
│ │ │ │ ├── app.component.ts
│ │ │ │ ├── app.module.ts
│ │ │ │ └── app-testing-module.spec.ts
│ │ │ ├── polyfills.ts
│ │ │ ├── styles
│ │ │ │ ├── var.scss
│ │ │ │ ├── styles.scss
│ │ │ │ ├── themes
│ │ │ │ │ ├── index.scss
│ │ │ │ │ ├── ci.scss
│ │ │ │ │ ├── material.scss
│ │ │ │ │ └── notification.scss
│ │ │ │ ├── shared
│ │ │ │ │ ├── index.scss
│ │ │ │ │ ├── body.scss
│ │ │ │ │ ├── app.scss
│ │ │ │ │ └── mat.scss
│ │ │ │ └── variables
│ │ │ │ │ └── fonts.scss
│ │ │ ├── environments
│ │ │ │ ├── environment.ts
│ │ │ │ ├── environment.prod.ts
│ │ │ │ └── global-registry.ts
│ │ │ ├── favicon.ico
│ │ │ ├── assets
│ │ │ │ ├── logo.png
│ │ │ │ ├── expand-up.png
│ │ │ │ ├── expand-down.png
│ │ │ │ ├── fonts
│ │ │ │ │ └── opensans
│ │ │ │ │ │ ├── opensans.eot
│ │ │ │ │ │ ├── opensans.ttf
│ │ │ │ │ │ ├── opensans.woff
│ │ │ │ │ │ └── opensans.woff2
│ │ │ │ ├── ic-add-issue.svg
│ │ │ │ ├── ic-add-comment.svg
│ │ │ │ ├── status
│ │ │ │ │ ├── ic-submitted.svg
│ │ │ │ │ ├── ic-review-not-started.svg
│ │ │ │ │ ├── ic-reverted.svg
│ │ │ │ │ ├── ic-submitting.svg
│ │ │ │ │ ├── ic-reverting.svg
│ │ │ │ │ ├── ic-under-review.svg
│ │ │ │ │ ├── ic-needs-more-work.svg
│ │ │ │ │ └── ic-accepted.svg
│ │ │ │ ├── decoration-2.svg
│ │ │ │ ├── ic-add-person.svg
│ │ │ │ ├── decoration-1.svg
│ │ │ │ └── ic-search.svg
│ │ │ ├── tsconfig.app.json
│ │ │ ├── tsconfig.spec.json
│ │ │ ├── index.html
│ │ │ ├── main.ts
│ │ │ ├── test.ts
│ │ │ └── karma.conf.js
│ │ ├── .firebaserc
│ │ ├── proto.json
│ │ ├── .editorconfig
│ │ ├── firebase.json
│ │ ├── firestore.rules
│ │ ├── .gitignore
│ │ └── tsconfig.json
│ ├── job
│ │ └── tasks
│ │ │ ├── submitter.proto
│ │ │ └── Task.java
│ ├── aa
│ │ ├── config.proto
│ │ └── commands
│ │ │ └── checks
│ │ │ └── FixCommandCheck.java
│ ├── dockerfile
│ ├── rules_updater
│ │ ├── README.md
│ │ └── BUILD
│ ├── remote_server
│ │ ├── messages.proto
│ │ ├── BUILD
│ │ └── README.md
│ ├── global_registry.prototxt
│ ├── ReviewerConstants.java
│ └── docker-compose.yaml
├── checkstyle
│ ├── BUILD
│ ├── checkstyle.sh
│ ├── license-header.txt
│ └── check-for-missing-targets.sh
├── proto_tool
│ ├── README.md
│ └── BUILD
├── build_file_generator
│ └── tests
│ │ └── resources
│ │ ├── another_proto.proto
│ │ └── test_proto.proto
├── bazel_tools
│ ├── tsfmt.sh
│ ├── buildozer.sh
│ ├── buildifier.sh
│ ├── unused_deps.sh
│ └── shfmt.sh
├── pre-commit.sh
├── deps
│ ├── update_maven_deps.sh
│ ├── dependencies.proto
│ └── add_maven_deps.sh
├── grpcwebproxy.sh
├── formatter
│ ├── clang-format.sh
│ └── BUILD
├── grpc_java_plugin.sh
├── protoc.sh
├── completion.sh
├── fix_formatting.sh
└── bazel
├── .gitignore
├── test.sh
├── third_party_deps.zip
├── BUILD
├── examples
├── android
│ └── res
│ │ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ └── ic_launcher.png
│ │ ├── values
│ │ ├── strings.xml
│ │ └── dimens.xml
│ │ ├── values-w820dp
│ │ └── dimens.xml
│ │ └── layout
│ │ └── activity_main.xml
├── errorprone
│ └── README.md
├── proto_vs_json
│ ├── data.proto
│ └── BUILD
└── dagger
│ ├── example1
│ ├── BUILD
│ ├── Class1Interface.java
│ ├── App.java
│ ├── SomeComponent.java
│ ├── Class1Module.java
│ └── Class2.java
│ └── example2
│ ├── BUILD
│ ├── Class2Interface.java
│ ├── Class1Interface.java
│ ├── App.java
│ ├── SomeComponent.java
│ ├── Class2Module.java
│ └── Class1Module.java
├── .bazelrc
├── common
├── tests
│ ├── resources
│ │ ├── BUILD_diff.txt
│ │ ├── BUILD_before.txt
│ │ ├── MixedChangesAtTheMiddle_diff_prototxt.txt
│ │ ├── MixedChangesAtTheBeginning_diff_prototxt.txt
│ │ ├── BUILD_after.txt
│ │ ├── MixedChangesAtTheEnd_diff_prototxt.txt
│ │ ├── License_after.txt
│ │ ├── License_before.txt
│ │ └── License_diff.txt
│ └── file_utils_test.proto
├── grpc_auth
│ ├── messages.proto
│ ├── GrpcAuthService.java
│ ├── README.md
│ └── ClientAuthInterceptor.java
├── firestore
│ ├── ProtoEventListener.java
│ ├── tests
│ │ └── BUILD
│ └── MessageWithId.java
├── flags
│ ├── flags.proto
│ ├── BUILD
│ ├── UsagePrinter.java
│ ├── tests
│ │ ├── FlagTestClass.java
│ │ └── BUILD
│ └── FlagDesc.java
└── CommonComponent.java
├── AUTHORS
├── tutorials
└── proto_rename
│ ├── person.proto
│ └── BUILD
├── commands.txt
├── crystals_game.txt
└── CONTRIBUTING.md
/third_party/BUILD:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.bazelversion:
--------------------------------------------------------------------------------
1 | 0.24.0
2 |
--------------------------------------------------------------------------------
/reviewer-ci.sh:
--------------------------------------------------------------------------------
1 | ./test.sh
2 |
--------------------------------------------------------------------------------
/tools/protoc/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 |
--------------------------------------------------------------------------------
/tools/workspacerun/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 |
--------------------------------------------------------------------------------
/tools/reviewer/local_server/web_login/.gitignore:
--------------------------------------------------------------------------------
1 | .firebase
2 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/functions/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea
2 | bazel-*
3 | *.iml
4 | .project
5 | .ijwb
6 | .cache
7 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/src/app/shared/index.ts:
--------------------------------------------------------------------------------
1 | export * from './shared.module';
2 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/src/app/routes/diff/diff-discussion/diff-discussion.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | # Test all targets
4 | tools/build_or_test.sh test
5 |
--------------------------------------------------------------------------------
/third_party_deps.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/google/startup-os/HEAD/third_party_deps.zip
--------------------------------------------------------------------------------
/tools/reviewer/webapp/src/app/routes/login/index.ts:
--------------------------------------------------------------------------------
1 | export * from './login.component';
2 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/src/polyfills.ts:
--------------------------------------------------------------------------------
1 | import 'zone.js/dist/zone';
2 | import 'hammerjs';
3 |
--------------------------------------------------------------------------------
/tools/reviewer/local_server/service/tests/get_diff_request.json:
--------------------------------------------------------------------------------
1 | {
2 | "diff_id":"82"
3 | }
4 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/src/app/shared/speech-arrow/speech-arrow.component.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/src/app/shared/toolbar/index.ts:
--------------------------------------------------------------------------------
1 | export * from './toolbar.component';
2 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/src/app/shared/diff-status/index.ts:
--------------------------------------------------------------------------------
1 | export * from './diff-status.component';
2 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/src/app/routes/diff/diff-files/index.ts:
--------------------------------------------------------------------------------
1 | export * from './diff-files.component';
2 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/src/app/routes/page-not-found/index.ts:
--------------------------------------------------------------------------------
1 | export * from './page-not-found.component';
2 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/src/app/shared/page-loading/index.ts:
--------------------------------------------------------------------------------
1 | export * from './page-loading.component';
2 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/src/app/shared/speech-arrow/index.ts:
--------------------------------------------------------------------------------
1 | export * from './speech-arrow.component';
2 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/src/app/shared/thread/new-thread/index.ts:
--------------------------------------------------------------------------------
1 | export * from './new-thread.component';
2 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/src/styles/var.scss:
--------------------------------------------------------------------------------
1 | @import './variables/colors';
2 | @import './variables/fonts';
3 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/.firebaserc:
--------------------------------------------------------------------------------
1 | {
2 | "projects": {
3 | "default": "startupos-5f279"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/src/app/shared/select-dashboard/index.ts:
--------------------------------------------------------------------------------
1 | export * from './select-dashboard.component';
2 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/src/app/shared/thread/thread-reply/index.ts:
--------------------------------------------------------------------------------
1 | export * from './thread-reply.component';
2 |
--------------------------------------------------------------------------------
/BUILD:
--------------------------------------------------------------------------------
1 | exports_files([
2 | "dependencies.yaml",
3 | "WORKSPACE",
4 | "reviewer_config.prototxt",
5 | ])
6 |
--------------------------------------------------------------------------------
/tools/reviewer/webapp/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |
4 | Reviewer
5 | Collaborate on code
6 |
9 | {{ log }}
31 |