OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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': 'appcache', | 8 'target_name': 'appcache', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
| 11 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', |
11 '<(DEPTH)/net/net.gyp:net', | 12 '<(DEPTH)/net/net.gyp:net', |
12 '<(DEPTH)/sql/sql.gyp:sql', | 13 '<(DEPTH)/sql/sql.gyp:sql', |
13 ], | 14 ], |
14 'sources': [ | 15 'sources': [ |
15 # This list contains all .h and .cc in appcache except for test code. | 16 # This list contains all .h and .cc in appcache except for test code. |
16 'appcache.cc', | 17 'appcache.cc', |
17 'appcache.h', | 18 'appcache.h', |
18 'appcache_backend_impl.cc', | 19 'appcache_backend_impl.cc', |
19 'appcache_backend_impl.h', | 20 'appcache_backend_impl.h', |
20 'appcache_database.cc', | 21 'appcache_database.cc', |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 'conditions': [ | 67 'conditions': [ |
67 ['inside_chromium_build==0', { | 68 ['inside_chromium_build==0', { |
68 'dependencies': [ | 69 'dependencies': [ |
69 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 70 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
70 ], | 71 ], |
71 }], | 72 }], |
72 ], | 73 ], |
73 }, | 74 }, |
74 ], | 75 ], |
75 } | 76 } |
OLD | NEW |