aboutsummaryrefslogtreecommitdiff
path: root/cpp/libaddressinput.gyp
diff options
context:
space:
mode:
authorrouslan@chromium.org <rouslan@chromium.org@38ededc0-08b8-5190-f2ac-b31f878777ad>2013-10-11 20:55:47 +0000
committerrouslan@chromium.org <rouslan@chromium.org@38ededc0-08b8-5190-f2ac-b31f878777ad>2013-10-11 20:55:47 +0000
commit4cb6973fa60fce3a8846e56f5c88c4f4691fecc2 (patch)
tree80c253309ed5138b270385f3756b7fb54bf0ab45 /cpp/libaddressinput.gyp
parentbd4287804a3bfca75f8e3993d90077ce458ef580 (diff)
downloadsrc-4cb6973fa60fce3a8846e56f5c88c4f4691fecc2.tar.gz
Revert intermediate changes in favor of a single clean commit.
git-svn-id: http://libaddressinput.googlecode.com/svn/trunk@145 38ededc0-08b8-5190-f2ac-b31f878777ad
Diffstat (limited to 'cpp/libaddressinput.gyp')
-rw-r--r--cpp/libaddressinput.gyp57
1 files changed, 0 insertions, 57 deletions
diff --git a/cpp/libaddressinput.gyp b/cpp/libaddressinput.gyp
deleted file mode 100644
index 1311762..0000000
--- a/cpp/libaddressinput.gyp
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright (C) 2013 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.
-{
- 'variables': {
- 'component%': 'shared_library',
- },
- 'target_defaults': {
- 'cflags': [
- '-std=c++03',
- ],
- 'configurations': {
- 'Debug': {
- 'cflags': [
- '-O0',
- '-g',
- ],
- },
- 'Release': {
- 'cflags': [
- '-O3',
- ],
- },
- },
- },
- 'targets': [
- {
- 'target_name': 'libaddressinput',
- 'type': '<(component)',
- 'cflags': [
- # http://gcc.gnu.org/wiki/Visibility
- '-fvisibility=hidden',
- ],
- },
- {
- 'target_name': 'libaddressinput_unittests',
- 'type': 'executable',
- 'sources': [
- 'test/main.cc',
- ],
- 'dependencies': [
- 'libaddressinput',
- 'gtest.gyp:main',
- ],
- },
- ],
-}