2019-04-30 15:46:21 +03:00
|
|
|
build-apk:
|
2019-06-05 15:02:12 +03:00
|
|
|
./gradlew glean-core:build
|
2019-04-30 15:46:21 +03:00
|
|
|
./gradlew glean-sample-app:build
|
|
|
|
.PHONY: build-apk
|
|
|
|
|
|
|
|
install:
|
2019-05-08 11:38:18 +03:00
|
|
|
$(ANDROID_HOME)/platform-tools/adb install -r ./samples/android/app/build/outputs/apk/debug/glean-sample-app-debug.apk
|
2019-04-30 15:46:21 +03:00
|
|
|
.PHONY: install
|
|
|
|
|
|
|
|
emulator:
|
2019-05-08 11:38:18 +03:00
|
|
|
$(ANDROID_HOME)/emulator/emulator -avd Nexus_5X_API_P -netdelay none -netspeed full
|
2019-04-30 15:46:21 +03:00
|
|
|
.PHONY: install
|
|
|
|
|
2019-05-23 18:11:30 +03:00
|
|
|
clippy: fmt
|
2019-05-20 17:17:24 +03:00
|
|
|
cargo clippy --all --all-targets --all-features -- -D warnings
|
2019-05-23 18:11:30 +03:00
|
|
|
.PHONY: lint
|
|
|
|
|
|
|
|
ktlint:
|
2019-05-14 17:54:33 +03:00
|
|
|
./gradlew ktlint detekt
|
2019-04-30 15:46:21 +03:00
|
|
|
.PHONY: lint
|
|
|
|
|
2019-05-23 18:11:30 +03:00
|
|
|
lint: clippy ktlint
|
|
|
|
.PHONY: lint
|
|
|
|
|
2019-09-11 12:13:57 +03:00
|
|
|
swiftlint:
|
|
|
|
swiftlint --strict
|
|
|
|
swiftformat glean-core/ios samples/ios --swiftversion 5 --verbose --lint
|
|
|
|
.PHONY: swiftlint
|
|
|
|
|
2019-04-30 15:46:21 +03:00
|
|
|
fmt:
|
|
|
|
cargo fmt --all
|
|
|
|
.PHONY: fmt
|
|
|
|
|
2019-09-11 12:13:57 +03:00
|
|
|
swiftfmt:
|
|
|
|
swiftformat glean-core/ios samples/ios --swiftversion 5 --verbose
|
|
|
|
.PHONY: swiftfmt
|
|
|
|
|
2019-04-30 15:46:21 +03:00
|
|
|
test:
|
2019-05-16 16:06:34 +03:00
|
|
|
cargo test --all
|
2019-05-09 14:15:16 +03:00
|
|
|
./gradlew test
|
2019-04-30 15:46:21 +03:00
|
|
|
.PHONY: test
|
2019-05-12 17:21:33 +03:00
|
|
|
|
2019-06-05 16:50:44 +03:00
|
|
|
test-rust-with-logs:
|
|
|
|
RUST_LOG=glean_core=debug cargo test --all -- --nocapture --test-threads=1
|
2019-06-05 18:02:02 +03:00
|
|
|
.PHONY: test-rust-with-logs
|
2019-06-05 16:50:44 +03:00
|
|
|
|
2019-05-12 17:21:33 +03:00
|
|
|
cbindgen:
|
2019-07-19 16:10:02 +03:00
|
|
|
RUSTUP_TOOLCHAIN=nightly \
|
2019-05-12 17:21:33 +03:00
|
|
|
cbindgen glean-core/ffi --lockfile Cargo.lock -o glean-core/ffi/examples/glean.h
|
|
|
|
.PHONY: cbindgen
|
2019-06-05 15:02:12 +03:00
|
|
|
|
|
|
|
docs:
|
|
|
|
bin/build-rust-docs.sh
|
|
|
|
./gradlew docs
|
|
|
|
.PHONY: docs
|
|
|
|
|
|
|
|
linkcheck: docs
|
|
|
|
# Requires https://wummel.github.io/linkchecker/
|
|
|
|
linkchecker --ignore-url javadoc --ignore-url docs/glean_core build/docs
|
|
|
|
.PHONY: linkcheck
|
2019-08-09 10:25:47 +03:00
|
|
|
|
|
|
|
rust-coverage:
|
|
|
|
# Expects a Rust nightly toolchain to be available.
|
|
|
|
# Expects grcov and genhtml to be available in $PATH.
|
|
|
|
CARGO_INCREMENTAL=0 \
|
|
|
|
RUSTFLAGS='-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Zno-landing-pads' \
|
|
|
|
RUSTUP_TOOLCHAIN=nightly \
|
|
|
|
cargo build
|
|
|
|
zip -0 ccov.zip `find . \( -name "glean*.gc*" \) -print`
|
|
|
|
grcov ccov.zip -s . -t lcov --llvm --branch --ignore-not-existing --ignore-dir "/*" --ignore-dir "glean-core/ffi/*" -o lcov.info
|
|
|
|
genhtml -o report/ --show-details --highlight --ignore-errors source --legend lcov.info
|
|
|
|
.PHONY: rust-coverage
|