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

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: rebase 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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 ], 443 ],
444 'conditions': [ 444 'conditions': [
445 ['enable_extensions==0', { 445 ['enable_extensions==0', {
446 # Exclude all API implementations and the ExtensionsApiClient 446 # Exclude all API implementations and the ExtensionsApiClient
447 # interface. Moving an API from src/chrome to src/extensions implies 447 # interface. Moving an API from src/chrome to src/extensions implies
448 # it can be cleanly disabled with enable_extensions==0. 448 # it can be cleanly disabled with enable_extensions==0.
449 # TODO: Eventually the entire extensions module should not be built 449 # TODO: Eventually the entire extensions module should not be built
450 # when enable_extensions==0. 450 # when enable_extensions==0.
451 'sources/': [ 451 'sources/': [
452 ['exclude', '^browser/api/'], 452 ['exclude', '^browser/api/'],
453 ['include', '^browser/api/runtime/runtime_api.cc'],
454 ['include', '^browser/api/runtime/runtime_api_delegate.cc'],
455 ], 453 ],
456 'sources!': [ 454 'sources!': [
457 'browser/browser_context_keyed_service_factories.cc', 455 'browser/browser_context_keyed_service_factories.cc',
458 'browser/browser_context_keyed_service_factories.h', 456 'browser/browser_context_keyed_service_factories.h',
459 ], 457 ],
460 'dependencies!': [ 458 'dependencies!': [
461 '../components/components.gyp:usb_service', 459 '../components/components.gyp:usb_service',
462 ], 460 ],
463 }], 461 }],
464 ], 462 ],
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 'test/test_extensions_client.cc', 681 'test/test_extensions_client.cc',
684 'test/test_extensions_client.h', 682 'test/test_extensions_client.h',
685 'test/test_permission_message_provider.cc', 683 'test/test_permission_message_provider.cc',
686 'test/test_permission_message_provider.h', 684 'test/test_permission_message_provider.h',
687 'test/test_permissions_provider.cc', 685 'test/test_permissions_provider.cc',
688 'test/test_permissions_provider.h', 686 'test/test_permissions_provider.h',
689 ], 687 ],
690 }, 688 },
691 ] 689 ]
692 } 690 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698