Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion test/benchmarks/material/checkbox/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ component_benchmark(
"@npm//@angular/core",
"@npm//@angular/platform-browser",
"//src/material/checkbox",
"//src/cdk/a11y",
],
ng_srcs = [":app.module.ts"],
prefix = "",
Expand Down
8 changes: 2 additions & 6 deletions test/benchmarks/material/checkbox/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
/**
* @license
* Copyright Google Inc. All Rights Reserved.
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import {A11yModule} from '@angular/cdk/a11y';

import {Component, NgModule, ViewEncapsulation} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {MatCheckboxModule} from '@angular/material/checkbox';

/**
* @title Checkbox benchmark component.
*/
@Component({
selector: 'app-root',
template: `
Expand Down Expand Up @@ -46,7 +43,6 @@ export class CheckboxBenchmarkApp {
@NgModule({
declarations: [CheckboxBenchmarkApp],
imports: [
A11yModule,
BrowserModule,
MatCheckboxModule,
],
Expand Down