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 'variables': { | 6 'variables': { |
7 # TODO: remove this helper when we have loops in GYP | 7 # TODO: remove this helper when we have loops in GYP |
8 'apply_locales_cmd': ['python', '../chrome/tools/build/apply_locales.py',], | 8 'apply_locales_cmd': ['python', '../chrome/tools/build/apply_locales.py',], |
9 'feature_defines': [ | 9 'feature_defines': [ |
10 'ENABLE_CHANNEL_MESSAGING=1', | 10 'ENABLE_CHANNEL_MESSAGING=1', |
(...skipping 1205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1216 ['OS=="win"', { | 1216 ['OS=="win"', { |
1217 'dependencies': ['../build/win/system.gyp:cygwin'], | 1217 'dependencies': ['../build/win/system.gyp:cygwin'], |
1218 }], | 1218 }], |
1219 ], | 1219 ], |
1220 }, | 1220 }, |
1221 { | 1221 { |
1222 'target_name': 'appcache', | 1222 'target_name': 'appcache', |
1223 'type': '<(library)', | 1223 'type': '<(library)', |
1224 'msvs_guid': '0B945915-31A7-4A07-A5B5-568D737A39B1', | 1224 'msvs_guid': '0B945915-31A7-4A07-A5B5-568D737A39B1', |
1225 'dependencies': [ | 1225 'dependencies': [ |
1226 '../build/temp_gyp/googleurl.gyp:googleurl', | 1226 '../net/net.gyp:net', |
1227 'webkit', | 1227 'webkit', |
1228 ], | 1228 ], |
1229 'sources': [ | 1229 'sources': [ |
1230 # This list contains all .h and .cc in appcache except for test code. | 1230 # This list contains all .h and .cc in appcache except for test code. |
1231 'appcache/appcache.cc', | 1231 'appcache/appcache.cc', |
1232 'appcache/appcache.h', | 1232 'appcache/appcache.h', |
1233 'appcache/appcache_backend_impl.cc', | 1233 'appcache/appcache_backend_impl.cc', |
1234 'appcache/appcache_backend_impl.h', | 1234 'appcache/appcache_backend_impl.h', |
1235 'appcache/appcache_entry.h', | 1235 'appcache/appcache_entry.h', |
1236 'appcache/appcache_frontend_impl.cc', | 1236 'appcache/appcache_frontend_impl.cc', |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1564 'files': [ | 1564 'files': [ |
1565 | 1565 |
1566 '<@(webinspector_image_files)', | 1566 '<@(webinspector_image_files)', |
1567 | 1567 |
1568 ], | 1568 ], |
1569 }, | 1569 }, |
1570 ], | 1570 ], |
1571 }, | 1571 }, |
1572 ], # targets | 1572 ], # targets |
1573 } | 1573 } |
OLD | NEW |