build: update license headers to reference Google LLC (#37205)

Update the license headers throughout the repository to reference Google LLC
rather than Google Inc, for the required license headers.

PR Close #37205
This commit is contained in:
Joey Perrott
2020-05-19 12:08:49 -07:00
committed by Matias Niemelä
parent 5aeb9a4124
commit d1ea1f4c7f
4367 changed files with 4817 additions and 4809 deletions

View File

@ -1,6 +1,6 @@
/**
* @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
@ -118,7 +118,7 @@ runInEachFileSystem(() => {
env.write('cmp.ts', `
import {Component} from '@angular/core';
@Component({selector: 'test-cmp', template: '...'})
export class TestCmp {}
`);
@ -144,7 +144,7 @@ runInEachFileSystem(() => {
env.write('cmp.ts', `
import {Component} from '@angular/core';
import {SELECTOR} from './selector';
@Component({selector: SELECTOR, template: '...'})
export class TestCmp {}
`);
@ -165,7 +165,7 @@ runInEachFileSystem(() => {
env.write('cmp.ts', `
import {Component} from '@angular/core';
@Component({selector: 'test-cmp', template: '...'})
export class TestCmp {}
`);
@ -410,7 +410,7 @@ runInEachFileSystem(() => {
// Update ACmp to have a different selector, isn't matched in BCmp's template.
env.write('a.ts', `
import {Component} from '@angular/core';
@Component({selector: 'not-a-cmp', template: '...'})
export class ACmp {}
`);