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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 'browser/process_map.cc', | 286 'browser/process_map.cc', |
287 'browser/process_map.h', | 287 'browser/process_map.h', |
288 'browser/process_map_factory.cc', | 288 'browser/process_map_factory.cc', |
289 'browser/process_map_factory.h', | 289 'browser/process_map_factory.h', |
290 'browser/quota_service.cc', | 290 'browser/quota_service.cc', |
291 'browser/quota_service.h', | 291 'browser/quota_service.h', |
292 'browser/renderer_startup_helper.cc', | 292 'browser/renderer_startup_helper.cc', |
293 'browser/renderer_startup_helper.h', | 293 'browser/renderer_startup_helper.h', |
294 'browser/runtime_data.cc', | 294 'browser/runtime_data.cc', |
295 'browser/runtime_data.h', | 295 'browser/runtime_data.h', |
| 296 'browser/service_worker_manager.cc', |
| 297 'browser/service_worker_manager.h', |
296 'browser/update_observer.h', | 298 'browser/update_observer.h', |
297 'browser/value_store/leveldb_value_store.cc', | 299 'browser/value_store/leveldb_value_store.cc', |
298 'browser/value_store/leveldb_value_store.h', | 300 'browser/value_store/leveldb_value_store.h', |
299 'browser/value_store/testing_value_store.cc', | 301 'browser/value_store/testing_value_store.cc', |
300 'browser/value_store/testing_value_store.h', | 302 'browser/value_store/testing_value_store.h', |
301 'browser/value_store/value_store.cc', | 303 'browser/value_store/value_store.cc', |
302 'browser/value_store/value_store.h', | 304 'browser/value_store/value_store.h', |
303 'browser/value_store/value_store_change.cc', | 305 'browser/value_store/value_store_change.cc', |
304 'browser/value_store/value_store_change.h', | 306 'browser/value_store/value_store_change.h', |
305 'browser/value_store/value_store_frontend.cc', | 307 'browser/value_store/value_store_frontend.cc', |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 'common/test_util.cc', | 352 'common/test_util.cc', |
351 'common/test_util.h', | 353 'common/test_util.h', |
352 'common/value_builder.cc', | 354 'common/value_builder.cc', |
353 'common/value_builder.h', | 355 'common/value_builder.h', |
354 ], | 356 ], |
355 # Disable c4267 warnings until we fix size_t to int truncations. | 357 # Disable c4267 warnings until we fix size_t to int truncations. |
356 'msvs_disabled_warnings': [ 4267, ], | 358 'msvs_disabled_warnings': [ 4267, ], |
357 }, | 359 }, |
358 ] | 360 ] |
359 } | 361 } |
OLD | NEW |