Commit 60ae21c7 authored by tfarina@chromium.org's avatar tfarina@chromium.org

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
parent 35851fd0
# 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',
],
}],
],
}],
],
},
],
}
# 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',
],
},
],
}
...@@ -1355,7 +1355,6 @@ ...@@ -1355,7 +1355,6 @@
'installer/mini_installer.gyp:*', 'installer/mini_installer.gyp:*',
'installer/installer_tools.gyp:*', 'installer/installer_tools.gyp:*',
'installer/upgrade_test.gyp:*', 'installer/upgrade_test.gyp:*',
'../app/app.gyp:*',
'../base/base.gyp:*', '../base/base.gyp:*',
'../chrome_frame/chrome_frame.gyp:*', '../chrome_frame/chrome_frame.gyp:*',
'../content/content.gyp:*', '../content/content.gyp:*',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment