Skip to content

Commit d9946cd

Browse files
authored
Fix copyright notices in all files. (#506)
Uses the base git log year for the copyright year.
1 parent 5f5b9f0 commit d9946cd

File tree

270 files changed

+540
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

270 files changed

+540
-0
lines changed

build_scripts/android/build.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash -e
22

3+
# Copyright 2020 Google LLC
4+
35
buildpath=$1
46
sourcepath=$2
57
stl=$3

build_scripts/android/install_prereqs.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash -e
22

3+
# Copyright 2020 Google LLC
4+
35
if [[ $(uname) == "Darwin" ]]; then
46
platform=darwin
57
if [[ ! -z "${GHA_INSTALL_CCACHE}" ]]; then

build_scripts/android/package.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash -e
22

3+
# Copyright 2020 Google LLC
4+
35
readonly -a allowed_stl_variants=("c++" "gnustl")
46
builtpath=$1
57
packagepath=$2

build_scripts/desktop/finish_darwin.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/bin/bash
2+
3+
# Copyright 2020 Google LLC
24
#
35
# Script to finish packaging individual iOS/Mac libraries into
46
# universal libraries, and then into frameworks.

build_scripts/desktop/get_variant.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/bin/bash
2+
3+
# Copyright 2020 Google LLC
24
set -e
35

46
# Given a filename on the command-line, figure out what variant it should be packaged into.

build_scripts/desktop/package.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/bin/bash
2+
3+
# Copyright 2020 Google LLC
24
#
35
# Script to package desktop SDK
46
set -e

build_scripts/ios/build.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/bin/bash -e
2+
3+
# Copyright 2020 Google LLC
24
#
35
# Script to build iOS XCFrameworks
46
# If built for all architectures (arm64 armv7 x86_64 i386),

build_scripts/ios/install_prereqs.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash -e
22

3+
# Copyright 2020 Google LLC
4+
35
if [[ $(uname) != "Darwin" ]]; then
46
echo "Unsupported platform, iOS can only be build on a MacOS machine."
57
exit 1

build_scripts/ios/package.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash -e
22

3+
# Copyright 2020 Google LLC
4+
35
builtpath=$1
46
packagepath=$2
57

build_scripts/other/package.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash -e
22

3+
# Copyright 2020 Google LLC
4+
35
sdkpath=$1
46
packagepath=$2
57

0 commit comments

Comments
 (0)