Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(477)

Side by Side Diff: extensions/extensions.gyp

Issue 182253010: Register a Service Worker when an extension is enabled. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync to r261176 Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 'browser/process_map.cc', 321 'browser/process_map.cc',
322 'browser/process_map.h', 322 'browser/process_map.h',
323 'browser/process_map_factory.cc', 323 'browser/process_map_factory.cc',
324 'browser/process_map_factory.h', 324 'browser/process_map_factory.h',
325 'browser/quota_service.cc', 325 'browser/quota_service.cc',
326 'browser/quota_service.h', 326 'browser/quota_service.h',
327 'browser/renderer_startup_helper.cc', 327 'browser/renderer_startup_helper.cc',
328 'browser/renderer_startup_helper.h', 328 'browser/renderer_startup_helper.h',
329 'browser/runtime_data.cc', 329 'browser/runtime_data.cc',
330 'browser/runtime_data.h', 330 'browser/runtime_data.h',
331 'browser/service_worker_manager.cc',
332 'browser/service_worker_manager.h',
331 'browser/update_observer.h', 333 'browser/update_observer.h',
332 'browser/value_store/leveldb_value_store.cc', 334 'browser/value_store/leveldb_value_store.cc',
333 'browser/value_store/leveldb_value_store.h', 335 'browser/value_store/leveldb_value_store.h',
334 'browser/value_store/testing_value_store.cc', 336 'browser/value_store/testing_value_store.cc',
335 'browser/value_store/testing_value_store.h', 337 'browser/value_store/testing_value_store.h',
336 'browser/value_store/value_store.cc', 338 'browser/value_store/value_store.cc',
337 'browser/value_store/value_store.h', 339 'browser/value_store/value_store.h',
338 'browser/value_store/value_store_change.cc', 340 'browser/value_store/value_store_change.cc',
339 'browser/value_store/value_store_change.h', 341 'browser/value_store/value_store_change.h',
340 'browser/value_store/value_store_frontend.cc', 342 'browser/value_store/value_store_frontend.cc',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 'common/test_util.cc', 387 'common/test_util.cc',
386 'common/test_util.h', 388 'common/test_util.h',
387 'common/value_builder.cc', 389 'common/value_builder.cc',
388 'common/value_builder.h', 390 'common/value_builder.h',
389 ], 391 ],
390 # Disable c4267 warnings until we fix size_t to int truncations. 392 # Disable c4267 warnings until we fix size_t to int truncations.
391 'msvs_disabled_warnings': [ 4267, ], 393 'msvs_disabled_warnings': [ 4267, ],
392 }, 394 },
393 ] 395 ]
394 } 396 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698