OLD | NEW |
---|---|
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | |
7 'chromium_code': 1, | |
8 }, | |
6 'targets': [ | 9 'targets': [ |
7 { | 10 { |
8 'target_name': 'app_base', | 11 'target_name': 'app_base', |
9 'type': 'static_library', | 12 'type': 'static_library', |
10 'dependencies': [ | 13 'dependencies': [ |
11 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
12 '../base/base.gyp:base_static', | |
13 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', | |
14 '../build/temp_gyp/googleurl.gyp:googleurl', | |
15 '../skia/skia.gyp:skia', | |
16 '../third_party/libpng/libpng.gyp:libpng', | |
17 '../third_party/sqlite/sqlite.gyp:sqlite', | 15 '../third_party/sqlite/sqlite.gyp:sqlite', |
18 '../third_party/zlib/zlib.gyp:zlib', | |
19 '../ui/ui.gyp:ui_gfx', | |
20 '<(libjpeg_gyp_path):libjpeg', | |
21 ], | |
22 'export_dependent_settings': [ | |
23 '../base/base.gyp:base', | |
24 '../base/base.gyp:base_static', | |
25 ], | 16 ], |
26 'sources': [ | 17 'sources': [ |
27 'sql/connection.cc', | 18 'sql/connection.cc', |
28 'sql/connection.h', | 19 'sql/connection.h', |
29 'sql/diagnostic_error_delegate.h', | 20 'sql/diagnostic_error_delegate.h', |
30 'sql/init_status.h', | 21 'sql/init_status.h', |
31 'sql/meta_table.cc', | 22 'sql/meta_table.cc', |
32 'sql/meta_table.h', | 23 'sql/meta_table.h', |
33 'sql/statement.cc', | 24 'sql/statement.cc', |
34 'sql/statement.h', | 25 'sql/statement.h', |
35 'sql/transaction.cc', | 26 'sql/transaction.cc', |
36 'sql/transaction.h', | 27 'sql/transaction.h', |
37 ], | 28 ], |
38 }, | 29 }, |
39 ], | 30 ], |
40 } | 31 } |
32 | |
33 # Local Variables: | |
tony
2011/07/01 20:58:37
Please don't add this. I'm going to try to remove
tfarina
2011/07/01 21:05:52
Removed.
| |
34 # tab-width:2 | |
35 # indent-tabs-mode:nil | |
36 # End: | |
37 # vim: set expandtab tabstop=2 shiftwidth=2: | |
OLD | NEW |