diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-06 01:30:54 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-06 01:30:54 +0000 |
commit | 60ae21c7c8f371bc46cbfdd1156ec6321d2f0740 (patch) | |
tree | 7556c5d64b39c03ca45430d07d76f8dc4cd23696 /app | |
parent | 35851fd06ea6468e9a5ac07c7e3a8f668b5accf4 (diff) | |
download | chromium_src-60ae21c7c8f371bc46cbfdd1156ec6321d2f0740.zip chromium_src-60ae21c7c8f371bc46cbfdd1156ec6321d2f0740.tar.gz chromium_src-60ae21c7c8f371bc46cbfdd1156ec6321d2f0740.tar.bz2 |
Get rid of app/ directory as it's no longer used (finally).
BUG=72317
TEST=None
R=tony@chromium.org
Review URL: http://codereview.chromium.org/7491072
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95711 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app')
-rw-r--r-- | app/app.gyp | 44 | ||||
-rw-r--r-- | app/app_base.gypi | 31 |
2 files changed, 0 insertions, 75 deletions
diff --git a/app/app.gyp b/app/app.gyp deleted file mode 100644 index 514c28c..0000000 --- a/app/app.gyp +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright (c) 2011 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -{ - 'variables': { - 'chromium_code': 1, - }, - 'includes': [ - 'app_base.gypi', - ], - 'targets': [ - { - 'target_name': 'app_unittests', - 'type': 'executable', - 'dependencies': [ - 'app_base', - '../base/base.gyp:test_support_base', - '../testing/gtest.gyp:gtest', - ], - 'sources': [ - '../sql/run_all_unittests.cc', - '../sql/connection_unittest.cc', - '../sql/sqlite_features_unittest.cc', - '../sql/statement_unittest.cc', - '../sql/transaction_unittest.cc', - ], - 'include_dirs': [ - '..', - ], - 'conditions': [ - ['os_posix==1 and OS!="mac"', { - 'conditions': [ - ['linux_use_tcmalloc==1', { - 'dependencies': [ - '../base/allocator/allocator.gyp:allocator', - ], - }], - ], - }], - ], - }, - ], -} diff --git a/app/app_base.gypi b/app/app_base.gypi deleted file mode 100644 index 18b5efe..0000000 --- a/app/app_base.gypi +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright (c) 2011 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -{ - 'variables': { - 'chromium_code': 1, - }, - 'targets': [ - { - 'target_name': 'app_base', - 'type': 'static_library', - 'dependencies': [ - '../base/base.gyp:base', - '../third_party/sqlite/sqlite.gyp:sqlite', - ], - 'sources': [ - '../sql/connection.cc', - '../sql/connection.h', - '../sql/diagnostic_error_delegate.h', - '../sql/init_status.h', - '../sql/meta_table.cc', - '../sql/meta_table.h', - '../sql/statement.cc', - '../sql/statement.h', - '../sql/transaction.cc', - '../sql/transaction.h', - ], - }, - ], -} |