| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 6 'includes': [ |
| 7 '../third_party/WebKit/WebKit/chromium/features.gypi', | 7 '../third_party/WebKit/WebKit/chromium/features.gypi', |
| 8 '../third_party/WebKit/WebCore/WebCore.gypi', | 8 '../third_party/WebKit/WebCore/WebCore.gypi', |
| 9 ], | 9 ], |
| 10 'variables': { | 10 'variables': { |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 'dependencies': ['../build/win/system.gyp:cygwin'], | 128 'dependencies': ['../build/win/system.gyp:cygwin'], |
| 129 }], | 129 }], |
| 130 ], | 130 ], |
| 131 }, | 131 }, |
| 132 { | 132 { |
| 133 'target_name': 'appcache', | 133 'target_name': 'appcache', |
| 134 'type': '<(library)', | 134 'type': '<(library)', |
| 135 'msvs_guid': '0B945915-31A7-4A07-A5B5-568D737A39B1', | 135 'msvs_guid': '0B945915-31A7-4A07-A5B5-568D737A39B1', |
| 136 'dependencies': [ | 136 'dependencies': [ |
| 137 '../net/net.gyp:net', | 137 '../net/net.gyp:net', |
| 138 'api/WebKit.gyp:webkit', | 138 '../third_party/WebKit/WebKit/chromium/WebKit.gyp:webkit', |
| 139 ], | 139 ], |
| 140 'sources': [ | 140 'sources': [ |
| 141 # This list contains all .h and .cc in appcache except for test code. | 141 # This list contains all .h and .cc in appcache except for test code. |
| 142 'appcache/appcache.cc', | 142 'appcache/appcache.cc', |
| 143 'appcache/appcache.h', | 143 'appcache/appcache.h', |
| 144 'appcache/appcache_backend_impl.cc', | 144 'appcache/appcache_backend_impl.cc', |
| 145 'appcache/appcache_backend_impl.h', | 145 'appcache/appcache_backend_impl.h', |
| 146 'appcache/appcache_entry.h', | 146 'appcache/appcache_entry.h', |
| 147 'appcache/appcache_frontend_impl.cc', | 147 'appcache/appcache_frontend_impl.cc', |
| 148 'appcache/appcache_frontend_impl.h', | 148 'appcache/appcache_frontend_impl.h', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 }, | 197 }, |
| 198 { | 198 { |
| 199 'target_name': 'glue', | 199 'target_name': 'glue', |
| 200 'type': '<(library)', | 200 'type': '<(library)', |
| 201 'msvs_guid': 'C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09', | 201 'msvs_guid': 'C66B126D-0ECE-4CA2-B6DC-FA780AFBBF09', |
| 202 'dependencies': [ | 202 'dependencies': [ |
| 203 '../app/app.gyp:app_base', | 203 '../app/app.gyp:app_base', |
| 204 '../net/net.gyp:net', | 204 '../net/net.gyp:net', |
| 205 'inspector_resources', | 205 'inspector_resources', |
| 206 '../third_party/WebKit/WebCore/WebCore.gyp/WebCore.gyp:webcore', | 206 '../third_party/WebKit/WebCore/WebCore.gyp/WebCore.gyp:webcore', |
| 207 'api/WebKit.gyp:webkit', | 207 '../third_party/WebKit/WebKit/chromium/WebKit.gyp:webkit', |
| 208 'webkit_resources', | 208 'webkit_resources', |
| 209 'webkit_strings', | 209 'webkit_strings', |
| 210 ], | 210 ], |
| 211 'actions': [ | 211 'actions': [ |
| 212 { | 212 { |
| 213 'action_name': 'webkit_version', | 213 'action_name': 'webkit_version', |
| 214 'inputs': [ | 214 'inputs': [ |
| 215 'build/webkit_version.py', | 215 'build/webkit_version.py', |
| 216 '../third_party/WebKit/WebCore/Configurations/Version.xcconfig', | 216 '../third_party/WebKit/WebCore/Configurations/Version.xcconfig', |
| 217 ], | 217 ], |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 ], | 506 ], |
| 507 } | 507 } |
| 508 ], # targets | 508 ], # targets |
| 509 } | 509 } |
| 510 | 510 |
| 511 # Local Variables: | 511 # Local Variables: |
| 512 # tab-width:2 | 512 # tab-width:2 |
| 513 # indent-tabs-mode:nil | 513 # indent-tabs-mode:nil |
| 514 # End: | 514 # End: |
| 515 # vim: set expandtab tabstop=2 shiftwidth=2: | 515 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |