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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'app_base', | 8 'target_name': 'app_base', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
11 '../base/base.gyp:base', | 11 '../base/base.gyp:base', |
12 '../base/base.gyp:base_static', | 12 '../base/base.gyp:base_static', |
13 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 13 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
14 '../build/temp_gyp/googleurl.gyp:googleurl', | 14 '../build/temp_gyp/googleurl.gyp:googleurl', |
15 '../skia/skia.gyp:skia', | 15 '../skia/skia.gyp:skia', |
16 '../third_party/libpng/libpng.gyp:libpng', | 16 '../third_party/libpng/libpng.gyp:libpng', |
17 '../third_party/sqlite/sqlite.gyp:sqlite', | 17 '../third_party/sqlite/sqlite.gyp:sqlite', |
18 '../third_party/zlib/zlib.gyp:zlib', | 18 '../third_party/zlib/zlib.gyp:zlib', |
19 '../ui/ui.gyp:ui_gfx', | 19 '../ui/ui.gyp:ui_gfx', |
20 '<(libjpeg_gyp_path):libjpeg', | 20 '<(libjpeg_gyp_path):libjpeg', |
21 ], | 21 ], |
22 'export_dependent_settings': [ | 22 'export_dependent_settings': [ |
23 '../base/base.gyp:base', | 23 '../base/base.gyp:base', |
24 '../base/base.gyp:base_static', | 24 '../base/base.gyp:base_static', |
25 ], | 25 ], |
26 'sources': [ | 26 'sources': [ |
27 'app_paths.h', | 27 'app_paths.h', |
28 'app_paths.cc', | 28 'app_paths.cc', |
29 'mac/nsimage_cache.h', | |
30 'mac/nsimage_cache.mm', | |
31 'mac/scoped_nsdisable_screen_updates.h', | |
32 'sql/connection.cc', | 29 'sql/connection.cc', |
33 'sql/connection.h', | 30 'sql/connection.h', |
34 'sql/diagnostic_error_delegate.h', | 31 'sql/diagnostic_error_delegate.h', |
35 'sql/init_status.h', | 32 'sql/init_status.h', |
36 'sql/meta_table.cc', | 33 'sql/meta_table.cc', |
37 'sql/meta_table.h', | 34 'sql/meta_table.h', |
38 'sql/statement.cc', | 35 'sql/statement.cc', |
39 'sql/statement.h', | 36 'sql/statement.h', |
40 'sql/transaction.cc', | 37 'sql/transaction.cc', |
41 'sql/transaction.h', | 38 'sql/transaction.h', |
(...skipping 30 matching lines...) Expand all Loading... |
72 'configurations': { | 69 'configurations': { |
73 'Common_Base': { | 70 'Common_Base': { |
74 'msvs_target_platform': 'x64', | 71 'msvs_target_platform': 'x64', |
75 }, | 72 }, |
76 }, | 73 }, |
77 }, | 74 }, |
78 ], | 75 ], |
79 }], | 76 }], |
80 ], | 77 ], |
81 } | 78 } |
OLD | NEW |