Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Commit

Permalink
Adds the COPYRIGHT comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yingbing Wu committed Oct 20, 2014
1 parent 3828bce commit b99e802
Show file tree
Hide file tree
Showing 12 changed files with 178 additions and 9 deletions.
19 changes: 16 additions & 3 deletions client/base/windows_types.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
// Copyright (C) 2013 and onwards Google, Inc.
// Author: Difan Zhang
//
/*
Copyright 2014 Google Inc.
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
http://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 file includes weird Windows types

#ifndef IME_GOOPY_COMMON_WINDOWS_TYPES_H_
Expand Down
14 changes: 14 additions & 0 deletions client/build_x86_x64_together.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# Copyright 2014 Google Inc.
#
# 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
#
# http://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.

import re
def getProjects(content):
projectRe = r'Project\("\{[\d\-A-Z]+?\}\"\) = \"[^()"]+?\", \"([^()"]+?).vcxproj\", \"(\{[\dA-Z\-]+?\})\"'
Expand Down
16 changes: 15 additions & 1 deletion client/download_depends.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# Copyright 2014 Google Inc.
#
# 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
#
# http://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.

import os
import urllib2
import tarfile
Expand Down Expand Up @@ -48,4 +62,4 @@ def download_and_extract(url, dest):
for entry in FILE_LIST:
download_and_extract(entry['url'], entry['dest'])
print entry['url']

14 changes: 14 additions & 0 deletions client/gyp.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
:: Copyright 2014 Google Inc.
::
:: 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
::
:: http://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.

@echo off
set PROTOC=%~dp0\depends\protoc.exe
set PROTOBUF=%~dp0\depends\protobuf-2.5.0
Expand Down
14 changes: 12 additions & 2 deletions client/gyp.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
#!/bin/bash
# Copyright 2014 Google Inc.
#
# Copyright 2013 Google Inc. All Rights Reserved.
# Launcher script for gyp.py
# 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
#
# http://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.

DIR_NAME=$(cd $(dirname $0); pwd)

Expand Down
16 changes: 15 additions & 1 deletion client/install_windows.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
:: Copyright 2014 Google Inc.
::
:: 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
::
:: http://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.

set outdir=%~dp0\out\bin\Debug
if %PROCESSOR_ARCHITECTURE% == AMD64 (
set pf="c:\program files (x86)"
Expand All @@ -18,4 +32,4 @@ copy %outdir%\ipc_service.exe %pf%"\google\google input tools\GoogleInputService
%pf%"\google\google input tools\GoogleInputService.exe" /RegServer
%pf%"\google\google input tools\GoogleInputService.exe" /Service
net start GoogleInputService
pause
pause
17 changes: 16 additions & 1 deletion client/ipc/service/ipc_service.exe.manifest
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
<!--
Copyright 2014 Google Inc.

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

http://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.
-->
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<asmv2:trustInfo xmlns:asmv2="urn:schemas-microsoft-com:asm.v2">
Expand All @@ -19,4 +34,4 @@
/>
</dependentAssembly>
</dependency>
</assembly>
</assembly>
16 changes: 16 additions & 0 deletions client/resources/afxres.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2014 Google Inc.
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
http://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.
*/

#ifndef GOOPY_RESOURCES_AFXRES_H_
#define GOOPY_RESOURCES_AFXRES_H_
#include "winres.h"
Expand Down
17 changes: 17 additions & 0 deletions client/resources/ipc_console.exe.manifest
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
<!--
Copyright 2014 Google Inc.

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

http://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.
-->


<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<asmv2:trustInfo xmlns:asmv2="urn:schemas-microsoft-com:asm.v2">
Expand Down
16 changes: 15 additions & 1 deletion client/uninstall_windows.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
:: Copyright 2014 Google Inc.
::
:: 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
::
:: http://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.

set outdir=%~dp0\out\bin\Debug
if %PROCESSOR_ARCHITECTURE% == AMD64 (
set pf="c:\program files (x86)"
Expand All @@ -13,4 +27,4 @@ del c:\windows\syswow64\input.ime
rmdir "c:\programdata\google\Google Input Tools"
del %pf%"\google\google input tools\GoogleInputHandler.exe"
del %pf%"\google\google input tools\GoogleInputService.exe"
pause
pause
14 changes: 14 additions & 0 deletions cloud/kbd-compiler.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
#!/bin/bash
# Copyright 2014 The Cloud Input Tools Authors. All Rights Reserved.
#
# 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
#
# http://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.

src=/usr/local/google/home/wuyingbing/opensource/google-input-tools/src/cloud
closure=/usr/local/google/home/wuyingbing/opensource/closure
$closure/closure/bin/calcdeps.py -i $src/keyboard/standalone.js \
Expand Down
14 changes: 14 additions & 0 deletions cloud/kbd.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b99e802

Please sign in to comment.