Add license to scripts
diff --git a/scripts/android_symbolize.sh b/scripts/android_symbolize.sh
index 8f2d3e5..9dafab7 100755
--- a/scripts/android_symbolize.sh
+++ b/scripts/android_symbolize.sh
@@ -1,5 +1,19 @@
 #!/bin/bash
 
+# Copyright 2020 Google LLC
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 # Reads text from stdin containing stack frames in the format
 # `#3 0x5b09835a14  (/data/local/tmp/iree-benchmark-module+0x18aa14)`
 # and symbolizes such lines and prints them to stdout.
diff --git a/scripts/android_tracy_tutorial.sh b/scripts/android_tracy_tutorial.sh
index c4c80db..812c09e 100755
--- a/scripts/android_tracy_tutorial.sh
+++ b/scripts/android_tracy_tutorial.sh
@@ -1,5 +1,19 @@
 #!/bin/bash
 
+# Copyright 2020 Google LLC
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 # This script assumes Debian Linux. It could easily be modified to run on any Unix,
 # as the Debian assumption is only to automatically install some packages,
 # (Tracy dependencies). With a bit more work it could be made to support other OSes