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

Side by Side Diff: extensions/extensions.gyp

Issue 345693002: Extensions: Split extensions utility IPC messages into its own file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 ], 439 ],
440 'conditions': [ 440 'conditions': [
441 ['enable_extensions==0', { 441 ['enable_extensions==0', {
442 # Exclude all API implementations and the ExtensionsApiClient 442 # Exclude all API implementations and the ExtensionsApiClient
443 # interface. Moving an API from src/chrome to src/extensions implies 443 # interface. Moving an API from src/chrome to src/extensions implies
444 # it can be cleanly disabled with enable_extensions==0. 444 # it can be cleanly disabled with enable_extensions==0.
445 # TODO: Eventually the entire extensions module should not be built 445 # TODO: Eventually the entire extensions module should not be built
446 # when enable_extensions==0. 446 # when enable_extensions==0.
447 'sources/': [ 447 'sources/': [
448 ['exclude', '^browser/api/'], 448 ['exclude', '^browser/api/'],
449 ['include', '^browser/api/runtime/runtime_api.cc'],
450 ['include', '^browser/api/runtime/runtime_api_delegate.cc'],
451 ], 449 ],
452 'sources!': [ 450 'sources!': [
453 'browser/browser_context_keyed_service_factories.cc', 451 'browser/browser_context_keyed_service_factories.cc',
454 'browser/browser_context_keyed_service_factories.h', 452 'browser/browser_context_keyed_service_factories.h',
455 ], 453 ],
456 'dependencies!': [ 454 'dependencies!': [
457 '../components/components.gyp:usb_service', 455 '../components/components.gyp:usb_service',
458 ], 456 ],
459 }], 457 }],
460 ], 458 ],
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
675 'test/test_extensions_client.cc', 673 'test/test_extensions_client.cc',
676 'test/test_extensions_client.h', 674 'test/test_extensions_client.h',
677 'test/test_permission_message_provider.cc', 675 'test/test_permission_message_provider.cc',
678 'test/test_permission_message_provider.h', 676 'test/test_permission_message_provider.h',
679 'test/test_permissions_provider.cc', 677 'test/test_permissions_provider.cc',
680 'test/test_permissions_provider.h', 678 'test/test_permissions_provider.h',
681 ], 679 ],
682 }, 680 },
683 ] 681 ]
684 } 682 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698