OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 'browser/process_map.cc', | 240 'browser/process_map.cc', |
241 'browser/process_map.h', | 241 'browser/process_map.h', |
242 'browser/process_map_factory.cc', | 242 'browser/process_map_factory.cc', |
243 'browser/process_map_factory.h', | 243 'browser/process_map_factory.h', |
244 'browser/quota_service.cc', | 244 'browser/quota_service.cc', |
245 'browser/quota_service.h', | 245 'browser/quota_service.h', |
246 'browser/renderer_startup_helper.cc', | 246 'browser/renderer_startup_helper.cc', |
247 'browser/renderer_startup_helper.h', | 247 'browser/renderer_startup_helper.h', |
248 'browser/runtime_data.cc', | 248 'browser/runtime_data.cc', |
249 'browser/runtime_data.h', | 249 'browser/runtime_data.h', |
| 250 'browser/service_worker_manager.cc', |
| 251 'browser/service_worker_manager.h', |
250 'browser/update_observer.h', | 252 'browser/update_observer.h', |
251 'browser/value_store/leveldb_value_store.cc', | 253 'browser/value_store/leveldb_value_store.cc', |
252 'browser/value_store/leveldb_value_store.h', | 254 'browser/value_store/leveldb_value_store.h', |
253 'browser/value_store/testing_value_store.cc', | 255 'browser/value_store/testing_value_store.cc', |
254 'browser/value_store/testing_value_store.h', | 256 'browser/value_store/testing_value_store.h', |
255 'browser/value_store/value_store.cc', | 257 'browser/value_store/value_store.cc', |
256 'browser/value_store/value_store.h', | 258 'browser/value_store/value_store.h', |
257 'browser/value_store/value_store_change.cc', | 259 'browser/value_store/value_store_change.cc', |
258 'browser/value_store/value_store_change.h', | 260 'browser/value_store/value_store_change.h', |
259 'browser/value_store/value_store_frontend.cc', | 261 'browser/value_store/value_store_frontend.cc', |
(...skipping 26 matching lines...) Expand all Loading... |
286 'common/test_util.cc', | 288 'common/test_util.cc', |
287 'common/test_util.h', | 289 'common/test_util.h', |
288 'common/value_builder.cc', | 290 'common/value_builder.cc', |
289 'common/value_builder.h', | 291 'common/value_builder.h', |
290 ], | 292 ], |
291 # Disable c4267 warnings until we fix size_t to int truncations. | 293 # Disable c4267 warnings until we fix size_t to int truncations. |
292 'msvs_disabled_warnings': [ 4267, ], | 294 'msvs_disabled_warnings': [ 4267, ], |
293 }, | 295 }, |
294 ] | 296 ] |
295 } | 297 } |
OLD | NEW |