File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed
test/benchmarks/material/checkbox Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ component_benchmark(
15
15
"@npm//@angular/core" ,
16
16
"@npm//@angular/platform-browser" ,
17
17
"//src/material/checkbox" ,
18
- "//src/cdk/a11y" ,
19
18
],
20
19
ng_srcs = [":app.module.ts" ],
21
20
prefix = "" ,
Original file line number Diff line number Diff line change 1
1
/**
2
2
* @license
3
- * Copyright Google Inc. All Rights Reserved.
3
+ * Copyright Google LLC All Rights Reserved.
4
4
*
5
5
* Use of this source code is governed by an MIT-style license that can be
6
6
* found in the LICENSE file at https://angular.io/license
7
7
*/
8
- import { A11yModule } from '@angular/cdk/a11y' ;
8
+
9
9
import { Component , NgModule , ViewEncapsulation } from '@angular/core' ;
10
10
import { BrowserModule } from '@angular/platform-browser' ;
11
11
import { MatCheckboxModule } from '@angular/material/checkbox' ;
12
12
13
- /**
14
- * @title Checkbox benchmark component.
15
- */
16
13
@Component ( {
17
14
selector : 'app-root' ,
18
15
template : `
@@ -46,7 +43,6 @@ export class CheckboxBenchmarkApp {
46
43
@NgModule ( {
47
44
declarations : [ CheckboxBenchmarkApp ] ,
48
45
imports : [
49
- A11yModule ,
50
46
BrowserModule ,
51
47
MatCheckboxModule ,
52
48
] ,
You can’t perform that action at this time.
0 commit comments